我们使用haproxy进行负载均衡,并且netty服务器不断上升" java.io.IOException:连接由peer" 下面是异常堆栈:
java.io.IOException: Connection reset by peer
at sun.nio.ch.FileDispatcherImpl.read0(Native Method)
at sun.nio.ch.SocketDispatcher.read(SocketDispatcher.java:39)
at sun.nio.ch.IOUtil.readIntoNativeBuffer(IOUtil.java:223)
at sun.nio.ch.IOUtil.read(IOUtil.java:192)
at sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:379)
at io.netty.buffer.PooledUnsafeDirectByteBuf.setBytes(PooledUnsafeDirectByteBuf.java:288)
at io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1055)
at io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:245)
at io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:112)
at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:510)
at io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:467)
at io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:381)
at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:353)
at io.netty.util.concurrent.SingleThreadEventExecutor$5.run(SingleThreadEventExecutor.java:742)
at io.netty.util.concurrent.DefaultThreadFactory$DefaultRunnableDecorator.run(DefaultThreadFactory.java:137)
at java.lang.Thread.run(Thread.java:745)
我使用tcpdump转储netty服务器的网络数据,见下文
10.125.137.11,10.125.137.13,10.125.137.14是hapxory服务器ip 似乎haproxy只是发送[RST,ACK]来完成健康检查。
所以,我想知道我是否必须在我的处理程序中处理这种情况(比如检查异常是IOException,只是忽略它,因为日志已经充满了这个异常),或者它应该由netty自己处理? / p>
答案 0 :(得分:0)
如果HAProxy发送RST,则可以预期。如果您不在意,可以通过覆盖ChannelHandler
方法在exceptionCaught(...)
实施中过滤掉例外。