nodetool statusautocompaction
Returns status information about the automatic compaction process at a cluster, keyspace, or SSTable level.
Synopsis
nodetool [<connection_options>] statusautocompaction
[(-a | --all)] [--] [<keyspace_name> <table_name>...]
Definition
The short- and long-form options are comma-separated.
Connection options
- -h, --host hostname
-
The hostname or IP address of a remote node or nodes. When omitted, the default is the local machine.
- -p, --port jmx_port
-
The JMX port number.
- -pp, --print-port
-
Operate in Apache Cassandra v4.0 mode with hosts differentiated by port number.
- -pw, --password jmxpassword
-
The JMX password for authenticating with secure JMX. If a password is not provided, you are prompted to enter one.
- -pwf, --password-file jmx_password_filepath
-
The filepath to the file that stores JMX authentication credentials.
- -u, --username jmx_username
-
The username for authenticating with secure JMX.
Command arguments
--
-
Separates an option from an argument that could be mistaken for an option.
- -a, --all
-
Show auto compaction status for each keyspace, table, or combination.
- keyspace_name
-
The keyspace name.
- table_name
-
The table name.
Examples
Run the code examples below to check the status of an automatic compaction process running on a cluster, a keyspace, an SSTable, or all SSTables in a keyspace.
Check the compaction of an SSTable
nodetool statusautocompaction <keyspace> test1
Sample result
running
Check the compaction of all SSTables in a keyspace
nodetool statusautocompaction -a <keyspace>
Sample result
Keyspace Table Status
mykeyspace test5 running
mykeyspace test2 running
mykeyspace test3 running
mykeyspace test6 running
mykeyspace test1 not running