I need to monitor the network disk space usage and generate report listing directories and their sizes per user.
There are directories containing over 1000 files with each one 20mb big.
Speed is the key as the report needs to be updated frequently.
My Python script walks given directory and store each dir and file info into a dictionary of lists.
Post-process of the dictionary is swift. I/O is the bottleneck. With current script, a 35TB directory takes roughly 5-6 hours to scan.
I've tried the plain os.walk & stat, suprocessing du, find -type f -printf.
os.walk and du
They both drill down to the bottom and stat every dirs, files. While this is required for the initial run, subsequent updates take hits from unnecessarily stat'ing unmodified directories and files. And I can't set the max-depth since I need to know what's changed in subdirs, if anything's been changed.
find -type f
This will look for files only. Not much of difference from above. At least this doesn't stat directories (directory info are gathered from residing files). No noticeable improvement in speed.
I had hoped to use directory's modified time to check whether something's been changed inside. If so, dive in, else skip. But mtime only updates for created, deleted, renamed items in the directory.
So is there no other way than this brute-forcing through all the dirs and files?
Directory layout:
group_002/
bob/
fubar/
etc/
dave/
jim/
findhas-newer,-anewer,-cnewer, and a few others. None of these work? – Izkata Jul 27 '12 at 18:04