jerqi commented on issue #2273:
URL: 
https://github.com/apache/incubator-uniffle/issues/2273#issuecomment-2519782123

   I suspect that the issue is caused by `TransportFrameDecoder`
   ```
     @Override
     public void handlerRemoved(ChannelHandlerContext ctx) throws Exception {
       // Release all buffers that are still in our ownership.
       // Doing this in handlerRemoved(...) guarantees that this will happen in 
all cases:
       //     - When the Channel becomes inactive
       //     - When the decoder is removed from the ChannelPipeline
       for (ByteBuf b : buffers) {
         b.release();
       }
       buffers.clear();
       headerBuf.release();
       super.handlerRemoved(ctx);
     }
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


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

Reply via email to