Skip to content

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

nodetool getmaxhintwindow

Displays the maximum hint window in milliseconds.


Terminal window
nodetool [connection_options] getmaxhintwindow

See connection options for connection options.

nodetool getmaxhintwindow displays the current maximum hint window configuration. The hint window defines how long Cassandra will store hints for an unavailable node. If a node is down longer than this window, hints are not stored and repair is needed to restore consistency.


Terminal window
nodetool getmaxhintwindow
Current max hint window: 10800000 ms

The default is 3 hours.

The cassandra.yaml parameter name varies by version:

Cassandra VersionParameter NameExample
Pre-4.1max_hint_window_in_ms10800000 (3 hours)
4.1+max_hint_window3h
# cassandra.yaml (4.1+)
max_hint_window: 3h
# cassandra.yaml (Pre-4.1)
# max_hint_window_in_ms: 10800000
Node Down DurationHint Behavior
< hint windowHints stored and delivered
> hint windowNo hints stored, needs repair

Terminal window
# Check current hint window
nodetool getmaxhintwindow
# Convert to hours: 10800000ms = 3 hours

Understanding hint window helps plan for:

  • Maximum outage duration covered by hints
  • When repair becomes necessary
  • Hint storage disk requirements

CommandRelationship
setmaxhintwindowSet hint window
listpendinghintsView pending hints
statushandoffCheck handoff status