smallzhongfeng commented on code in PR #158:
URL: https://github.com/apache/incubator-uniffle/pull/158#discussion_r946690335
##########
server/src/main/java/org/apache/uniffle/server/ShuffleTaskManager.java:
##########
@@ -74,12 +74,7 @@ public class ShuffleTaskManager {
// but when get blockId, performance will degrade a little which can be
optimized by client configuration
private Map<String, Map<Integer, Roaring64NavigableMap[]>>
partitionsToBlockIds;
private ShuffleBufferManager shuffleBufferManager;
- private Map<String, Long> appIds = Maps.newConcurrentMap();
- // appId -> shuffleId -> commit count
- private Map<String, Map<Integer, AtomicInteger>> commitCounts =
Maps.newConcurrentMap();
- private Map<String, Map<Integer, Object>> commitLocks =
Maps.newConcurrentMap();
- // appId -> shuffleId -> blockIds
- private Map<String, Map<Integer, Roaring64NavigableMap>> cachedBlockIds =
Maps.newConcurrentMap();
+ private Map<String, ShuffleTaskInfo> shuffleTaskInfo =
Maps.newConcurrentMap();
Review Comment:
My fault. Changed it.
--
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]