The use of the internal system "Kassandra" "system"

By default, Capsandra systems keyspace system present in all Cassandra installations.

Judging by the output of the describe keyspace , the describe keyspace used in part for "persistent metadata for a local node" ( LocationInfo ) and in part for "intended handover data."

  • What persistent metadata for a local node is stored in system/LocationInfo ?
  • What is the definition of an intended handover in Kassandra's terminology?
  • What is the intended handover data stored in the system key space?
+6
cassandra nosql
source share
1 answer

" The specified handover means that if the node that is supposed to receive the record is not working, Cassandra will send this record to another node with a" hint "saying that when the destination node becomes available again, the record must be sent there."

After answering the second question, I believe that the third question is becoming obsolete (?)

And finally, the first question: the token, the name of the cluster and whether the node is loading or not, will be saved in the system. (thanks driftx)

+4
source share

All Articles