Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -309,8 +309,9 @@ final class ShuffleBlockFetcherIterator(
buf.retain()
remainingBlocks -= blockId
blockOOMRetryCounts.remove(blockId)
updateMergedReqsDuration(BlockId(blockId).isShuffleChunk)
results.put(SuccessFetchResult(BlockId(blockId), infoMap(blockId)._2,
val blkId = BlockId(blockId)
updateMergedReqsDuration(blkId.isShuffleChunk)
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

the implementation seems different from pr memo description

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for taking a look! Could you point out specifically which part of the description seems different from the implementation? I'd be happy to clarify or update.

results.put(SuccessFetchResult(blkId, infoMap(blockId)._2,
address, infoMap(blockId)._1, buf, remainingBlocks.isEmpty))
logDebug("remainingBlocks: " + remainingBlocks)
enqueueDeferredFetchRequestIfNecessary()
Expand Down