Cassandra cleanup on several servers at once

倖福魔咒の 提交于 2020-01-13 10:37:08

问题


We have a big Cassandra cluster 18 Servers (on one server near 5T data )

http://docs.datastax.com/en/cassandra/2.0/cassandra/operations/ops_add_node_to_cluster_t.html - We have added a new nodes following this documentation .

After we have added new servers, we began the process of cleaning data (nodetool cleanup)

In the documentation advise: After all new nodes are running, run nodetool cleanup on each of the previously existing nodes to remove the keys no longer belonging to those nodes. Wait for cleanup to complete on one node before doing the next)

But cleanup for one server takes near 2 - 3 days in our case. My question is can I start cleaning at once on multiple servers, 2 or 3 ...

Or it may lead to data loss ?

Some more info .

We use cassandra 2.0.13 with vnodes . Also We keep files in blons in cassandra .

Replication factor = 3


回答1:


Cleanup doesn't involve any other nodes so it is safe to run in parallel. However, you may want to run on one at once to reduce the performance impact since cleanup may use lots of disk I/O.



来源:https://stackoverflow.com/questions/30544834/cassandra-cleanup-on-several-servers-at-once

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!