Reputation: 1538
I have run nodetool version and showing db version is 3.0.8 but if I am running scylla --version then it showing 2.1.1-0.20180325.cce455b1f. please help me which one is correct?
Upvotes: 7
Views: 4019
Reputation: 1578
scylla --version
is one option. If you want to be sure what version Scylla started with (for example to be sure upgrade was successful), you can also run the following:
curl -X GET "http://localhost:10000/storage_service/scylla_release_version"
Upvotes: 2
Reputation: 1410
nodetool
reports its own version (related to the Cassandra version it was derived from). The correct version number is from scylla --version
.
Upvotes: 11