我已经开始研究我正在使用的项目Cassandra database
。
我们的生产 DBA 已经设置好two cluster
,每个集群都有12 nodes
.
我将使用Pelops client
从 Cassandra 数据库中读取数据。现在我正在考虑使用创建集群时应该添加多少个节点来创建Cluster
类的最佳方法是什么?Pelops client
Pelops
pelops client
我的理解是使用all创建集群,24 nodes
因为我将有两个集群,每个集群有 12 个节点?这是正确的做法吗?
如果不是,那么我们如何决定在使用 Pelops 客户端创建集群时应该添加哪些节点(来自每个集群)?
String[] nodes = what nodes I should use from two clusters? And how many nodes I should add?;
int port = cfg.getInt("cassandra.port");
boolean dynamicND = true; // dynamic node discovery
Config casconf = new Config(port, true, 0);
Cluster cluster = new Cluster(nodes, casconf, dynamicND);
Pelops.addPool(Const.CASSANDRA_POOL, cluster, Const.CASSANDRA_KS);
谁能帮我解决这个问题?
任何帮助将不胜感激。