keith-turner commented on code in PR #5423:
URL: https://github.com/apache/accumulo/pull/5423#discussion_r2017632032
##########
core/src/main/java/org/apache/accumulo/core/clientImpl/ClientTabletCacheImpl.java:
##########
@@ -95,27 +96,20 @@ public class ClientTabletCacheImpl extends
ClientTabletCache {
protected final TableId tableId;
protected final ClientTabletCache parent;
- protected final TreeMap<Text,CachedTablet> metaCache = new
TreeMap<>(END_ROW_COMPARATOR);
+ protected final ConcurrentSkipListMap<Text,CachedTablet> metaCache =
+ new ConcurrentSkipListMap<>(END_ROW_COMPARATOR);
protected final CachedTabletObtainer tabletObtainer;
private final TabletServerLockChecker lockChecker;
protected final Text lastTabletRow;
- private final TreeSet<KeyExtent> badExtents = new TreeSet<>();
- private final HashSet<String> badServers = new HashSet<>();
private final ReentrantReadWriteLock rwLock = new ReentrantReadWriteLock();
Review Comment:
Removed 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]