Cassandra集群名称问题

参考:
https://support.datastax.com/hc/en-us/articles/205289825-Change-Cluster-Name-

集群名称不匹配问题

添加一个新的节点到现有集群中会出现问题

org.apache.cassandra.exceptions.ConfigurationException: Saved cluster name Test Cluster != configured name 新名称 

原因是新节点的cassandra.yaml中的集群名称与系统中的名称不一致。
解决方法:

  1. 修改配置文件为系统中保存的名称
  2. 修改系统中的名称

修改集群名称步骤

  1. 更新集群名称字段

    cqlsh> UPDATE system.local SET cluster_name = '新集群名称' where key='local';
  2. 修改Cassandra.yaml中的cluster_name为新集群名称

  3. 将memtable刷为commitlog

    shell> nodetool flush system
  4. 验证集群名称

    cqlsh> select cluster_name from system.local;

大家有兴趣的可以关注我的公众号(分布式系统斗者),涉及分布式系统、大数据和个人成长分享,欢迎大家一起交流进步

这里写图片描述

你可能感兴趣的:(Cassandra)