캐시를 지우도록 / proc / sys / vm / drop_caches 설정


79

콜드 캐시 타이밍을 수행하는 동안 OS 캐시를 비우려고합니다. (2019 1월 검색) 커널 문서는 말합니다 :

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.

세부 사항에 대해 조금 스케치합니다. 달리는

echo 3 > /proc/sys/vm/drop_caches

pagecache, dentries 및 inode를 해제합니다. 승인.

따라서 시스템이 정상적으로 캐싱을 시작하도록하려면 먼저 0으로 재설정해야합니까? 내 시스템의 값이 현재 0으로 설정되어 있으며 이것이 기본값입니다. 아니면 자체적으로 재설정됩니까? 나는 적어도 두 가지 가능성을 보았으며 어느 것이 사실인지 확실하지 않습니다.

  1. echo 3 > /proc/sys/vm/drop_cachespagecache, dentries 및 inode를 해제합니다. 그런 다음 시스템은 즉시 다시 캐싱을 시작합니다. /proc/sys/vm/drop_caches이 경우 가치가 어떻게 될지 잘 모르겠습니다 . 거의 즉시 0으로 돌아 갑니까?

  2. 경우 /proc/sys/vm/drop_caches3으로 설정이 0으로 재설정 될 때까지, 시스템은 메모리 캐싱을하지 않습니다.

어느 경우에 해당됩니까?


22
sudo와 함께 사용하려면 :echo 3 | sudo tee /proc/sys/vm/drop_caches
Volker Siegel

이런 젠장! @VolkerSiegel 나는 몇 시간 동안 웹을 문지르고 무작위로 귀하의 의견을 찾았습니다. 그것을 시도하고 완벽하게 작동했습니다! 이 작은 트릭을 추가해 주셔서 감사합니다. 이 질문을 도용하고 싶지 않지만 부적절하지 않은 경우 설명을 요청하고 싶습니다. 와 함께 sshpass를 사용 sudo -i && echo 3 > /proc/sys/vm/drop_caches하면 오류가 발생 stdin: is not a tty합니다. "스도"방법을 사용하면 작동합니다. 왜?
harperville

2
@harperville 질문하십시오; 이것은 거의 확실히 관련이없는 문제입니다.
Faheem Mitha

1
@ harperville 네-아주 좋은 질문입니다-흥미로운 답변이 있으니 따로 문의하십시오! 그런 다음 여기에 알려주십시오. 아니면 내가 직접 질문 한 다음 답변을 원하십니까?
Volker Siegel

답변:


106

그것은 끈적 거리지 않습니다-파일에 쓰기 만하면 캐시가 삭제되고 즉시 캐싱이 다시 시작됩니다.

기본적으로 해당 파일에 쓸 때 실제로 설정을 변경하지 않고 커널에 명령을 내립니다. 커널은 캐시를 삭제하여 해당 명령을 수행 한 다음 이전과 동일하게 수행합니다.


2
알았어 고마워. 값이 즉시 다시 0으로 변경됩니까?
Faheem Mitha

33
@FaheemMitha 아니오, 당신이 읽을 수있는 가치는 당신이 마지막으로 넣는 것입니다. 소스 코드는입니다 fs/drop_caches.c.
Gilles

이렇게하면 JVM에 특별한 이점이 있습니까?
JE Carter II

3
반대로 응용 프로그램에는 이점이 없습니다. 캐시 된 inode가 없기 때문에 파일이 느리게로드됩니다. 또한 메모리가 부족 하지 않습니다 . 앱에 메모리가 필요한 경우 OS 캐시에서 가져옵니다. linuxatemyram.com을 참조하십시오 .
dr0i 2016 년

@TomH, "문제를 작성하는 작업"에 관한 sync명령입니까?
kaizenCoder
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.