I've configured my Varnish cache to use a cache size of 512 MB, using:

varnishd ... -s file,/var/cache/varnish.cache,512M

Questions:

  • How do I monitor if 512 MB is too small, too big or okay?
  • How do I get the current usage size of the cache?
  • How do I see how often objects are removed from the cache due to the cache being full?
link|improve this question

feedback

2 Answers

up vote 5 down vote accepted

I found the solution:

You can monitor how much of the maximum cache size (512 MB in this case) that Varnish has allocated by running varnishstat. Then look for the output lines "bytes allocated" and "bytes free".

The following relation holds:

Command line configuration of max size = [bytes allocated] + [bytes free]

Depending on the size of "bytes free" you can fine-tune your cache size to find a proper level.

link|improve this answer
6  
An even better indicator to watch is "n_lru_nuked" (varnishstat -1 -f n_lru_nuked) - it shows the number of objects nuked from the cache. – knorv Aug 26 '09 at 15:15
feedback

Unless you expect all your data to fit in the cache, I'd look at the ratio of cache hits to cache misses. You get diminishing returns. Doubling the cache will probably halve your miss-rate, which is a big win when half your requests are uncached, not so much when 90% are.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.