कैश को साफ़ करने के लिए सेटिंग / प्रोक्योर / sys / vm / drop_caches


79

कुछ कोल्ड कैश टाइमिंग के हिस्से के रूप में, मैं ओएस कैश को मुक्त करने की कोशिश कर रहा हूं। गिरी प्रलेखन (जनवरी 2019 को लिया गया) का कहना है:

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

पेजकेस, डेंट्री और इनोड को मुक्त करता है। ठीक।

इसलिए, अगर मैं चाहता हूं कि सिस्टम सामान्य रूप से फिर से कैशिंग शुरू कर दे, तो क्या मुझे इसे पहले 0 पर रीसेट करने की आवश्यकता है? मेरे सिस्टम में वर्तमान में 0 पर सेट मान है, जो मुझे लगता है कि डिफ़ॉल्ट है। या यह अपने आप रीसेट हो जाएगा? मुझे यहां कम से कम दो संभावनाएं दिखती हैं, और मुझे यकीन नहीं है कि कौन सा सच है:

  1. echo 3 > /proc/sys/vm/drop_cachesपेजकेस, डेंट्री और इनोड को मुक्त करता है। सिस्टम फिर तुरंत कैशिंग शुरू करता है। मुझे यकीन नहीं है कि मैं /proc/sys/vm/drop_cachesइस मामले में क्या करने की उम्मीद करूंगा । तुरंत 0 पर वापस जाएं?

  2. यदि /proc/sys/vm/drop_caches3 पर सेट किया गया है, तो सिस्टम 0 पर रीसेट होने तक कोई मेमोरी कैशिंग नहीं करता है।

कौन सा मामला सच है?


22
सुडो के साथ इसका उपयोग करने के लिए:echo 3 | sudo tee /proc/sys/vm/drop_caches
वोल्कर सेगेल

पवित्र गाय! @VolkerSiegel मैं घंटों के लिए इंटरव्यू स्क्रब कर रहा हूं और बेतरतीब ढंग से आपकी टिप्पणी मिली। कोशिश की और यह पूरी तरह से काम किया! इस छोटी सी ट्रिक को जोड़ने के लिए धन्यवाद। मैं इस प्रश्न का अपहरण नहीं करना चाहता, लेकिन यदि यह अनुचित नहीं है, तो मैं स्पष्टीकरण माँगना चाहूँगा। जब मैं के साथ sshpass का उपयोग sudo -i && echo 3 > /proc/sys/vm/drop_caches, मैं कोई त्रुटि मिलती है: stdin: is not a tty। आपके "sudo" विधि का उपयोग करना काम करता है। क्यों?
harperville

2
@harperville एक प्रश्न पूछें; यह लगभग निश्चित रूप से एक असंबंधित मुद्दा है।
फहीम मीठा

1
@harperville हाँ - यह एक बहुत अच्छा सवाल है - एक दिलचस्प जवाब के साथ, इसे अलग से पूछें! फिर मुझे यहां बताएं। या आप चाहते हैं कि मैं खुद से सवाल पूछूं और फिर इसका जवाब दूं?
वोल्कर सेगेल

जवाबों:


106

यह चिपचिपा नहीं है - आप इसे कैश छोड़ने के लिए फ़ाइल पर लिखते हैं और फिर तुरंत इसे फिर से कैशिंग करना शुरू कर देते हैं।

मूल रूप से जब आप उस फ़ाइल को लिखते हैं तो आप वास्तव में सेटिंग नहीं बदल रहे हैं, आप कर्नेल को एक कमांड जारी कर रहे हैं। कर्नेल उस कमांड पर कार्य करता है (कैश को गिराकर) फिर पहले की तरह चलता रहता है।


2
ठीक है धन्यवाद। क्या मान तुरंत 0 में बदल जाता है?
फहीम मीठा

33
@FaheemMitha नहीं, आप जो मूल्य पढ़ सकते हैं, वह सब कुछ है जिसे आपने अंतिम रूप दिया है, लेकिन इसका उपयोग कहीं भी नहीं किया गया है, केवल लिखने की क्रिया है। स्रोत कोड में है fs/drop_caches.c
गिल्स

क्या ऐसा करने से जेवीएम के लिए एक विशिष्ट लाभ है?
जेई कार्टर II

3
अनुप्रयोगों के लिए कोई लाभ नहीं है, इसके विपरीत: फाइलें धीमी लोड होंगी क्योंकि कोई कैश्ड इनोड नहीं है। इसके अलावा, आप मेमोरी पर कम नहीं हैं : यदि किसी ऐप को मेमोरी की आवश्यकता है तो वह इसे ओएस कैश से लेगा। Linuxatemyram.com देखें ।
dr0i

@ TomH, "केवल लेखन मामलों की कार्रवाई" क्या यह syncआदेश है?
kaizenCoder 28:00
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.