DomGarguilo commented on code in PR #6027:
URL: https://github.com/apache/accumulo/pull/6027#discussion_r2633405915
##########
core/src/main/java/org/apache/accumulo/core/client/admin/TableOperations.java:
##########
@@ -1090,6 +1090,20 @@ default Stream<TabletInformation>
getTabletInformation(final String tableName, f
throw new UnsupportedOperationException();
}
+ /**
+ * @param ranges the ranges of tablets to scan. Ranges can overlap and an
attempt will be made to
+ * merge this list
+ * @param fields can optionally narrow the data retrieved per tablet, which
can speed up streaming
+ * over tablets. If this list is empty then all fields are fetched.
+ * @return a stream of tablet information for tablets that fall in the
specified ranges. The
+ * stream may be backed by a scanner, so it's best to close the
stream.
+ * @since 4.0.0
+ */
+ default Stream<TabletInformation> getTabletInformation(final String
tableName,
Review Comment:
Updated to use RowRange in 92ca459
--
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]