In last 2 posts of this series we learnt about Cassandra architecture and understood the cassandra Read/Write process.
If you have missed earlier posts of this series then you can read them from below links:
2: Understanding Cassandra Read/Write Mechanism
In this post we will learn about installing cassandra on Redhat Linux.
Before jumping into lab and start with installation, I want to touch down on few concepts first which will help in understanding installation process.
Bootstrapping
Bootstrapping is the process in which a newly-joining node gets the required data from the neighbors in the ring, so it can join the ring with the required data. Typically, a bootstrapping node joins the ring without any state or token and understands the ring structure after starting the gossip with the seed nodes; the second step is to choose a token to bootstrap.
During the bootstrap, the bootstrapping node will receive writes for the range that it will be responsible for after the bootstrap is completed.… Read More