If there are like 1,000,000 individual files (mostly 100k in size) in a single directory, flatly (no other directories and files in them), is there going to be any compromises in efficiency or disadvantages in any other possible ways?
|
|
ARG_MAX is going to take issue with that... for instance, rm -rf * (while in the directory) is going to say "too many arguments". Utilities that want to do some kind of globbing (or a shell) will have some functionality break. If that directory is available to the public (lets say via ftp, or web server) you may encounter additional problems. The effect on any given file system depends entirely on that file system. How frequently are these files accessed, what is the file system? Remember, Linux (by default) prefers keeping recently accessed files in memory while putting processes into swap, depending on your settings. Is this directory served via http? Is Google going to see and crawl it? If so, you might need to adjust VFS cache pressure and swappiness. Edit: ARG_MAX is a system wide limit to how many arguments can be presented to a program's entry point. So, lets take 'rm', and the example "rm -rf *" - the shell is going to turn '*' into a space delimited list of files which in turn becomes the arguments to 'rm'. The same thing is going to happen with ls, and several other tools. For instance, ls foo* might break if too many files start with 'foo'. I'd advise (no matter what fs is in use) to break it up into smaller directory chunks, just for that reason alone. |
|||
|
|
|
|
Not every filesystem supports that many files. On some of them (ext2, ext3, ext4) it's very easy to hit inode limit. |
||
|
|
|
|
My experience with large directories on ext3 and
Without |
||
|
|
|
|
The obvious answer is the folder will be extremely difficult for humans to use long before any technical limit, (time taken to read the output from ls for one, their are dozens of other reasons) Is there a good reason why you can't split into sub folders? |
||
|
|
|
|
Most distros use Ext3 by default, which can use b-tree indexing for large directories.
Some of distros have this To see if
To activate dir_index feature (as root):
Replace |
||||
|
|
|
When you accidently execute "ls" in that directory, or use tab completion, or want to execute "rm *", you'll be in big trouble. In addition, there may be performance issues depending on your file system. It's considered good practice to group your files into directories which are named by the first 2 or 3 characters of the filenames, e.g. aaa/ aaavnj78t93ufjw4390 aaavoj78trewrwrwrwenjk983 aaaz84390842092njk423 ... abc/ abckhr89032423 abcnjjkth29085242nw ... ... |
||
|
|
