Tagged Questions
NIO is Java 'New I/O' introduced in 1.4, providing non-blocking and multiplexed network I/O; 'direct' (native) buffers; file locks and mapped files; and character set codecs.
28
votes
6answers
15k views
Java NIO FileChannel versus FileOutputstream performance / usefulness
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 ...
14
votes
2answers
480 views
Java in 2011: threaded sockets VS NIO: what to choose on 64bit OS and latest Java version?
I've read several posts about java.net vs java.nio here on StackOverflow and on some blogs. But I still cannot catch an idea of when should one prefer NIO over threaded sockets. Can you please examine ...
14
votes
9answers
760 views
One thread per client. Doable?
I'm writing a Java server which uses plain sockets to accept connections from clients. I'm using the fairly simple model where each connection has its own thread reading from it in blocking mode. ...
14
votes
6answers
6k views
Binary search in a sorted (memory-mapped ?) file in Java
I am struggling to port a Perl program to Java, and learning Java as I go. A central component of the original program is a Perl module that does string prefix lookups in a +500 GB sorted text file ...
13
votes
7answers
599 views
How to deal with a very large text file?
I'm currently writing something that needs to handle very large text files (a few GiB at least). What's needed here (and this is fixed) is:
CSV-based, following RFC 4180 with the exception of ...
12
votes
5answers
2k views
Java thread per connection model vs NIO
Is the non-blocking Java NIO still slower than your standard thread per connection asynchronous socket?
In addition, if you were to use threads per connection, would you just create new threads or ...
11
votes
4answers
661 views
Java 7: Path vs File
For new applications written in Java 7, is there any reason to use a java.io.File object any more or can we consider it deprecated?
I believe a java.nio.file.Path can do everything a java.io.File ...
11
votes
2answers
733 views
Java Segmentation fault
I am using a 64-bit JVM (Oracle), when i try to allocate buffer sizes larger than 256 MB it complains and throws a "segmentation fault" error. I and allocation direct memory buffers using java NIO, ...
11
votes
4answers
1k views
Java I/O vs. Java new I/O (NIO) with Linux NPTL
My webservers use the usual Java I/O with thread per connection mechanism. Nowadays, they are getting on their knees with increased user (long polling connection). However, the connections are mostly ...
11
votes
7answers
5k views
Recursively list files in Java
How do I recursively list all files under a directory in Java? Does the framework provide any utility?
I saw a lot of hacky implementations. But none from the framework or nio
11
votes
2answers
16k views
Java: Converting String to and from ByteBuffer and associated problems
I am using Java NIO for my socket connections, and my protocol is text based, so I need to be able to convert Strings to ByteBuffers before writing them to the SocketChannel, and convert the incoming ...
10
votes
3answers
2k views
Why the odd performance curve differential between ByteBuffer.allocate() and ByteBuffer.allocateDirect()
I'm working on some SocketChannel-to-SocketChannel code which will do best with a direct byte buffer--long lived and large (tens to hundreds of megabytes per connection.) While hashing out the exact ...
9
votes
7answers
747 views
How should I deal with a very large array in Java?
I have an algorithm which currently allocates a very large array of doubles, which it updates and searches frequently. The size of the array is N^2/2, where N is the number of rows on which the ...
8
votes
4answers
190 views
how can I subclass ByteBuffer?
So the Java NIO architects didn't make a ByteBuffer interface, but rather a ByteBuffer class, which isn't a final class, but it has no package-public constructors, and therefore it can't be subclassed ...
8
votes
4answers
118 views
How to avoid making defensive copies of ByteBuffer?
I've got a class that takes a ByteBuffer as a constructor argument. Is there a way to avoid making defensive copies in order to ensure that the buffer doesn't get modified past that point?
...
8
votes
4answers
693 views
Java TCP/IP Socket Performance Problem
Our application is reading data very fast over TCP/IP sockets in Java. We are using the NIO library with a non-blocking Sockets and a Selector to indicate readiness to read. On average, the overall ...
7
votes
7answers
303 views
NIO Performance Improvement compared to traditional IO in Java
I have seen many articles/blogs saying that Java NIO is a better solution compared to traditional Java IO.
But today one of my co-worker showed me this blog ...
7
votes
3answers
1k views
Java Non-Blocking and Asynchronous IO with NIO & NIO.2 (JSR203) - Reactor/Proactor Implementations
So here I am reading one of my favorite software pattern books (Pattern-Oriented Software Architecture - Patterns for Concurrent and Networked Objects), specifically the sections on Proactor/Reactor ...
7
votes
1answer
266 views
Java 7 new IO API - Paths.exists
Does anyone know what happened to the path.exists() API method in the latest Java 7 API?
I cannot find the change in the change logs, and between b123 and b130, the method has been removed from the ...
7
votes
1answer
426 views
Java map / nio / NFS issue causing a VM fault: “a fault occurred in a recent unsafe memory access operation in compiled Java code”
I have written a parser class for a particular binary format (nfdump if anyone is interested) which uses java.nio's MappedByteBuffer to read through files of a few GB each. The binary format is just ...
7
votes
1answer
4k views
How to send and receive serialized object in socket channel
I want to transmit a serialized object over a socket channel.
I want make "Hi friend" string as serialized object and then write this object in socket channel while in the other end i want to read the ...
7
votes
9answers
6k views
Java Large Files Disk IO Performance
I have two (2GB each) files on my harddisk and want to compare them with each other:
Copying the original files with Windows explorer takes approx. 2-4 minutes (that is reading and writing - on the ...
7
votes
7answers
1k views
Extending ByteBuffer class
Is there any way to create class that extends ByteBuffer class?
Some abstract methods from ByteBuffer are package private, and if I create package java.nio, security exception is thrown.
I would ...
7
votes
2answers
1k views
When using Java's FileLock, is it ok to let close() to automatically do a lock.release()?
As most should know close() also closes any streams uses.
This allows the follow code:
BufferedReader br = new BufferedReader(new InputStreamReader(new FileInputStream(...)));
...
br.close();
This ...
6
votes
2answers
190 views
compression on java nio direct buffers
The gzip input/output stream dont operate on Java direct buffers.
Is there any compression algorithm implementation out there that operates directly on direct buffers?
This way there would be no ...
6
votes
3answers
224 views
WatchService and SwingWorker: how to do it correctly?
WatchService sounded like an exciting idea ... unfortunately it seems to be as low-level as warned in the tutorial/api plus doesn't really fit into the Swing event model (or I'm missing something ...
6
votes
4answers
327 views
Java ByteBuffer performance issue
While processing multiple gigabyte files I noticed something odd: it seems that reading from a file using a filechannel into a re-used ByteBuffer object allocated with allocateDirect is much slower ...
6
votes
4answers
224 views
We need advice for a server software implementation with Java NIO
I'm trying to calculate the load on a server I have to build.
I need to create a server witch have one million users registered in an SQL database. During a week each user will approximately connect ...
6
votes
3answers
856 views
Advantages of Java NIO in blocking mode versus traditional I/O?
I have pretty much already decided not to use asynchronous, non-blocking Java NIO. The complexity versus benefit is very questionable in general, and I think it's not worth it in this project ...
6
votes
3answers
285 views
Alternatives to “Raining Sockets”
I need to build a Java app with considerable IO requirements, supporting tens of thousands of concurrent TCP connections.
I found a library called Raining Sockets which seems intended to make it ...
6
votes
3answers
1k views
Non-Blocking File IO in Java
I want to write to a named pipe (already created) without blocking on the reader. My reader is another application that may go down. If the reader does go down, I want the writer application to neep ...
6
votes
2answers
1k views
Reading a GZIP file from a FileChannel (Java NIO)
I need to read/unpack a .gz file given a FileChannel.
I've played around with extracting GZIP archives using GZIPInputStream, but this won't take a FileChannel. I don't have access to the original ...
6
votes
1answer
1k views
long polling netty nio framework java
How can I do long-polling using netty framework? Say for example I fetch http://localhost/waitforx
but waitforx is asynchronous because it has to wait for an event? Say for example it fetches ...
6
votes
5answers
1k views
Is there any Non-blocking IO open source implementation for Scala's actors?
I have quite large files that I need to deal with (500Meg+ zip files).
Are there any non-blocking IO open source implementations for Scala's actors?
6
votes
1answer
4k views
Difference between ByteBuffer.allocateDirect() and MappedByteBuffer.load()
I was trying to implement a sort of shared cache between two or more JVMs by memory mapping a particular file using MappedByteBuffer. From the specifications I see that when we use ...
6
votes
7answers
1k views
In Java, what is the best/safest pattern for monitoring a file being appended to?
Someone else's process is creating a CSV file by appending a line at a time to it, as events occur. I have no control over the file format or the other process, but I know it will only append.
In a ...
6
votes
3answers
2k views
SSL and SocketChannel
Ideally, I only need a simple SSLSocketChannel: I already have a component that reads and writes message over ordinary SocketChannel, but for some of those connection, I have to use SSL over the wire; ...
6
votes
4answers
2k views
Any NIO frameworks for .NET?
Are there any non-blocking IO frameworks for .NET?
I am looking for something similar to what Apache Mina and JBoss Netty provides for Java: a framework for implementing highly scalable servers - ...
6
votes
6answers
2k views
java.net versus java.nio
At what point is it better to switch from java.net to java.nio? .net (not the Microsoft entity) is easier to understand and more familiar, while nio is scalable, and comes with some extra nifty ...
5
votes
1answer
68 views
How to access a sub-file/folder in Java 7 java.nio.file.Path?
Java 7 introduced java.nio.file.Path as a possible replacement for java.io.File.
With File, when I access a file under a specific, I would do:
File parent = new File("c:\\tmp");
File child = new ...
5
votes
2answers
185 views
Java nio FileSystem Watcher locks directories. Deletion becomes impossible
I'm using the new feature of Java7 for watching directories for changes (as it is described in the following tutorial: http://download.oracle.com/javase/tutorial/essential/io/notification.html )
The ...
5
votes
2answers
112 views
Non-blocking socket writes in Java versus blocking socket writes
Why would someone prefer blocking writes over non-blocking writes? My understanding is that you would only want blocking write if you want to make sure the other side got the TCP packet once the write ...
5
votes
1answer
133 views
looking for a “does everything buffer” in java- decided to work with Netty
Some background:
I working on some java packages that need to take data, divide it and distribute to many Servers online. According to the user code (person using my packages), I will know which kind ...
5
votes
2answers
219 views
Java NIO and Windows disk access
Does Java NIO need special permissions on Windows?
When I run the following Java code on Windows Server 2003, it fails with an "access denied" error (that's the whole message in the cygwin terminal ...
5
votes
4answers
673 views
Can the thread per request model be faster than non-blocking I/O?
I remember 2 or 3 years ago reading a couple articles where people claimed that modern threading libraries were getting so good that thread-per-request servers would not only be easier to write than ...
5
votes
4answers
393 views
Do we need to use MappedByteBuffer.force() to flush data to disk?
I am using MappedByteBuffer to speed up file read/write operations(). My questions as below:
I am not sure if I need to use .force() method to flush the content to disk or not. It seems like without ...
5
votes
4answers
970 views
C# ==> High performance server?
I know that in java when u want to create a high performance server you use nio instead of the regular socket.
So is there such a thing for C#, to create high performance servers?
5
votes
4answers
546 views
Java NIO Servlet to File
Is there a way (without buffering the whole Inputstream) to take the HttpServletRequest from a Java Servlet and write it out to a file using all NIO? Is it even worth trying? Will it be any faster ...
5
votes
1answer
331 views
NIO - Detecting a closed connection
I have written a server that performs non-blocking IO using the Java NIO API. I'm seeing a situation whereby occassionally a client application shuts down abruptly (e.g. due to power loss) and the ...
5
votes
3answers
2k views
Java Serializable, ObjectInputstream, Non-blocking I/O
I'm just starting out with Java serialization, and I'm not clear on how you are supposed to get objects from a source in a scenario with non-blocking I/O .
All the documentation I can find suggests ...