添加数据中心现有群集

qltillow  于 2021-06-10  发布在  Cassandra
关注(0)|答案(0)|浏览(252)

我尝试将dc添加到现有群集。我用一个键空间改变了我的网络拓扑,但是新的dc就像一个完整的复制品。我只更改一个键空间拓扑,但其他键空间的行将转到新的dc。什么时候ı 添加一个插入我现有集群的东西,这些也会转到新的dc。
其他问题何时出现ı 将新dc添加到我的群集ı 失去了我的超级用户ı 用于连接Cassandra。
我的脚步声;
在现有节点上;1-将cassandra-rackdc.properties更改为:
2-dc=数据中心1
3-机架=机架1
4-更改cassandra.yaml snitch:gossipingpropertyfilesnitch
5-节点滚动重启:nodetool flush&&nodetool drain&&service cassandra stop
6-更新特定于应用程序的密钥空间以使用仅包含现有dc的网络拓扑
7-alter keyspace{keyspace},其中replication={class':'networktopologystrategy','datacenter1':'3'}和durable\u writes=true;
新建数据中心;
1-创建新示例并在所有节点上安装cassandra,不启动服务
2-选择单个节点作为dc的种子
3-更新cassandra.yaml到所有相同的设置,包括集群名称等。。。和优化设置,并在数据中心1(现有)的已选种子集cassandra.yaml seeds到1-2个IP上,将除on之外的所有种子设置为已选dc seed
4-将cassandra-rackdc.properties更改为:
5-dc=数据中心2
6-机架=机架1
7-在选定的dc种子节点上启动服务
8-检查新节点在cassandra中正确加入的nodetool状态
9-每次启动间隔2分钟,逐个启动其他节点
现有集群;
更改键空间拓扑
使用replication={class':'networktopologystrategy'、'datacenter1':'3'、'cassandra':'3'}和durable\u writes=true修改keyspace{keyspace};
键空间模式;

system_auth |           True | {'class': 'org.apache.cassandra.locator.NetworkTopologyStrategy', 'datacenter1': '1', 'datacenter2': '1'}
  system_schema |           True |                                                   {'class': 'org.apache.cassandra.locator.LocalStrategy'}
            msg |           True |                       {'class': 'org.apache.cassandra.locator.SimpleStrategy', 'replication_factor': '1'}
          event |           True |                     {'class': 'org.apache.cassandra.locator.NetworkTopologyStrategy', 'datacenter1': '1'}

system|u distributed | true |{class':'org.apache.cassandra.locator.networktopologystrategy','datacenter1':'1','datacenter2':'1'}system | true |{class':'org.apache.cassandra.locator.localstrategy'}system|u traces |{'class':'org.apache.cassandra.locator.networktopologystrategy','datacenter1':'1','datacenter2':'1'}
数据中心:数据中心1
=========================状态=向上/向下
|/状态=正常/离开/加入/移动
--地址加载令牌拥有主机id
支架
联合国 230.49基布256?6a31597c-a86f-4e01-8f59-425d4f96f5fd机架1
un yyyyyy 342.55千磅256?bdc1eb13-9707-4a5f-83f0-1cbfafbc520f机架1
数据中心:数据中心2
=========================状态=向上/向下
|/状态=正常/离开/加入/移动
--地址加载令牌拥有主机id机架
un ZZZZZZZZZZZZZ273.42基布256?cc56b7d5-15b7-4744-91f5-2ae2e6ac3a8e机架1
281.71基布256?4682ed50-7189-4903-8ed5-7c9bbdb09811机架1
注意:非系统密钥空间没有相同的复制设置,有效的所有权信息没有意义

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题