Tagged Questions
0
votes
1answer
30 views
Java NIO Http client requests with thread pools
Thread Pool Executor uses number of threads for Future Task.
It assigns at least one thread until run() or call() returns.
So, I am confused on how to use Thread Pool for JAVA NIO HTTP requests.
1) ...
0
votes
1answer
50 views
Java - Fire an event to another thread on data reception
I have to write a server that manages several Datagram sockets.
I know about the selector capabily of java.nio that allows async management of different sockets
However, after having parsed the ...
3
votes
0answers
111 views
why nio java use pipe instead of wait/notify to communication in multi thread? [closed]
selector use pipe to wakeup other blocking threads which execute select() method under Linux.
why don't use wait/notify or conditon.await/signal() to communication with threads??
0
votes
2answers
127 views
Java nio OP_READ not executed when OP_WRITE exists, in Android?
I'm trying to write a Server in Android, using NIO.
I've registered both OP_READ, OP_WRITE after my ServerChannel got accepted.
However, the wired thing is... in the while loop, after I do:
...
10
votes
2answers
675 views
Making a thread which cancels a InputStream.read() call if 'x' time has passed
I currently have a working I/O stream from Android's BluetoothChat Example, but have run into problems. My application connects via bluetooth to a bluetooth module, which in turn sends a signal to a ...
-3
votes
1answer
96 views
Java selector.select() blocking thread?
I'm trying to run a NIO Server in it's own Thread.
In my run function I defined:
while(running)
{
System.out.println("Server running!");
try
{
this.selector.select();
}
catch ...
0
votes
1answer
128 views
Java NIO Thread selector.select() Nullpointer [closed]
I'm trying to implement a Java NIO Server in its own thread.
public class MyServer extends MyThread
{
ServerSocketChannel server;
Selector selector;
public MyServer
{
super();
...
3
votes
1answer
96 views
Stop Watching A Directory for Changes (cleanup)
I implemented a directory watcher following the java tutorial: https://blogs.oracle.com/thejavatutorials/entry/watching_a_directory_for_changes
I have it on a separate thread that updates a JList. ...
0
votes
2answers
195 views
why client can not receive message from server (java)
I have just started learning java. I modified the client side code for a server/client communication program, by creating two threads for the client side, main thread for receiving user's input, and ...
2
votes
3answers
493 views
NIO Selector: How to properly register new channel while selecting
I have a subclassed Thread with a private Selector and a public register(SelectableChannel channel, ...) method that allows other threads to register channels to the selector.
As answered here, the ...
0
votes
2answers
291 views
Java: SelectionKey.interestOps(int) not thread safe?
In my application I use multiple threads to handle client connections.
i found a very weird behavior when debugging - I have a SelectionKey that by invoking (using the debugger) its interestOps() ...
2
votes
3answers
621 views
Java NIO SocketChannel.read() with multithread
I am implementing a simple file server using Java NIO with one selecting thread and multiple worker threads(for performing real read/write).
The main part of the code looks like the following:
while ...
2
votes
1answer
360 views
Java NIO and multithreading for asynchronous server
I've been trying to pair NIO with multithreaded read handling in order to make a scalable server. I cannot use any frameworks such as Netty or MINA because of several low level client-server protocol ...
0
votes
2answers
608 views
Approach to make UDP server?
I am new to Java NIO .
I have a java program which queries servers (different IPs /Ports) iteratively in a loop.
But now i want to send all the packets at once instead of in a loop and then store the ...
0
votes
1answer
307 views
Only one answer can be returned to client by a server when using UDP with netty
I have a server listening for data on a UDP port and I am using netty. My server has its own frame decoder, an execution handler, and an business-specific handler.
My test client is made with java ...
0
votes
2answers
161 views
implement my own java.nio for socket server
Ive been reading for the past few days about the difference between io and nio when building a java socket server. for my use i need a server which can run lots of connections and ion supposed to do ...
11
votes
1answer
646 views
Old I/O thread per client model or NIO reactor pattern?
I am writing the server-side networking of a multiplayer game. The game is an RPG and it has the absolute maximum capacity of 2000 players, but it practically will max out at about 300 players, ...
3
votes
1answer
2k views
Lot of UDP requests lost in UDP server with Netty
I wrote a simple UDP Server with Netty that simply prints out in logs the messages (frames) received. To do that, I created a simple frame decoder decoder and a simple message handler. I also have a ...
0
votes
2answers
484 views
NIO Reactor Pattern: Receiving asynchronous callbacks inside the selector loop every N miliseconds
I was wondering what is the standard/best implementation of that in Java NIO. This is fundamental to implement something like heartbeats every N seconds, etc. Note: For obvious reasons (threads are ...
4
votes
3answers
410 views
Can I seek a file from different threads independently using FileChannel?
I created a web application that works on FLV files.
This application uses a library that I created for parsing content from flv files. This library uses FileChannel to seek a file.
I'm experiencing ...
0
votes
0answers
610 views
NIO Client wait for user input to send request
I have a simple java nio client hooked up to a simple echo server.
Currently, to prevent super fast, infinite requests, I simply sleep the thread to only send a request to the server every 9 ...
2
votes
2answers
647 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. ...
0
votes
1answer
151 views
Should I have two threads for input/output or use NIO?
I have been working on a (relatively) simple tcp client/server chat program for my networking class. The problem that I am running into is I am using blocking calls, such as read() and writeBytes(). ...
3
votes
1answer
466 views
Selector.select do not block as expected
In my current project I notice that select() do not block as expected.
It do not block at all and return always, even when no IO was present. So I got a busy cpu.
The registration will always invoked ...
3
votes
2answers
239 views
Threading implications of AsynchronousByteChannel
The Javadoc for AsynchronousByteChannel.read() says the operation takes place asynchronously, but what happens when the end of stream has been reached? Is an implementation allowed to fire the ...
6
votes
4answers
437 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 ...
3
votes
1answer
183 views
Java NIO: how to protect global data effectively?
Is there any difference in the ways we protect resources in thread-per-connection model and NIO-model (using Netty for example)? For example, if we have some global object the most obvious thing to ...
5
votes
4answers
2k 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 ...
0
votes
1answer
379 views
Rate limiting a connection group in multithreaded environment
I am wondering which is the most efficient rate limiting algorithm when I want to limit the transfer rate of a socket group in a multithreaded environment. Currently I am using a single threaded ...
4
votes
5answers
4k views
java.nio vs new thread for each socket [closed]
I am developping a 1 to many server-client application, which is a small project.
Since socket IO is blocking. I am looking for a solution for this.
Could anyone tell me what is the good/bad for ...
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 ...
1
vote
1answer
582 views
Problems with non-blocking select with java.nio
I've just started using java.nio and probably used it some wrong way so I got a slight problem with it.
I'm trying to write a something like a Port Forwarder that can modify the traffic that passes ...
15
votes
4answers
3k 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 ...
16
votes
10answers
2k 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. ...
1
vote
2answers
236 views
how to scale this single threaded java client?
I'm writing a Stomp protocol client with Java and it has only one thread to process IO. That means that thread reads and writes incoming data to the application back and forth. My issue is if I need ...
0
votes
3answers
1k views
Should thread blocked by java NIO Selector.select() be considered waiting or running
The documentation of selectorObj.select() method states
This method performs a blocking
selection operation. It returns only
after at least one channel is
selected, this selector's wakeup
...
3
votes
4answers
4k views
Java: Complete code examples of thread-per-connection blocking IO versus NIO?
Ok, I'm going crazy here. I have been rewriting the NIO code for my server, and running into some real headaches. The bottom line is that getting NIO "right" is very hard. Some people pointed me to ...
4
votes
2answers
3k views
Java - Multiple selectors in multiple threads for nonblocking sockets
I'm writing a Java application that will instantiate objects of a class to represent clients that have connected and registered with an external system on the other side of my application.
Each ...
0
votes
1answer
113 views
help needed in selector issue nio, threading
I need to implement a server in which has only one selector(static); multiple threads try to register channel to the same static selector.
I tried to implement the server, but the problem is that the ...
0
votes
2answers
286 views
static selector between threads on nio server
I need to implement a server in which has only one selector(static); multiple threads try to register channel to the same static selector.
I tried to implement the server, but the problem is that the ...
3
votes
4answers
2k views
thread is stuck while registering channel with selector in Java NIO server
I have a basic question. Why and how SelectableChannel's register method can be in blocking call.
Let me provide a scenario.
I have created a Selector object in class Register as follows.
private ...
1
vote
3answers
183 views
help needed in threading implementation in NIO
I want to have create NIOServer which reads data from client using 1 thread and writes data to the client using another thread.
also accepting client connection will be in some other thread.
Is there ...