Date: Tue, 29 Mar 2005 04:11:24 +0200 From: Danny Pansters <danny@ricin.com> To: freebsd-questions@freebsd.org Subject: Re: Max files in unix folder from PIL process Message-ID: <200503290411.24852.danny@ricin.com> In-Reply-To: <6EDD6E31-9FF1-11D9-8CB8-000A27B3B070@eastlink.ca> References: <6EDD6E31-9FF1-11D9-8CB8-000A27B3B070@eastlink.ca>
next in thread | previous in thread | raw e-mail | index | archive | help
On Tuesday 29 March 2005 03:25, David Pratt wrote: > Hi. I am creating a python application that uses PIL to generate > thumbnails and sized images. It is beginning to look the volume of > images will be large. This has got me to thinking. Is there a number > that Unix can handle in a single directory. I am using FreeBSD4.x at > the moment. I am thinking the number could be as high 500,000 images in > a single directory but more likely in the range of 6,000 to 30,000 for > most. I did not want to store these in Postgres. I will most likely to > break these into directories by size ie. thumbnail, small, medium, > large, etc. . That will at least take it down by a factor of the > number of sizes used but still the possibility of a very large number > (maximum to perhaps 100,000 or more) There is really no other way that > I can think of to categorize these at the moment. Should this pose a > problem on the filesystem? How will it affect the use of Unix tools? > Will there be access problems that affect speed? This is unchartered > territory for me so hope someone who has been there, done that can > provide some of what they learned from experience. Many thanks. I'd say hardcode a split-up at about ~5000 images per dir and renice if needed. Test with python whether reading one huge dir or reading and concatting several smaller (say 5000 files) dirs works better. Apparantly you got the pr0n, err, data, .. so you're in a position to test just what you're wondering about. If you want speed, stay away from databases/sql I think. I only have experience with my own pr0n, err, data, and its far less than what you want to deal with (pil works great though). My EUR 0.02 Dan
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200503290411.24852.danny>