我已經開始使用我正在使用的項目Cassandra database
。兩個集羣,每個集羣都有12個節點 - Cassandra數據庫
我們的生產DBA的設置two cluster
和每個羣集將有12 nodes
。
我將使用Pelops client
從Cassandra數據庫讀取數據。現在我正在考慮使用Pelops client
創建Cluster
類的最佳方法,比如在創建羣集時應該將多少個節點添加到Pelops
?
我的理解是使用pelops client
和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);
任何人都可以幫我解決這個問題嗎?
任何幫助將不勝感激。