1
vote
0answers
22 views

Netty server down (Server is running in eclipse debug mode )

My netty server suddently stop accepting TCP connection. It works fine til last night.The server is hosted in remote, it is running in eclipse Version: "Juno Service Release 1" in debug mode.I didn't ...
0
votes
1answer
15 views

Netty messageReceived, writing object not working

Server code: public static void main(String[] args) { try { ServerBootstrap bootstrap = new ServerBootstrap(new NioServerSocketChannelFactory(Executors.newCachedThreadPool(), ...
0
votes
1answer
52 views

Netty HTTP + MongoDB: Unlimited Increment in connections

I'm now using Netty as my backend webservice and MongoDB as my database. At first, I'm very glad with the high performance of the combination of MongoDB and Netty. But recently I checked the MongoDB ...
1
vote
1answer
36 views

Unable to receive response in client from netty server

I am new to Netty and trying to writing a server client project using it. I am able to send the request from client to the server successfully and am able to process it too using my listeners. But the ...
0
votes
1answer
43 views

NioEventLoopGroup vs AioEventLoopGroup

I am a new comer to Netty and Java NIO. I am using Netty 4.0 RC3. I am confused by the difference between NioEventLoopGroup and AioEventLoopGroup. I see that NioEventLoopGroup is using Java NIO.1 ...
1
vote
1answer
53 views

Netty Server Push Usage and Memory Leak

I'm now using Android as my Netty client. And Windows as my Netty Server. Recently, I find a strange behavior on Netty. When I open the server-side app, the memory is only 30MB. But after several ...
0
votes
1answer
42 views

Netty dynamic pipeline configuration

This may be a "newb" question but here it goes anyway. We have a netty server up and running and we want it to support multiple different protocols like straight tcp, http, udp etc.. I am trying to ...
0
votes
1answer
23 views

netty fireWriteComplete actually nothing written to remote

netty 3.x, nio model: the netty IO writing thread will invoke WritableByteChannel.write(ByteBuffer) finally,netty will consider it written successfuly,but actually the bytes are written to a socket ...
0
votes
1answer
83 views

How to pass data between Channels in netty?

I am writing a simple routing application. The idea is that I have servers or source nodes that receive transient clients connections that last for a period of x time. The messages received are ...
0
votes
1answer
48 views

Joining multiple groups does not work with Netty 3.6.5.Final on SuSe Linux and JDK7

I'm implementing a UDP server using Netty 3.6.5.Final and JDK7 (Nio.2) on Suse Linux and I've run up against the wall. The problem specifically deals with the differences in binding to the wildcard ...
0
votes
4answers
165 views

Java sockets: open connections from server to client

I have a client server problem with the following unique requirement: 1. The server has to open N connections to the known client and the client can only use those connections to request data from the ...
1
vote
1answer
79 views

Netty Connetion Handling during blip scenario

we are using Netty3.2.1 in our gaming company for connection management between client and server . Our aim is improve Able handle the blip scenarios like network outages and must able to recover ...
0
votes
2answers
187 views

Netty FrameDecoder not invoked in ChannelPipeline without carriage return?

I'm working with Netty and it seems that a FrameDecoder in a ChannelPipeline isn't invoked unless/until a carriage return is received. For example, I have the following decoder that I've written to ...
1
vote
2answers
110 views

Client channel is not in writable state(NIO) Netty

client channel is not in writable state in netty . Can any experts guide me to find-out the reason why the channel is always not in writable state? since it is not in writable state our threads are ...
0
votes
0answers
112 views

Netty Server hangs after a message is received

I have a netty server that accept connections and receiving messages from client. But server doesn't process any message. We got a MySQL communication link failure but server is still having ...
0
votes
1answer
100 views

Create a ByteBuf in Netty 4.0.0.Beta1

Two simple questions, which I am not able to solve by ready in the documentation: I have a 'byte[]'. How can i convert it to a ByteBuf? I have a NIO 'ByteBuffer How can i convert it to a ...
0
votes
1answer
145 views

Multicast in netty 4

Is multicast working in Netty 4 in java 7. I am really struggling to get it to work. I basically do this: NioEventLoopGroup loop = new NioEventLoopGroup(0); NioDatagramChannel channel = new ...
0
votes
1answer
99 views

How can I forward a message that received a server to another server in Netty (Java)?

I have some clients, they communicate with one server and I need that server forward the message to another second server. Then, receive the message from the second server and send to the client. ...
1
vote
1answer
219 views

Netty : does it need to care TCP segments reassembly?

I have a question regarding to TCP segments reassembly. I learned the packet could be devided into multiple segments (this is something to do with MSS). i.e) Message flow (Assumption): Client sends ...
0
votes
2answers
255 views

HornetQ Consumers on Linux High CPU Load

We are using HornetQ 2.2.14 on CentOS 6.3. We have been experiencing an issue with high CPU usage in our appservers, and have narrowed it down to our HornetQ Consumers using a profiler. ...
0
votes
0answers
74 views

Am I abusing NIO (Netty)?

So I'm using a library which provides some image data via Netty ChannelBuffers. Currently I'm basically draining the buffer and reading the image synchronously, but I feel that this is missing the ...
0
votes
2answers
62 views

is there a way to cancel a key such that I can still read from it later with java nio

We would like get tcp flow control as a primary component of a new java nio library. It would work like this... library fires data to Listener.incomingData(DataChunk dataChunk); library will not ...
25
votes
2answers
1k views

Play framework/Netty does not release socket

Have already asked similar question, but deleted it, since thought I fixed it, but I was wrong. I'm using Play framework in production for one of my web projects. From time to time Play does not ...
2
votes
1answer
133 views

Netty - using the same channelFactory cause only 3 responses to be handled

I was assigned to create an HTTP client based on Netty, but I'm having some difficulties and I hoped there an answer for me. Well, to use NIO to its full advantage I wanted to use the same ...
6
votes
1answer
200 views

Reliable/persistent outbound sockets needed, options?

I have a Scala application which maintains (or tries to) TCP connections to various servers for hours (possibly > 24) at a time. Each server sends a short, ~30 character message about twice a second. ...
0
votes
0answers
61 views

Netty: detect whether sent data was received by client [duplicate]

Possible Duplicate: How to get an acknowledgement for the client socket from server? I have implemented a comet message server using netty which keeps connections open for a long time. It ...
1
vote
1answer
655 views

netty http request getContent sometime give a headers in body

I'm using netty in client mode using ClientBootstrap. When i'm trying to recieve a message most times it works fine and return me only a body, but sometimes( the server always return same response) i ...
2
votes
2answers
434 views

ClosedChannelException observered with netty 3.2.7 and 3.3.1 under load

Every thing is working fine when my netty server is not loaded. But under load it starts to fail. Currently I am using all default settings ( have not set any options ). Please suggest if I need to ...
0
votes
1answer
89 views

Where can I find a detailed explanation of how to set up netty?

I've been searching for a good nio framework for creating a server/client system, and netty seems to be perfect for my needs. But, I am having a lot of trouble setting up. Do I have to use maven? ...
1
vote
1answer
731 views

Netty echo server can't handle 100+ channels

I want to create chat-server which would handle 100-500 users in different rooms. I decided to use Netty framework, because of event-based arcitecture (which is very familiar to me). I started with ...
1
vote
1answer
248 views

Netty 4.0 - Close Channel on Invalid Input

Basically I have the following decoder: public class Decoder extends ReplayingDecoder<Packet, Void> { @Override public Packet decode(ChannelHandlerContext ctx, ByteBuf in) throws Exception { ...
0
votes
1answer
344 views

Connect to external HTTP server from Netty

I need some help with understanding how to write HTTP router, which recognizes HTTP header as routing criteria. I found the link ...
1
vote
0answers
528 views

Why is my Netty based TCP server hanging up with 100% CPU usage?

I've developed a Netty based TCP server to receive maintain connection with GSM/GPRS based devices and to persist those data in MySql database. Currently 5K connections are handled. Devices send ...
0
votes
1answer
320 views

Netty large POJO transfer error: TooLongFrameException

I have a netty pipeline such as: return Channels.pipeline( new ObjectEncoder(), new ObjectDecoder(), new ...
3
votes
2answers
164 views

How to store unsigned short in java?

So generally I'm using Netty and it's BigEndianHeapChannelBuffer to receive unsinged short (from c++ software) in Java. When I do it like this: buf.readUnsignedByte(); buf.readUnsignedByte(); it ...
5
votes
3answers
1k views

Lightweight and low-latency Java network library?

I'm working on a client-server pair where the multithreaded client performs thousands invocations of the server per second and the first priority is to achieve a minimal latency. Throughput should be ...
0
votes
2answers
619 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 ...
-1
votes
3answers
1k views

Netty - How worker threads work

I want to understand how netty worker threads work . as per the code , for each new request we get nextwoker() any one of the worker thread and allocate it for processing of events of client . SO a ...
0
votes
1answer
324 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 ...
1
vote
1answer
238 views

java netty/nio connect generates an excessive amount of interrupts on windows 2003

i am using netty nio for client server communication on a single machine. the same client/server programs work fine on many servers except on certain windows 2003 machines. if the server is not ...
3
votes
1answer
185 views

What does the NIO constraint level do exactly, and how does it affect performance?

I noticed the following output from the WebSphere (IBM) JDK when I start my server with Netty NIO code. I am using Netty 3.4.0 FINAL with IBM JDK for WebSphere 6.1. Using the autodetected NIO ...
1
vote
2answers
1k views

Netty Different Pipeline Per UDP Datagram

We've got a server which is already implemented in TCP/IP but we now have a requirement for the protocol to support UDP as well. Each UDP datagram sent contains everything I need to decode so it is a ...
1
vote
3answers
598 views

Can Netty efficiently handle scores of outgoing connections as a client?

I'm creating a client-server relationship whereby a single client will be connected to an arbitrary number of servers using persistent TCP connections. The actual number of servers is as-of-yet ...
0
votes
2answers
191 views

How to read complete data from the device using Netty?

Am developing one java application using netty .In this application it will read data from the device and put it into database .But here the problem is once the device send half data it will read and ...
-3
votes
3answers
888 views

how to use netty for chatroom. flash client

all i will write chatroom use netty for server. and flash for client. The protocol use json string with "\r\n" end.I write three handler "MessageDecoder","MessageHandler","MessageEncoder". and use ...
0
votes
0answers
158 views

what are the features added in java NIO and subsequently NIO2 ? [closed]

what are the features, functionalities that were added in java NIO and subsequently NIO2 ? Also some performance characteristics. Would also like some comparison with the current versions of Netty.
1
vote
0answers
345 views

org.jboss.netty.channel.ChannelFuture.awaitUninterruptibly() hangs when closing a channel using SSL/TLS

This problem occurs if our backend uses an SSLHandler while the frontend does not: When the frontend connects to the backend, an (expected) exception is thrown in the backend by a ChannelHandler: ...
0
votes
1answer
480 views

Handling ReadTimeoutHandler time out

I just can't realize why my read time out is not working. All I want to do is just to wait for 10 seconds for some thread to put message to BlockedQueue<String> and on timeout return some kind ...
3
votes
1answer
4k views

Asynchronous HTTP client with Netty

I'm new to netty and still strugling to find my way. I'm looking to create an http client that works asynchronously. The netty examples of http only show how to wait for IO operations, and not how to ...
1
vote
1answer
423 views

Sharing one instance of HashedWheelTimer

In this question Netty Comet Async request time out It was suggested to me, to share one instance of HashedWheelTimer between pipelines. My current code looks like this @Override public ...

1 2