Ztyx
Ztyx

Reputation: 14908

How can I check if I need to execute `nodetool upgradesstables` on a node?

How can I check if I need to execute nodetool upgradesstables on a node? Or will it only do anything if necessary (and simply ignore the command)?

Upvotes: 1

Views: 499

Answers (1)

Stefan Podkowinski
Stefan Podkowinski

Reputation: 5249

You need to run nodetool upgradesstables after updating Cassandra to a version that needs have your sstables converted to the latest format. Usually this only happens on new major releases. But you should make sure to read the upgrade instructions from the NEXT.txt (e.g. 2.1.8) to find out exactly if this step is required.

Upvotes: 3

Related Questions