GNU/Linux >> Linux Esercitazione >  >> Linux

Linux – Impostazione di /proc/sys/vm/drop_caches per cancellare la cache?

Come parte dell'esecuzione di alcuni tempi di cache fredda, sto cercando di liberare la cache del sistema operativo. La documentazione del kernel (recuperata a gennaio 2019) dice:

drop_caches

Writing to this will cause the kernel to drop clean caches, as well as
reclaimable slab objects like dentries and inodes.  Once dropped, their
memory becomes free.

To free pagecache:
    echo 1 > /proc/sys/vm/drop_caches
To free reclaimable slab objects (includes dentries and inodes):
    echo 2 > /proc/sys/vm/drop_caches
To free slab objects and pagecache:
    echo 3 > /proc/sys/vm/drop_caches

This is a non-destructive operation and will not free any dirty objects.
To increase the number of objects freed by this operation, the user may run
`sync' prior to writing to /proc/sys/vm/drop_caches.  This will minimize the
number of dirty objects on the system and create more candidates to be
dropped.

This file is not a means to control the growth of the various kernel caches
(inodes, dentries, pagecache, etc...)  These objects are automatically
reclaimed by the kernel when memory is needed elsewhere on the system.

Use of this file can cause performance problems.  Since it discards cached
objects, it may cost a significant amount of I/O and CPU to recreate the
dropped objects, especially if they were under heavy use.  Because of this,
use outside of a testing or debugging environment is not recommended.

You may see informational messages in your kernel log when this file is
used:

    cat (1234): drop_caches: 3

These are informational only.  They do not mean that anything is wrong
with your system.  To disable them, echo 4 (bit 3) into drop_caches.

Sono un po' impreciso sui dettagli. In esecuzione

echo 3 > /proc/sys/vm/drop_caches

libera pagecache, dentries e inode. Ok.

Quindi, se voglio che il sistema ricominci a memorizzare nella cache normalmente, devo prima reimpostarlo su 0? Il mio sistema ha il valore attualmente impostato su 0, che presumo sia l'impostazione predefinita. O si ripristinerà da solo? Vedo almeno due possibilità qui e non sono sicuro di quale sia vera:

  1. echo 3 > /proc/sys/vm/drop_caches libera pagecache, dentries e inode. Il sistema quindi riavvia immediatamente la memorizzazione nella cache. Non sono sicuro di cosa mi aspetterei il valore in /proc/sys/vm/drop_caches da fare se questo è il caso. Tornare a 0 quasi immediatamente?

  2. Se /proc/sys/vm/drop_caches è impostato su 3, il sistema non esegue alcuna memorizzazione nella cache fino a quando non viene reimpostato su 0.

Quale caso è vero?

Risposta accettata:

Non è appiccicoso:scrivi semplicemente sul file per far cadere le cache e quindi ricomincia immediatamente a memorizzare nella cache.

Correlati:perché usare install anziché cp e mkdir?

Fondamentalmente quando scrivi su quel file non stai davvero modificando un'impostazione, stai inviando un comando al kernel. Il kernel agisce su quel comando (eliminando le cache), quindi prosegue come prima.


Linux
  1. Come cancellare la cache di memoria in Linux

  2. In che modo Linux gestisce più separatori di percorsi consecutivi (/home////nomeutente///file)?

  3. Linux:perché la modifica di Core_pattern è limitata?

  4. Linux – Perdo file se scarico la cache (echo 3> /proc/sys/vm/drop_caches)?

  5. Linux:la differenza tra /sys/block/sda1/stat e /sys/block/xvda1/stat?

Come cancellare o svuotare la cache DNS in Linux

/proc/cpuinfo e /proc/meminfo in Linux

Comprendere i file /proc/mounts, /etc/mtab e /proc/partitions

Directory - /sys in Linux

/sys/ documentazione?

echo 3 > /proc/sys/vm/drop_caches - Autorizzazione negata come root