Why use hashing to create pathnames for large collections of files? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-09T08:56:33Z http://stackoverflow.com/feeds/question/338880 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/338880/why-use-hashing-to-create-pathnames-for-large-collections-of-files 2 Why use hashing to create pathnames for large collections of files? Stephen 2008-12-03T21:56:48Z 2008-12-06T00:08:41Z <p>Hi, I noticed a number of cases where an application or database stored collections of files/blobs using a has to determine the path and filename. I believe the intended outcome is a situation where the path never gets too deep, or the folders ever get too full - too many files (or folders) in a folder making for slower access. </p> <p>EDIT: Examples are often Digital libraries or repositories, though the simplest example I can think of (that can be installed in about 30s) is the <a href="http://zotero.org" rel="nofollow">Zotero document/citation database.</a> </p> <p>Why do this? </p> <p>EDIT: thanks Mat for the answer - does this technique of using a hash to create a file path have a name? Is it a <em>pattern</em>? I'd like to read more, but have failed to find anything in the <a href="http://portal.acm.org/portal.cfm" rel="nofollow">ACM Digital Library</a></p> http://stackoverflow.com/questions/338880/why-use-hashing-to-create-pathnames-for-large-collections-of-files/338898#338898 0 Answer by Konrad Rudolph for Why use hashing to create pathnames for large collections of files? Konrad Rudolph 2008-12-03T22:00:29Z 2008-12-03T22:00:29Z <p>A hash is faster to check than it is to traverse a B-tree. So if frequent existence checks are made, this method might be useful. Other than that, I don't really understand the situation because hash tables don't preserve ordering or hierarchies. Therefore, storing a directory structure in them doesn't seem feasable if directories need to be traversed individually.</p> http://stackoverflow.com/questions/338880/why-use-hashing-to-create-pathnames-for-large-collections-of-files/338967#338967 3 Answer by mat for Why use hashing to create pathnames for large collections of files? mat 2008-12-03T22:20:24Z 2008-12-03T23:04:42Z <h3>Hash/B:Tree</h3> <p>A hash has the advantage of being faster to look at when you're only going to use the "=" operator for searchs.</p> <p>If you're going to use things like "&lt;" or ">" or anything else than "=", you'll want to use a B:Tree because it will be able to do that kind of searchs.</p> <h3>Directory structure</h3> <p>If you have hundreds of thousands of files to store on a filesystem and you put them all in a single directory, you'll get to a point where the directory inode will grow so fat that it will takes minutes to add/remove a file from that directory, and you might even get to the point where the inode won't fit in memory, and you won't be able to add/remove or even touch the directory.</p> <p>You can be assured that for hashing method foo, foo("something") will always return the same thing, say, "grbezi". Now, you use part of that hash to store the file, say, in gr/be/something. Next time you need that file, you'll just have to compute the hash and it will be directly available. Plus, you gain the fact that with a good hash function, the distribution of hashes in the hash space is pretty good, and, for a large number of files, they will be evenly distributed inside the hierarchy, thus splitting the load.</p> http://stackoverflow.com/questions/338880/why-use-hashing-to-create-pathnames-for-large-collections-of-files/338990#338990 0 Answer by joveha for Why use hashing to create pathnames for large collections of files? joveha 2008-12-03T22:30:02Z 2008-12-03T22:30:02Z <p>Hashes also gives a unique'ness to the pathname. Very few name clashes.</p> http://stackoverflow.com/questions/338880/why-use-hashing-to-create-pathnames-for-large-collections-of-files/339171#339171 2 Answer by Charlie Martin for Why use hashing to create pathnames for large collections of files? Charlie Martin 2008-12-03T23:47:35Z 2008-12-03T23:47:35Z <p>I think we need a little bit closer look at what you're trying to do. In general, a hash and a B-Tree abstractly provide two common operations: "insert item", and "search for item". A hash performs them, <a href="http://stackoverflow.com/questions/331295/worst-case-time-complexity-for-an-algorithm#331743">asymptotically</a>, in <em>O(1)</em> time as long as the hash function is well behaved (although in most cases, a very poorly behaved hash against a particular workload can be as bad as <em>O(n)</em>.) A B tree, by comparison, requires <em>O(log n)</em> time for both insertions and searches. So <em>if those are the only operations you perform</em>, a hash table is the faster choice (and considerably simpler than implementing a B tree if you must write it yourself.)</p> <p>The kicker comes in when you want to add operations. If you want to do anything that requires ordering (which means, say, reading the elements in key order), you have to do other things, the simplest being to copy and sort the keys, and then access the keys using that temporary table. The problem there is that the time complexity of sorting is <em>O(n log n)</em>, so if you have to do it very oten, the hash table no longer has a performance advantage.</p>