nodetool disablethrift
Where is the cassandra-env.sh file?
The location of the cassandra-env.sh file depends on the type of installation:
| Installation Type | Location |
|---|---|
Package installations + Installer-Services installations |
|
Tarball installations + Installer-No Services installations |
|
Disables the Thrift server.
Synopsis
nodetool [options] disablethrift
Tarball and Installer No-Services path:
<installation_location>/resources/cassandra/bin
| Short | Long | Description |
|---|---|---|
|
|
Hostname or IP address. |
|
|
Port number. |
|
|
Password file path. |
|
|
Password. |
|
|
Remote JMX agent username. |
|
Separates an option from an argument that could be mistaken for an option. |
|
|
Description
nodetool disablethrift will disable thrift on a node preventing the node from acting as a coordinator.
The node can still be a replica for a different coordinator and data read at consistency level ONE could be stale.
To cause a node to ignore read requests from other coordinators, nodetool disablegossip would also need to be run.
However, if both commands are run, the node does not perform repairs and continues to store stale data.
If the goal is to repair the node, set the read operations to a consistency level of QUORUM or higher while you run repair.
An alternative approach is to delete the node’s data and restart the DataStax Enterprise process.
Note that the nodetool commands using the -h option will not work remotely on a disabled node until nodetool enablethrift and nodetool enablegossip are run locally on the disabled node.
Examples
$ nodetool -u username -pw password disablethrift 192.168.100.1