हमारे पास एक बहुत बड़ा नगनेक्स कैश (गीगाबाइट) है जिसे हमें कभी-कभी पोंछना पड़ता है। मैंने एक स्क्रिप्ट पर काम किया है जो तुरंत कैश को साफ़ करता है (जहाँ तक Nginx का संबंध है) और फिर डिस्क I / O के लिए मुख्य एप्लिकेशन को भूखे बिना कैश डायरेक्टरी को हटा देता है।
संक्षेप में:
- कैश फ़ोल्डर को एक नए स्थान पर ले जाएं (एक ही फाइल सिस्टम पर!) (यह किसी भी ओपन फाइल डिस्क्रिप्टर को बाधित नहीं करता है)
- मूल कैश फ़ोल्डर को फिर से बनाएँ, खाली
- रीलोडेड नेग्नेक्स ( सुशोभित) पुनः लोड, जहां नेग्नेक्स पुराने श्रमिकों को प्रगति के अनुरोधों को पूरा करने देता है)
- पुराने कैश्ड डेटा को हटा दें
यहाँ की स्क्रिप्ट, Ubuntu 16.04 LTS के अनुरूप है, जिसमें कैश स्थित है /mnt/nginx-cache
:
#!/bin/bash
set -e
TMPCACHE=`mktemp --directory --tmpdir=/mnt nginx-cache-XXXXXXXXXX`
TMPTEMP=`mktemp --directory --tmpdir=/mnt nginx-temp-XXXXXXXXXX`
# Move the old cache folders out of the way
mv /mnt/nginx-cache $TMPCACHE
mkdir -p /mnt/nginx-cache
chmod -R 775 /mnt/nginx-cache
chown www-data:www-data /mnt/nginx-cache
mv /mnt/nginx-temp $TMPTEMP
mkdir -p /mnt/nginx-temp
chmod -R 775 /mnt/nginx-temp
chown www-data:www-data /mnt/nginx-temp
# Tell Nginx about the new folders.
service nginx reload
# Create an empty folder.
rm -rf /mnt/empty
mkdir -p /mnt/empty
# Remove the old cache and old temp folders w/o thrashing the disk...
# See http://serverfault.com/questions/546177/how-to-keep-subtree-removal-rm-rf-from-starving-other-processes-for-disk-i
# Note: the `ionice` and `nice` may not actually do much, but why not?
ionice -c 3 nice -19 rsync -a --delete /mnt/empty/ $TMPCACHE
ionice -c 3 nice -19 rsync -a --delete /mnt/empty/ $TMPTEMP
rm -rf $TMPCACHE
rm -rf $TMPTEMP
rm -rf /mnt/empty
और अगर यह मददगार है, तो यहाँ Nginx config का उपयोग करें:
upstream myapp {
server localhost:1337 fail_timeout=0;
}
proxy_cache_path /mnt/nginx-cache/app levels=2:2:2 keys_zone=app_cache:100m inactive=1y max_size=10g;
proxy_temp_path /mnt/nginx-temp/app;
server {
listen 4316 default;
server_name myapp.com;
location / {
proxy_pass http://appserv;
proxy_cache app_cache;
proxy_cache_valid 200 1y;
proxy_cache_valid 404 1m;
}
}
proxy_cache
?