mirror of https://github.com/apache/cassandra
60 lines
2.1 KiB
Plaintext
60 lines
2.1 KiB
Plaintext
NAME
|
|
nodetool verify - Verify (check data checksum for) one or more tables
|
|
|
|
SYNOPSIS
|
|
nodetool [(-h <host> | --host <host>)] [(-p <port> | --port <port>)]
|
|
[(-pp | --print-port)] [(-pw <password> | --password <password>)]
|
|
[(-pwf <passwordFilePath> | --password-file <passwordFilePath>)]
|
|
[(-u <username> | --username <username>)] verify
|
|
[(-c | --check-version)] [(-d | --dfp)] [(-e | --extended-verify)]
|
|
[(-f | --force)] [(-q | --quick)] [(-r | --rsc)]
|
|
[(-t | --check-tokens)] [--] [<keyspace> <tables>...]
|
|
|
|
OPTIONS
|
|
-c, --check-version
|
|
Also check that all sstables are the latest version
|
|
|
|
-d, --dfp
|
|
Invoke the disk failure policy if a corrupt sstable is found
|
|
|
|
-e, --extended-verify
|
|
Verify each cell data, beyond simply checking sstable checksums
|
|
|
|
-f, --force
|
|
Override disabling of verify tool - see CASSANDRA-9947 for caveats
|
|
|
|
-h <host>, --host <host>
|
|
Node hostname or ip address
|
|
|
|
-p <port>, --port <port>
|
|
Remote jmx agent port number
|
|
|
|
-pp, --print-port
|
|
Operate in 4.0 mode with hosts disambiguated by port number
|
|
|
|
-pw <password>, --password <password>
|
|
Remote jmx agent password
|
|
|
|
-pwf <passwordFilePath>, --password-file <passwordFilePath>
|
|
Path to the JMX password file
|
|
|
|
-q, --quick
|
|
Do a quick check - avoid reading all data to verify checksums
|
|
|
|
-r, --rsc
|
|
Mutate the repair status on corrupt sstables
|
|
|
|
-t, --check-tokens
|
|
Verify that all tokens in sstables are owned by this node
|
|
|
|
-u <username>, --username <username>
|
|
Remote jmx agent username
|
|
|
|
--
|
|
This option can be used to separate command-line options from the
|
|
list of argument, (useful when arguments might be mistaken for
|
|
command-line options
|
|
|
|
[<keyspace> <tables>...]
|
|
The keyspace followed by one or many tables
|