SteNicholas commented on code in PR #3716:
URL: https://github.com/apache/celeborn/pull/3716#discussion_r3371190715
##########
client/src/main/java/org/apache/celeborn/client/DummyShuffleClient.java:
##########
@@ -56,15 +59,23 @@ public class DummyShuffleClient extends ShuffleClient {
private final OutputStream os;
private final CelebornConf conf;
+ private final boolean shuffleIntegrityCheckEnabled;
private final Map<Integer, ConcurrentHashMap<Integer, PartitionLocation>>
reducePartitionMap =
new HashMap<>();
+ // Tracking for CRC verification in tests
+ private final Map<String, PushState> pushStateMap = new
ConcurrentHashMap<>();
+ private final Map<String, Map<Integer, List<byte[]>>> crcDataByMapKey = new
ConcurrentHashMap<>();
+ private final Map<String, Map<Integer, List<byte[]>>> pushDataByMapKey =
Review Comment:
Ditto.
--
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]