As already explained in other post, https://community.datastax.com/answers/4765/view.html I have followed the same procedure as listed there.
Note: I have used docker-compose.yaml included as a material from week 3 of Cloud Native Workshop series that runs on 3 node cluster.
I created a keyspace killrvideo with class simplestrategy and RF =1. I have a table named videosbytag where I have a column tag with 3 partitions named
- 'Cassandra'
- 'datastax'
- 'Cloud Native'
I executed nodetool getendpoints command for knowing where in the node my data resides...
$ nodetool getendpoints killrvideo videosbytag 'Cassandra' 174.18.0.3
$ nodetool getendpoints killrvideo videosbytag 'datastax' 174.18.0.4
Seems like I understood the process unless when i see this...
$ nodetool getendpoints killrvideo videosbytag 'Community.Datastax' 174.18.0.4
Where Community.Datastax is not a partition or any kind of data in my keyspace.
Why does it print like this for this unknown data?