Java Netty load testing issues

前端 未结 1 1360
梦如初夏
梦如初夏 2021-01-20 16:08

I wrote the server that accepts connection and bombards messages ( ~100 bytes ) using text protocol and my implementation is able to send about loopback 400K/sec messages wi

相关标签:
1条回答
  • 2021-01-20 16:29

    If the server is sending messages with a fixed size (~100 bytes), you can set the ReceiveBufferSizePredictor to the client bootstrap, this will optimize the read

    bootstrap.setOption("receiveBufferSizePredictorFactory",
                new AdaptiveReceiveBufferSizePredictorFactory(MIN_PACKET_SIZE, INITIAL_PACKET_SIZE, MAX_PACKET_SIZE));
    

    According to the code segment you have posted: The client's nio worker thread is doing everything in the pipeline, so it will be busy with decoding and executing the message handlers. You have to add a execution handler.

    You have said that, channel is becoming unwritable from server side, so you may have to adjust the watermark sizes in the server bootstrap. you can periodically monitor the write buffer size (write queue size) and make sure that channel is becoming unwritable because of messages can not written to the network. It can be done by having a util class like below.

    package org.jboss.netty.channel.socket.nio;
    
    import org.jboss.netty.channel.Channel;
    
    public final class NioChannelUtil {
      public static long getWriteTaskQueueCount(Channel channel) {
        NioSocketChannel nioChannel = (NioSocketChannel) channel;
        return nioChannel.writeBufferSize.get();
      }
    }
    
    0 讨论(0)
提交回复
热议问题