문제

The default Cassandra systems keyspace system is present in all Cassandra installations.

Judging from the output of the describe keyspace command the keyspace is used partly for "persistent metadata for the local node" (LocationInfo) and partly for "hinted handoff data".

  • What persistent metadata for the local node is stored in system/LocationInfo?
  • What is the definition of hinted handoff in Cassandra terminology?
  • What hinted handoff data is stored in the system keyspace?
도움이 되었습니까?

해결책

"Hinted handoff means that if a node that should receive a write is down, Cassandra will send that write to another node with a "hint" saying that when the destination node becomes available again, the write should be forwarded there."

After the answer on question two I believe the third question becomes obsolete (?)

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

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top