Tagged Questions
0
votes
1answer
52 views
Java non-blocking IO: Is it possible to check how much you can write before calling channel.write()?
I understand a channel.write(outBuffer) can fail to write all the contents of outBuffer because the underlying socket buffer is full. Then you have to register OP_WRITE and wait for selector ...
3
votes
1answer
146 views
What is the difference between a blocking socket write and a non-blocking socket write in Java?
The difference between non-blocking reads and blocking reads is obvious, but I am confused about writes. I understand that a non-blocking write never blocks (duh!). If the underlying socket buffer is ...
2
votes
1answer
49 views
Android DatagramChannel.register() block execution [duplicate]
I have generic network nonblocking socket library on Java, on default JVM all works fine, but on Android platform next code blocks :
DatagramChannel channel;
. . .
channel.bind(...)
...
0
votes
0answers
146 views
NIO (non-blocking IO) with Tomcat/Jetty, and Spring/Hibernate - possible?
I'm considering configuring tomcat (or jetty) to use NIO (non-blocking IO) for several, of my apps using Spring/Hibernate, to improve performance.
I am still unsure right now how NIO works, but my ...
1
vote
2answers
278 views
Java NIO nonblocking: how to refuse incoming connections?
I'm trying to use server side code based on java NIO(non blocking) from 'The Rox Java NIO Tutorial'. There are lot of incoming socket connections and I would like to accept only 100. So if there are ...
2
votes
2answers
149 views
NIO blocking write not working
I have recently been writing a Java NIO based server with non-blocking sockets and I've bumped in to some problems in regarding writing the data out. I know by now that there are conditions where ...
1
vote
2answers
763 views
NIO fail when writing more data than reading
I've been playing around with the NIO and non-blocking sockets expecting to code a simple and high performant server where I could easily throttle the input data if and when the writing or the middle ...
0
votes
2answers
666 views
Java NIO nonblocking read returns timeout (linux kernel issue?)
i am running into a similar issue as described here: Java Linux Nonblocking Socket Timeout Behavior
I have an application implemented with Java NIO. It keeps track of a bunch of sockets, and when ...
0
votes
2answers
880 views
NIO Pipe throws “Broken Pipe”when I write to the Sink for no reason! How to debug?
I believe I have done everything correctly. I create a pipe, pass the sink to a writer thread, register the source on my selector with OP_READ, start my selector. Everything works but as soon as I ...
2
votes
1answer
497 views
Has anyone played with NIO pipes to filter / intercept System.out?
As suggested here I would like to do that inside the selector loop. What I would really want is to read contents written to system out inside my selector loop.
EDIT1: I coded a complete solution just ...
1
vote
2answers
65 views
Does each SelectionKey (or SelectionKeyImpl) have a unique identifier (id) that I can use?
I need to have a unique ID for each of my SelectionKey. Can I use some internal id from the SelectionKeyImpl? I could use the FD for example, but I am not confident I will be always unique per ...
0
votes
1answer
203 views
closing a non blocking socket channel
I want to close Java non blocking socket channel after writing a string byebye. However, methods in non blocking mode are returned immediately, so calling close() may cause the undergoing writing ...
2
votes
2answers
649 views
multithreading with non-blocking sockets
I am trying to implement a TCP Server in Java using nio.
Its simply using the Selector's select method to get the ready keys. And then processing those keys if they are acceptable, readable and so. ...
-1
votes
3answers
345 views
How to set position properly in NIO.2's AsynchronousFileChannel.write(ByteBuffer src, long position)?
My Java-program does a multithreaded XSLT Transformation and writes the results to a file. To avoid the IO bottleneck I am experimenting with the new AsynchronousFileChannel.
The XSLT-Threads should ...
1
vote
2answers
890 views
Object passing through non-blocking Java NIO sockets not always successful
I'm writing a program to simulate peers on a P2P network using Java NIO non-blocking sockets. The idea is to have each peer use the same code for sending and receiving messages as well as a server to ...
1
vote
3answers
1k views
Understanding Cause of NullPointerException in Java NIO Socket Channel
I've put together a simple echo type server app using java nio. While it is able to write the data, it always throws the following exception. Can anyone explain why this is happening? My code is ...
3
votes
3answers
4k views
Java NIO: How to know when SocketChannel read() is complete with non-blocking I/O
I am currently using a non-blocking SocketChannel (Java 1.6) to act as a client to a Redis server. Redis accepts plain-text commands directly over a socket, terminated by CRLF and responds in-like, a ...
17
votes
5answers
5k 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 ...
7
votes
3answers
3k 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 ...
1
vote
2answers
1k views
Selector.select(timeout) x Selector.selectNow()
I'm implementing a Non-Blocking HTTP server in Java and decided to use pure Java NIO. I'm combining a NIO Selector with a small thread pool to perform the operations indicated by the selector.
...
0
votes
1answer
214 views
In Java What is the guaranteed way to get a FileLock from FileChannel while accessing a RandomAccessFile?
I am trying to use
FileLock lock(long position, long size,boolean shared)
in FileChannel object As per the javadoc it can throw OverlappingFileLockException. When I create a test program with 2 ...
3
votes
3answers
467 views
NIO: Send message and then disconnect immediately
In some circumstances I wish to send an error message from a server to client using non-blocking I/O (SocketChannel.write(ByteBuffer)) and then disconnect the client. Assuming I write the full ...
0
votes
1answer
2k views
SSL and NIO Non-blocking Sockets
How do you recommend making a highly scalable SSL client?
Currently, I'm using plain Sockets to connect to the Apple APNS server which requires a non-HTTP SSL sockets. I considered using the NIO ...
2
votes
2answers
1k views
Should I use (non-blocking) NIO for UDP?
According to this post, UDP just doesn't block. Are there any advantage using the (non-blocking) NIO API for UDP? Or should I just use the easier "traditional" io API?
3
votes
2answers
682 views
Java: Is SelectionKey.attach() broken?
In my implementation of Java NIO I have not been able to get SelectionKey.attach() to work. Basically, once clients connect (OP_ACCEPT interest ops) I add them to a map where their IP address maps to ...