Skip to content

AxonOps — AI-Native Control Plane for Open Source Data Platforms

nodetool setsnapshotthrottle

Sets the snapshot link creation throttle.


Terminal window
nodetool [connection_options] setsnapshotthrottle <links_per_second>

See connection options for connection options.

nodetool setsnapshotthrottle sets the rate limit for snapshot hard link creation. The value specifies the maximum number of hard links that can be created per second during snapshot operations.

Unit Clarification

The throttle is measured in hard links per second, not MB/s. Each SSTable component file requires a hard link, so the effective speed depends on file count rather than data size.


ArgumentDescription
links_per_secondMaximum hard links per second. Set to 0 to disable throttling (unlimited).

Terminal window
# Allow 100 hard links per second
nodetool setsnapshotthrottle 100
Terminal window
# Set to 0 for unlimited (no throttle)
nodetool setsnapshotthrottle 0
Terminal window
# Slower snapshot creation with less I/O impact
nodetool setsnapshotthrottle 50

CommandRelationship
getsnapshotthrottleView current throttle
snapshotCreate snapshots