nodetool getconcurrency
Displays the concurrency settings.
Synopsis
Section titled “Synopsis”nodetool [connection_options] getconcurrency [stage_name ...]See connection options for connection options.
Arguments
Section titled “Arguments”| Argument | Description |
|---|---|
stage_name | Optional. One or more stage names to filter output (e.g., READ, MUTATION) |
Description
Section titled “Description”nodetool getconcurrency displays the core and maximum pool sizes for Cassandra’s thread stages. These stages handle various internal operations and can be filtered by name.
Output Format
Section titled “Output Format”| Field | Description |
|---|---|
Stage | Thread stage name |
CorePoolSize | Minimum number of threads maintained |
MaximumPoolSize | Maximum threads allowed under load |
Examples
Section titled “Examples”Basic Usage (All Stages)
Section titled “Basic Usage (All Stages)”nodetool getconcurrencySample output:
Stage CorePoolSize MaximumPoolSizeREAD 32 32MUTATION 32 32COUNTER_MUTATION 32 32...Filter by Stage Name
Section titled “Filter by Stage Name”nodetool getconcurrency READ MUTATIONRelated Commands
Section titled “Related Commands”| Command | Relationship |
|---|---|
| setconcurrency | Modify concurrency |
| tpstats | Thread pool statistics |