Github user jinxing64 commented on a diff in the pull request: https://github.com/apache/spark/pull/18388#discussion_r128519475 --- Diff: common/network-common/src/main/java/org/apache/spark/network/server/TransportRequestHandler.java --- @@ -145,7 +172,12 @@ private void processStreamRequest(final StreamRequest req) { } if (buf != null) { - respond(new StreamResponse(req.streamId, buf.size(), buf)); + respond(new StreamResponse(req.streamId, buf.size(), buf)).addListener(future -> { + if (streamManager instanceof OneForOneStreamManager) { --- End diff -- The `streamId` sent to `NettyStreamManager` is not a "{streamId}_{chunkIndex}", so fail to parse?
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. --- --------------------------------------------------------------------- To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org For additional commands, e-mail: reviews-h...@spark.apache.org