Question : You can use network attached storage and needs to be avoided for Cassandra node ? 1. True 2. False
Correct Answer : 1 Explanation: It is not a good idea to use network attached storage for Cassandra.
Question : Which of the following statements are correct?
A. You can write data on any node in Cassandra cluster B. Any node in the cluster can work as Coordinator C. You have to define 1/4 th of total node as Cassandra Cluster D. Coordinator is optional in Cassandra
1. A,B 2. B,C 3. C,D 4. A,D 5. B,D
Correct Answer : 1 Explanation: you can write data to any node in the cluster. Because every node can act as a coordinator. And a coordinator's a very important role for each node and its not optional.
Question : Using driver you can connect to specific node, for which your data belongs to and you can do read and write only on that node in Cassandra ring 1. True 2. False
Correct Answer : 2 Explanation: Each node is going to be assigned a different range of data which are called token ranges. And that range of data says, this data belongs to particular node. Now that coordinator can then take that data and hold that, and send this to the proper node. Now that node gets the data, the acknowledgement gets sent back to the client.