In an Indexer Cluster, you want to perform a rolling restart to update the configuration. Which CLI command ensures that the rolling restart happens only after the indexer cluster has reached a state of 'Complete' synchronization?
Trap 1: splunk apply cluster-bundle --force
This forces an update but does not manage the rolling restart process.
Trap 2: splunk rolling-restart cluster-peers --check-status
This is not a valid flag for the rolling-restart command.
Trap 3: splunk restart indexer
This restarts a single node, not the cluster.
- A
splunk apply cluster-bundle --force
Why wrong: This forces an update but does not manage the rolling restart process.
- B
splunk rolling-restart cluster-peers
This is the correct command; the CM orchestrates the restart once peers are ready.
- C
splunk rolling-restart cluster-peers --check-status
Why wrong: This is not a valid flag for the rolling-restart command.
- D
splunk restart indexer
Why wrong: This restarts a single node, not the cluster.