xianjingfeng commented on code in PR #2690:
URL: https://github.com/apache/uniffle/pull/2690#discussion_r2575957683
##########
server/src/main/java/org/apache/uniffle/server/block/PartitionedShuffleBlockIdManager.java:
##########
@@ -110,6 +110,10 @@ public byte[] getFinishedBlockIds(
Map<Integer, Roaring64NavigableMap> partitionToBlockId =
shuffleIdToPartitions.get(shuffleId);
+ if (partitionToBlockId == null) {
+ return RssUtils.serializeBitMap(Roaring64NavigableMap.bitmapOf());
Review Comment:
In our production environment, I found that if a stage has not shuffle data,
`partitionToBlockId` is null.
https://github.com/apache/uniffle/blob/8cb662524f7e215391dfb77edfefb0ade8faa745/client/src/main/java/org/apache/uniffle/client/impl/ShuffleWriteClientImpl.java#L767-L769
--
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]