GitHub user cormoran opened a pull request:

    https://github.com/apache/cassandra/pull/142

    CASSANDRA-8727 add command 'statusautocompaction'

    Added nodetool command 'statusautocompaction'
    By default, the status is summarized: running, not running or partially 
running (some of the specified tables have it enabled, some don't).
    ```
    $ nodetool statusautocompaction
    partially running
    ```
    The `--all` option can be used to see a detailed status output.
    ```
    $ nodetool statusautocompaction -a
    Keyspace           Table                          Status
    system_schema      dropped_columns                not running
    system_schema      tables                         not running
    ...
    system             built_views                    running
    system             sstable_activity               running
    ...
    test               test2                          not running
    test               test_cf                        not running
    system_auth        role_permissions               not running
    system_auth        resource_role_permissons_index not running
    ```
    
    You can specify keyspace (and table).
    ```
    $ nodetool statusautocompaction test test2 -a
    Keyspace Table Status
    test     test2 not running
    ```


You can merge this pull request into a Git repository by running:

    $ git pull https://github.com/cormoran/cassandra CASSANDRA-8727

Alternatively you can review and apply these changes as the patch at:

    https://github.com/apache/cassandra/pull/142.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

    This closes #142
    
----
commit 9bd85f7402f566fb7bd6bcbd969486446f08a21b
Author: cormoran <[email protected]>
Date:   2017-08-28T04:18:57Z

    CASSANDRA-8727 add command 'statusautocompaction'

----


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to