卡桑德拉状态设置在库伯内特



我一直在尝试用谷歌cassandra镜像在kubernetes中设置一个冗余的有状态集,如kubernetes1.7文档中所述。

根据使用的图像,这是一个一致性级别为1的有状态集。在我的测试示例中,我使用的是复制因子为3的SimpleStrategy复制,因为我只在一个数据中心的有状态集中设置了3个副本。我已经定义了cassandra-0,cassandra-1,cassandra-2为种子,所以所有的都是种子。

我创建了一个密钥空间和一个表:

"create keyspace if not exists testing with replication = { 'class' : 'SimpleStrategy', 'replication_factor' : 3 }"
"create table testing.test (id uuid primary key, name text, age int, properties map<text,text>, nickames set<text>, goals_year map<int,int>, current_wages float, clubs_season tuple<text,int>);"

我正在使用cqlsh二进制文件从另一个不相关的pod插入数据进行测试,我可以看到数据最终会出现在每个容器中,因此复制是成功的。所有pod上的nodetool状态显示为:

Datacenter: DC1-K8Demo
======================
Status=Up/Down
|/ State=Normal/Leaving/Joining/Moving
--  Address      Load       Tokens       Owns (effective)  Host ID                               Rack
UN  10.16.0.161  71.04 KiB  32           100.0%            4ad4e1d3-f984-4f0c-a349-2008a40b7f0a  Rack1-K8Demo
UN  10.16.0.162  71.05 KiB  32           100.0%            fffca143-7ee8-4749-925d-7619f5ca0e79  Rack1-K8Demo
UN  10.16.2.24   71.03 KiB  32           100.0%            975a5394-45e4-4234-9a97-89c3b39baf3d  Rack1-K8Demo

所有cassandra pod在之前创建的表中都有相同的数据:

id                                   | age | clubs_season | current_wages | goals_year | name     | nickames | properties
--------------------------------------+-----+--------------+---------------+------------+----------+----------+--------------------------------------------------
b6d6f230-c0f5-11e7-98e0-e9450c2870ca |  26 |         null |          null |       null | jonathan |     null | {'goodlooking': 'yes', 'thinkshesthebest': 'no'}
5fd02b70-c0f8-11e7-8e29-3f611e0d5e94 |  26 |         null |          null |       null | jonathan |     null | {'goodlooking': 'yes', 'thinkshesthebest': 'no'}
5da86970-c0f8-11e7-8e29-3f611e0d5e94 |  26 |         null |          null |       null | jonathan |     null | {'goodlooking': 'yes', 'thinkshesthebest': 'no'}

但后来我删除了其中一个db副本pod(cassandra-0),一个新的pod如预期的那样再次出现,一个全新的cassandra%0(谢谢kubernetes!),我现在看到所有的pod都丢失了一行3:

id                                   | age | clubs_season | current_wages | goals_year | name     | nickames | properties
--------------------------------------+-----+--------------+---------------+------------+----------+----------+--------------------------------------------------
5fd02b70-c0f8-11e7-8e29-3f611e0d5e94 |  26 |         null |          null |       null | jonathan |     null | {'goodlooking': 'yes', 'thinkshesthebest': 'no'}
5da86970-c0f8-11e7-8e29-3f611e0d5e94 |  26 |         null |          null |       null | jonathan |     null | {'goodlooking': 'yes', 'thinkshesthebest': 'no'}

节点工具状态现在显示为:

Datacenter: DC1-K8Demo
======================
Status=Up/Down
|/ State=Normal/Leaving/Joining/Moving
--  Address      Load       Tokens       Owns (effective)  Host ID                               Rack
UN  10.16.0.161  71.04 KiB  32           81.7%             4ad4e1d3-f984-4f0c-a349-2008a40b7f0a  Rack1-K8Demo
UN  10.16.0.162  71.05 KiB  32           78.4%             fffca143-7ee8-4749-925d-7619f5ca0e79  Rack1-K8Demo
DN  10.16.2.24   71.03 KiB  32           70.0%             975a5394-45e4-4234-9a97-89c3b39baf3d  Rack1-K8Demo
UN  10.16.2.28   85.49 KiB  32           69.9%             3fbed771-b539-4a44-99ec-d27c3d590f18  Rack1-K8Demo

cassandra环不应该将所有数据复制到新创建的pod中,并且在所有cassandra pod中仍然有3行吗?

github中记录了这种体验。

有人尝试过这种体验吗?在这种测试环境中可能会出现什么问题?

非常感谢提前

我认为在关闭节点后,您需要通知集群中的其他对等节点该节点已失效,需要更换。

为了有一个正确的测试用例,我建议阅读一些内容。

相关内容

  • 没有找到相关文章

最新更新