I have a cluster with 3 nodes and RF=2 . I have inserted one record and when i am executing
nodetool getendpoints keyspacename tablename parttitonkey/tokenvalue of the specific parition;
it gives me 2 IP address which is because RF=2. does that mean this token also belongs to 2 different nodes ?
cqlsh:killrvideo> select token(tag),tag from videos_by_tag; system.token(tag) | tag ----------------------+----------- -1651127669401031945 | datastax -1651127669401031945 | datastax 356242581507269238 | cassandra 356242581507269238 | cassandra 356242581507269238 | cassandra
$ nodetool getendpoints killrvideo videos_by_tag -1651127669401031945 10.61.27.142 10.61.27.226
which means token -1651127669401031945 (partitonkey token) also gets replicated along with the Data?
I am not able to understand that this token is on both nodes then ?