dlmarion commented on code in PR #6010:
URL: https://github.com/apache/accumulo/pull/6010#discussion_r2621056514
##########
server/tserver/src/main/java/org/apache/accumulo/tserver/tablet/ScanDataSource.java:
##########
@@ -288,12 +312,24 @@ public void close(boolean sawErrors) {
} finally {
fileManager = null;
if (statsIterator != null) {
- statsIterator.report();
+ statsIterator.report(true);
}
}
}
}
+ private static final AttributeKey<Long> ENTRIES_READ_KEY =
+ AttributeKey.longKey("accumulo.scan.entries.read");
+ private static final AttributeKey<Long> SEEKS_KEY =
AttributeKey.longKey("accumulo.scan.seeks");
Review Comment:
It might be good to make them public too, I saw that the same strings are
used in an IT, where it could reference the variable.
--
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]