Question : . If you have a multi-data center cluster setup, than include at least one node from each datacenter (replication group) in the seed list. 1. True 2. False
Correct Answer : Get Lastest Questions and Answer : Explanation: : In multiple data-center clusters, include at least one node from each datacenter (replication group) in the seed list. Designating more than a single seed node per datacenter is recommended for fault tolerance. Otherwise, gossip has to communicate with another datacenter when bootstrapping a node. Making every node a seed node is not recommended because of increased maintenance and reduced gossip performance. Gossip optimization is not critical, but it is recommended to use a small seed list (approximately three nodes per datacenter).
Gossip information is also persisted locally by each node to use immediately when a node restarts.
Question : Please map the following
A. Dynamic snitching B. RackInferringSnitch C. GossipingPropertyFileSnitch
1. Monitors the performance of reads from the various replicas and chooses the best replica based on this history. 2. Determines the location of nodes by rack and datacenter corresponding to the IP addresses. 3. Automatically updates all nodes using gossip when adding new nodes and is recommended for production.
Correct Answer : Get Lastest Questions and Answer : Explanation: Dynamic snitching: Monitors the performance of reads from the various replicas and chooses the best replica based on this history. SimpleSnitch : The SimpleSnitch is used only for single-datacenter deployments. RackInferringSnitch : Determines the location of nodes by rack and datacenter corresponding to the IP addresses. PropertyFileSnitch : Determines the location of nodes by rack and datacenter. GossipingPropertyFileSnitch : Automatically updates all nodes using gossip when adding new nodes and is recommended for production. Ec2Snitch : Use the Ec2Snitch with Amazon EC2 in a single region. Ec2MultiRegionSnitch : Use the Ec2MultiRegionSnitch for deployments on Amazon EC2 where the cluster spans multiple regions. GoogleCloudSnitch : Use the GoogleCloudSnitch for Cassandra deployments on Google Cloud Platform across one or more regions. CloudstackSnitch : Use the CloudstackSnitch for Apache Cloudstack environments.
Question : When you set replication factor as , it means total copy of same data will be created 1. True 2. False