Hi :)
Size limits are only being checked in cache_video, and not also in download_from_source - this means that if one limits the number of max_parallel_downloads, a video could be queued while the directory still has space, but actually downloaded when the directory is over the max size.
-- imriz
6 Answers
Hi Imriz!
Fixed upstream. Thanks for reporting. Thats was a nice observation.
PS : Why don't you register. I hope Anonymous is not a name you like :P
I'm a UNIX system administrator -laziness is my middle name ;)
Thanks Kulbir, I'll try the GIT version and report back
By the way, we're pushing 250 mbit per second through videocache+squid.
LOL!! I am also a system administrator at my university but not the UNIX one :) We use RHEL/CentOS. But agreed to "Sysadmins are lazy ;)". I would love to see your videocache stats in statistics forum :D
Uhmm, with the new version the CPU usage went sky high. stracing the processes showed excessive stat() usage. Disabling the size limit checks solved it.
I think that the size checking should be done only before actually downloading the files (download_from_source), or globally - once every couple of minutes.
Doing stat() on all the files in the cache directory for every non-cached object killed an 8-cores machine at 100-150 requests per seconds.
Imriz,
Another use reported similar problem with cache size calculating with 1.3TB cache. I'll have to work on. May be we can do it periodically and cache the results for some time.
Please post your suggestions for the same.
Thank You!