views:

3997

answers:

5

Hello,

I am trying to figure out if there is any difference in performance (or advantages) when we use nio FileChannel versus normal FileInputStream/FileOuputStream to read and write files to filesystem. I observed that on my machine both perform at the same level, also many times the FileChannel way is slower. Can I please know more details comparing these two methods. Here is the code I used, the file that I am testing with is around 350MB. Is it a good option to use NIO based classes for File I/O, if I am not looking at random access or other such advanced features?

package trialjavaprograms;

import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.InputStream;
import java.nio.ByteBuffer;
import java.nio.channels.FileChannel;

public class JavaNIOTest {
    public static void main(String[] args) throws Exception {
     useNormalIO();
     useFileChannel();
    }

    private static void useNormalIO() throws Exception {
     File file = new File("/home/developer/test.iso");
     File oFile = new File("/home/developer/test2");

     long time1 = System.currentTimeMillis();
     InputStream is = new FileInputStream(file);
     FileOutputStream fos = new FileOutputStream(oFile);
     byte[] buf = new byte[64 * 1024];
     int len = 0;
     while((len = is.read(buf)) != -1) {
      fos.write(buf, 0, len);
     }
     fos.flush();
     fos.close();
     is.close();
     long time2 = System.currentTimeMillis();
     System.out.println("Time taken: "+(time2-time1)+" ms");
    }

    private static void useFileChannel() throws Exception {
     File file = new File("/home/developer/test.iso");
     File oFile = new File("/home/developer/test2");

     long time1 = System.currentTimeMillis();
     FileInputStream is = new FileInputStream(file);
     FileOutputStream fos = new FileOutputStream(oFile);
     FileChannel f = is.getChannel();
     FileChannel f2 = fos.getChannel();

     ByteBuffer buf = ByteBuffer.allocateDirect(64 * 1024);
     long len = 0;
     while((len = f.read(buf)) != -1) {
      buf.flip();
      f2.write(buf);
      buf.clear();
     }

     f2.close();
     f.close();

     long time2 = System.currentTimeMillis();
     System.out.println("Time taken: "+(time2-time1)+" ms");
    }
}
A: 

My experience is, that NIO is much faster with small files. But when it comes to large files FileInputStream/FileOutputStream is much faster.

tangens
Did you get that mixed up? My own experience is that `java.nio` is faster with *larger* files than `java.io`, not smaller.
Stu Thompson
No, my experience is the other way round. `java.nio` is fast as long the file is small enough to be mapped to memory. If it gets bigger (200 MB and more) `java.io` is faster.
tangens
Wow. The total opposite of me. Note that you don't necessarily need to map a file to read it--one can read from the `FileChannel.read()`. There is not just one single approach to read files using `java.nio`.
Stu Thompson
OK, I'll check again what kind of read I've done exactly.
tangens
+5  A: 

If the thing you want to compare is performance of file copying, then for the channel test you should do this instead:

FileInputStream is = new FileInputStream(file);
FileOutputStream fos = new FileOutputStream(oFile);
FileChannel f = is.getChannel();
FileChannel f2 = fos.getChannel();

f.transferTo(0, f.size(), f2);

f2.close();
f.close();

This won't be slower than buffering yourself from one channel to the other, and will potentially be massively faster. According to the Javadocs:

Many operating systems can transfer bytes directly from the filesystem cache to the target channel without actually copying them.

uckelman
+1 for massively faster. It's all about the DMA.
Stu Thompson
A: 

I tested the performance of FileInputStream vs. FileChannel for decoding base64 encoded files. In my experients I tested rather large file and traditional io was alway a bit faster than nio.

FileChannel might have had an advantage in prior versions of the jvm because of synchonization overhead in several io related classes, but modern jvm are pretty good at removing unneeded locks.

Jörn Horstmann
+11  A: 

My experience with larger files sizes has been that java.nio is faster than java.io. Solidly faster. Like in the >250% range. That said, I am eliminating obvious bottlenecks, which I suggest your micro-benchmark might suffer from. Potential areas for investigating:

The buffer size. The algorithm you basically have is

  • copy from disk to buffer
  • copy from buffer to disk

My own experience has been that this buffer size is ripe for tuning. I've settled on 4KB for one part of my application, 256KB for another. I suspect your code is suffering with such a large buffer. Run some benchmarks with buffers of 1KB, 2KB, 4KB, 8KB, 16KB, 32KB and 64KB to prove it to yourself.

Don't perform java benchmarks that read and write to the same disk.

If you do, then you are really benchmarking the disk, and not Java. I would also suggest that if your CPU is not busy, then you are probably experience some other bottle neck.

Don't use a buffer if you don't need to.

Why copy to memory if your target is another disk or a NIC? With larger files, the latency incured is non-trivial.

Like other have said, use FileChannel.transferTo() or FileChannel.transferFrom(). The key advantage here is that the JVM uses the OS's access to DMA (Direct Memory Access), if present. (This is implementation dependent, but modern Sun and IBM versions on general purpose CPUs are good to go.) What happens is the data goes straight to/from disc, to the bus, and then to the destination...by passing any circuit through RAM or the CPU.

The web app I spent my days and night working on is very IO heavy. I've done micro benchmarks and real-world benchmarks to. And the results are up on my blog, have a look-see:

Use production data and environments

Micro-benchmarks are prone to distortion. If you can, make the effort to gather data from exactly what you plan to do, with the load you expect, on the hardware you expect.

My benchmarks are solid and reliable because they took place on a production system, a beefy system, a system under load, gathered in logs. Not my notebook's 7200 RPM 2.5" SATA drive while I watched intensely as the JVM work my hard disc.

What are you running on? It matters.

Stu Thompson
+2  A: 

check http://www.ibm.com/developerworks/library/j-zerocopy/ for a complete understanding