DomGarguilo commented on code in PR #5312:
URL: https://github.com/apache/accumulo/pull/5312#discussion_r1949875325
##########
core/src/main/java/org/apache/accumulo/core/clientImpl/bulk/BulkImport.java:
##########
@@ -338,7 +338,10 @@ public static List<KeyExtent>
findOverlappingTablets(Function<Text,KeyExtent> ro
List<KeyExtent> result = new ArrayList<>();
Text row = new Text();
+ long iterationCount = 0;
while (true) {
+ iterationCount++;
+
Review Comment:
Good catch. I moved the log message to the spot you mentioned.
I added a check so things are only logged if there are "wasted iterations".
With that check in place I can't get the message to be logged.
--
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]