7

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?

LetsNoSQL
  • 1,478
  • 1
  • 11
  • 23

2 Answers2

11

nodetool reports its own version (related to the Cassandra version it was derived from). The correct version number is from scylla --version.

Avi Kivity
  • 1,362
  • 9
  • 17
  • It means Scylla 2.1.1-0.20180325.cce455b referred cassandra 3.0.8 so my correct scylla version is 2.1.1 right and we can upgrade to scylla 2.x.y or latest? – LetsNoSQL Feb 05 '19 at 05:15
  • 1
    Indeed, you have Scylla 2.1.1. The latest Scylla open-source version is already 3.0.*. – Nadav Har'El Feb 05 '19 at 12:01
1

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"

TomerSan
  • 1,576
  • 6
  • 12