apmoriarty opened a new issue, #4782:
URL: https://github.com/apache/accumulo/issues/4782

   **Is your feature request related to a problem? Please describe.**
   In a situation where a backlog of compactions exists and multiple compaction 
groups are configured, it is difficult to determine which queue is saturated. 
This prohibits stealing resources from one compaction group to give to another
   
   **Describe the solution you'd like**
   I would like to see something like this, given compactions groups small, 
large
   ```
   # just the summary command
   listcompactions --summary
   
   group   current    queue
   small        23       98
   large        45       67
   ```
   ```
   # an equivalent summary command with groups specified
   listcompactions --summary --groups=small,large
   
   group   current    queue
   small        23       98
   large        45       67
   ```
   ```
   # a case with a smaller filter
   listcompactions --summary --groups=small
   
   group   current    queue
   small        23       98
   ```
   ```
   # and of course a negative case
   listcompactions --summary --groups=medium
   
   no compaction group "medium" exists
   ```
   
   **Describe alternatives you've considered**
   N/A. Basic metadata about compactions should be available via the shell. 
   
   **Additional context**
   Add any other context or screenshots about the feature request 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