How do you determine the ideal buffer size when using FileInputStream? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T07:21:57Z http://stackoverflow.com/feeds/question/236861 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/236861/how-do-you-determine-the-ideal-buffer-size-when-using-fileinputstream 6 How do you determine the ideal buffer size when using FileInputStream? ARKBAN 2008-10-25T19:13:51Z 2008-10-27T03:43:45Z <p>I have a method that creates a MessageDigest (a hash) from a file, and I need to do this to a lot of files (>= 100,000). How big should I make the buffer used to read from the files to maximize performance?</p> <p>Most everyone is familiar with the basic code (which I'll repeat here just in case):</p> <pre><code>MessageDigest md = MessageDigest.getInstance( "SHA" ); FileInputStream ios = new FileInputStream( "myfile.bmp" ); byte[] buffer = new byte[4 * 1024]; // what should this value be? int read = 0; while( ( read = ios.read( buffer ) ) &gt; 0 ) md.update( buffer, 0, read ); ios.close(); md.digest(); </code></pre> <p>What is the ideal size of the buffer to maximize throughput? I know this is system dependent, and I'm pretty sure its OS, FileSystem, <em>and</em> HDD dependent, and there maybe other hardware/software in the mix. </p> <p>(I should point out that I'm somewhat new to Java, so this may just be some Java API call I don't know about.)</p> <p><strong>Edit:</strong> I do not know ahead of time the kinds of systems this will be used on, so I can't assume a whole lot. (I'm using Java for that reason.)</p> <p><strong>Edit:</strong> The code above is missing things like try..catch to make the post smaller</p> http://stackoverflow.com/questions/236861/how-do-you-determine-the-ideal-buffer-size-when-using-fileinputstream/236877#236877 0 Answer by Jon Skeet for How do you determine the ideal buffer size when using FileInputStream? Jon Skeet 2008-10-25T19:21:21Z 2008-10-25T19:21:21Z <p>Yes, it's probably dependent on various things - but I doubt it will make very much difference. I tend to opt for 16K or 32K as a good balance between memory usage and performance.</p> <p>Note that you should have a try/finally block in the code to make sure the stream is closed even if an exception is thrown.</p> http://stackoverflow.com/questions/236861/how-do-you-determine-the-ideal-buffer-size-when-using-fileinputstream/236947#236947 2 Answer by Ovidiu Pacurar for How do you determine the ideal buffer size when using FileInputStream? Ovidiu Pacurar 2008-10-25T20:00:23Z 2008-10-25T20:00:23Z <p>In the ideal case we should have enough memory to read the file in one read operation. That would be the best performer because we let the system manage File System , allocation units and HDD at will. In practice you are fortunate to know the file sizes in advance, just use the average file size rounded up to 4K (default allocation unit on NTFS). And best of all : create a benchmark to test multiple options. </p> http://stackoverflow.com/questions/236861/how-do-you-determine-the-ideal-buffer-size-when-using-fileinputstream/236977#236977 2 Answer by John Gardner for How do you determine the ideal buffer size when using FileInputStream? John Gardner 2008-10-25T20:29:51Z 2008-10-25T20:29:51Z <p>You could use the BufferedStreams/readers and then use their buffer sizes.</p> <p>I believe the BufferedXStreams are using 8192 as the buffer size, but like Ovidiu said, you should probably run a test on a whole bunch of options. Its really going to depend on the filesystem and disk configurations as to what the best sizes are.</p> http://stackoverflow.com/questions/236861/how-do-you-determine-the-ideal-buffer-size-when-using-fileinputstream/236988#236988 0 Answer by ngn for How do you determine the ideal buffer size when using FileInputStream? ngn 2008-10-25T20:43:49Z 2008-10-25T20:43:49Z <p>Make the buffer big enough for most of the files to be read in one shot. Be sure to reuse the same buffer and the same MessageDigest for reading different files.</p> <p>Unrelated to the question: read Sun's code conventions, especially spacing around parens and usage of redundant curly braces. Avoid operator <code>=</code> in a <code>while</code> or <code>if</code> statement</p> http://stackoverflow.com/questions/236861/how-do-you-determine-the-ideal-buffer-size-when-using-fileinputstream/236994#236994 1 Answer by Adam Rosenfield for How do you determine the ideal buffer size when using FileInputStream? Adam Rosenfield 2008-10-25T20:49:46Z 2008-10-25T20:49:46Z <p>In most cases, it really doesn't matter that much. Just pick a good size such as 4K or 16K and stick with it. If you're <em>positive</em> that this is the bottleneck in your application, then you should start profiling to find the optimal buffer size. If you pick a size that's too small, you'll waste time doing extra I/O operations and extra function calls. If you pick a size that's too big, you'll start seeing a lot of cache misses which will really slow you down. Don't use a buffer bigger than your L2 cache size.</p> http://stackoverflow.com/questions/236861/how-do-you-determine-the-ideal-buffer-size-when-using-fileinputstream/237021#237021 1 Answer by Maglob for How do you determine the ideal buffer size when using FileInputStream? Maglob 2008-10-25T21:20:13Z 2008-10-25T21:20:13Z <p>As already mentioned in other answers, use BufferedInputStreams.</p> <p>After that, I guess the buffer size does not really matter. Either the program is I/O bound, and growing buffer size over BIS default, will not make any big impact on performance.</p> <p>Or the program is CPU bound inside the MessageDigest.update(), and majority of the time is not spent in the application code, so tweaking it will not help.</p> <p>(Hmm... with multiple cores, threads might help.)</p> http://stackoverflow.com/questions/236861/how-do-you-determine-the-ideal-buffer-size-when-using-fileinputstream/237038#237038 0 Answer by Alexander for How do you determine the ideal buffer size when using FileInputStream? Alexander 2008-10-25T21:27:18Z 2008-10-25T21:33:37Z <p>Reading files using Java NIO's FileChannel and MappedByteBuffer will most likely result in a solution that will be much faster than any solution involving FileInputStream. Basically, memory-map large files, and use direct buffers for small ones.</p> http://stackoverflow.com/questions/236861/how-do-you-determine-the-ideal-buffer-size-when-using-fileinputstream/237495#237495 4 Answer by Kevin Day for How do you determine the ideal buffer size when using FileInputStream? Kevin Day 2008-10-26T03:44:20Z 2008-10-27T03:43:45Z <p>Optimum buffer size is related to a number of things: file system block size, CPU cache size and cache latency.</p> <p>Most file systems are configured to use block sizes of 4096 or 8192. In theory, if you configure your buffer size so you are reading a few bytes more than the disk block, the operations with the file system can be extremely inefficient (i.e. if you configured your buffer to read 4100 bytes at a time, each read would require 2 block reads by the file system). If the blocks are already in cache, then you wind up paying the price of RAM -> L3/L2 cache latency. If you are unlucky and the blocks are not in cache yet, the you pay the price of the disk->RAM latency as well.</p> <p>This is why you see most buffers sized as a power of 2, and generally larger than (or equal to) the disk block size. This means that one of your stream reads could result in multiple disk block reads - but those reads will always use a full block - no wasted reads.</p> <p>Now, this is offset quite a bit in a typical streaming scenario because the block that is read from disk is going to still be in memory when you hit the next read (we are doing sequential reads here, after all) - so you wind up paying the RAM -> L3/L2 cache latency price on the next read, but not the disk->RAM latency. In terms of order of magnitude, disk->RAM latency is so slow that it pretty much swamps any other latency you might be dealing with.</p> <p>So, I suspect that if you ran a test with different cache sizes (haven't done this myself), you will probably find a big impact of cache size up to the size of the file system block. Above that, I suspect that things would level out pretty quickly.</p> <p>There are a <em>ton</em> of conditions and exceptions here - the complexities of the system are actually quite staggering (just getting a handle on L3 -> L2 cache transfers is mind bogglingly complex, and it changes with every CPU type).</p> <p>This leads to the 'real world' answer: If your app is like 99% out there, set the cache size to 8192 and move on (even better, choose encapsulation over performance and use BufferedInputStream to hide the details). If you are in the 1% of apps that are highly dependent on disk throughput, craft your implementation so you can swap out different disk interaction strategies, and provide the knobs and dials to allow your users to test and optimize (or come up with some self optimizing system).</p>