You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@accumulo.apache.org by "dlmarion (via GitHub)" <gi...@apache.org> on 2023/05/01 16:03:44 UTC

[GitHub] [accumulo] dlmarion commented on a diff in pull request #3349: improves fetching mulitple extents in ample

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


##########
server/tserver/src/main/java/org/apache/accumulo/tserver/TabletServer.java:
##########
@@ -792,6 +793,13 @@ public void run() {
             MetadataUpdateCount counter = updateCounts.get(extent);
             tablet.compareTabletInfo(counter, tabletMetadata);
           }
+
+          for (var extent : missingTablets) {
+            Tablet tablet = onlineTabletsSnapshot.get(extent);
+            if (!tablet.isClosed()) {
+              log.error("Tablet {} is open but does not exists in metadata table.", extent);

Review Comment:
   ```suggestion
                 log.error("Tablet {} is open but does not exist in metadata table.", extent);
   ```



-- 
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: notifications-unsubscribe@accumulo.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org