Cassandra Node details

Viewed 42

I am new to Cassandra. I install Apache Cassandra on ubuntu 16.04. What I do to know how many nodes my cluster have. if only one node by default?. what happens during the replication process? please help, Thank you.

1 Answers

Your new installation gives you one node of Cassandra, so at present you would have a single-node cluster.

Once Cassandra is started and up and running, you can display your cluster topology with the nodetool status command, it prints the cluster information.

http://cassandra.apache.org/doc/latest/tools/nodetool/status.html

With Cassandra, the data is replicated between nodes according to the replication strategies that you define; in the case of a single-node cluster, replication is not really applicable.

Related