gauravkm commented on code in PR #3261:
URL: https://github.com/apache/celeborn/pull/3261#discussion_r2114073255
##########
common/src/main/java/org/apache/celeborn/common/write/PushState.java:
##########
@@ -33,6 +34,8 @@ public class PushState {
private final int pushBufferMaxSize;
public AtomicReference<IOException> exception = new AtomicReference<>();
private final InFlightRequestTracker inFlightRequestTracker;
+ private final ConcurrentHashMap<Integer, CommitMetadata> commitMetadataMap =
Review Comment:
Added
##########
client/src/main/java/org/apache/celeborn/client/read/CelebornInputStream.java:
##########
@@ -201,8 +208,10 @@ private static final class CelebornInputStreamImpl extends
CelebornInputStream {
private final boolean rangeReadFilter;
private final boolean enabledReadLocalShuffle;
private final String localHostAddress;
+ private final Map<String, CommitMetadata> expectedCommitMetadataMap = new
HashMap<>();
Review Comment:
Removed
--
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]