我正在使用最新版本的Netty-4 CR6尝试我的应用程序。在我的应用程序的服务器端,我在大约200个请求/秒的负载下得到以下错误:
io.netty.handler.codec.DecoderException: java.lang.OutOfMemoryError: Direct buffer memory
at io.netty.handler.codec.ReplayingDecoder.callDecode(ReplayingDecoder.java:393)
at io.netty.handler.codec.ByteToMessageDecoder.messageReceived(ByteToMessageDecoder.java:129)
at io.netty.channel.DefaultChannelHandlerContext.invokeMessageReceived(DefaultChannelHandlerContext.java:379)
at io.netty.channel.DefaultChannelHandlerContext.fireMessageReceived(DefaultChannelHandlerContext.java:364)
at io.netty.channel.DefaultChannelHandlerContext.fireMessageReceived(DefaultChannelHandlerContext.java:347)
at io.netty.channel.DefaultChannelPipeline.fireMessageReceived(DefaultChannelPipeline.java:780)
at io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:92)
at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:489)
at io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:464)
at io.netty.channel.nio.NioEventLoop.run(NioEventL
这是一个文件传输应用程序。我正在使用Netty-4 CR6 jar的客户端和服务器构建。在每个请求中,客户端创建一个WebSocket连接,传输大约850KB的文件,最后通过发送CloseWebSocketFrame来关闭连接。
答案 0 :(得分:0)
查看以下bug。你可能遇到过它。这里的选项是
1.在上游处理程序中使用msgs.releaseAll()
2.使用io.netty.channel.SimpleChannelInboundHandler
类作为消费处理程序。然后你不需要使用releaseAll
逻辑,因为netty在内部照顾你。