dlmarion commented on code in PR #4453:
URL: https://github.com/apache/accumulo/pull/4453#discussion_r1562637889


##########
server/tserver/src/main/java/org/apache/accumulo/tserver/scan/LookupTask.java:
##########
@@ -76,6 +77,11 @@ public void run() {
       TableConfiguration acuTableConf = 
server.getTableConfiguration(session.threadPoolExtent);
       long maxResultsSize = 
acuTableConf.getAsBytes(Property.TABLE_SCAN_MAXMEM);
 
+      // Always return large root tablets
+      if 
(session.threadPoolExtent.tableId().equals(AccumuloTable.ROOT.tableId())) {
+        maxResultsSize = Long.MAX_VALUE;

Review Comment:
   The property default is 512K, so maybe Long.MAX_VALUE is not the right 
choice here



-- 
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]

Reply via email to