DomGarguilo opened a new pull request, #6069:
URL: https://github.com/apache/accumulo/pull/6069
Fixes #6035
This PR adds new options to the `listtablets` command and also removed one
from the `getavailability` command.
Added row range filtering to `listtablets` matching what `getavailability`
already supports:
```
-b,--begin-row <arg> begin row (inclusive)
-be,--begin-exclusive make start row exclusive (by default it's
inclusive)
-e,--end-row <end-row> end row (inclusive)
```
The `-ee`/`--end-exclusive` option was removed from `getavailability` since
it was not being used anyways. Ultimately both `listtablets` and
`getavailability` call this portion of the code which just sets end exclusive
to true:
https://github.com/apache/accumulo/blob/3dfe28e8e1774a143c86edbeb645ea3ac301cdd5/core/src/main/java/org/apache/accumulo/core/metadata/schema/TabletsMetadata.java#L415-L425
--
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]