vanzin commented on a change in pull request #23602: 
[SPARK-26674][CORE]Consolidate CompositeByteBuf when reading large frame
URL: https://github.com/apache/spark/pull/23602#discussion_r253683813
 
 

 ##########
 File path: 
common/network-common/src/main/java/org/apache/spark/network/TransportContext.java
 ##########
 @@ -191,9 +191,10 @@ public TransportChannelHandler initializePipeline(
       TransportChannelHandler channelHandler = createChannelHandler(channel, 
channelRpcHandler);
       ChunkFetchRequestHandler chunkFetchHandler =
         createChunkFetchHandler(channelHandler, channelRpcHandler);
+
       ChannelPipeline pipeline = channel.pipeline()
         .addLast("encoder", ENCODER)
-        .addLast(TransportFrameDecoder.HANDLER_NAME, 
NettyUtils.createFrameDecoder())
+        .addLast(TransportFrameDecoder.HANDLER_NAME, 
NettyUtils.createFrameDecoder(conf.consolidateBufsThreshold()))
 
 Review comment:
   line is too long

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to