Reputation:
Using Gossip snitch in Cassandra works well in aws single region and multi region Cassandra deployment .What is the real cause for using ec2 snitch or ec2 multi region snitch in Cassandra cluster deployment in aws other than (they use aws API to get details of the instance).What are the pro's and con's of using gossip property snitch in AWS production?
Upvotes: 0
Views: 697
Reputation: 87174
EC2 snitches should be used only if you're 100% sure that you never will add another DC outside of AWS (but can you be sure in that?). These snitches just slightly simplify your life by inferring the DC & rack information, instead of specifying it manually as in case of GossingPropertyFileSnitch
(GPFS).
Pros of using GPFS:
Cons of using GPFS:
Upvotes: 1