Cassandra 快照和重启

发布于 2024-10-07 17:40:02 字数 214 浏览 7 评论 0原文

作为 Linux (Ubuntu 9)、shell 和 cron 的 1 级新手,我在弄清楚这一点上遇到了一些困难。每天晚上,我都想拍摄 Cassandra 节点的快照并重新启动该过程。

为什么?因为我们的团队正在寻找内存泄漏,需要每 3 周左右重新启动一次进程。根本原因很难追查。与此同时,我想将这些 cron 作业落实到位以减少服务中断。

预先感谢任何已经了解其中一些内容的人!

Being a level 1 novice in Linux (Ubuntu 9), shell and cron, I've had some difficulty figuring this out. Each night, I'd like to take a snapshot of our Cassandra nodes and restart the process.

Why? Because our team is hunting down a memory leak that requires a process restart every 3 weeks or so. The root cause has been difficult to track down. In the meantime, I'd like to put these cron jobs in place to reduce service interruption.

Thanks in advance for anyone who has some of these already figured out!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

萌吟 2024-10-14 17:40:02

一般过程是:

  1. 在节点上运行nodetool排出(http://www.riptano.com/docs/0.6/utilities/nodetool#nodetool-drain)
  2. 运行nodetool快照
  3. 杀死cassandra进程
  4. 启动cassandra进程

运行nodetool快照时, JNA 的建立和运行非常重要。这包括:

  1. 在 Cassandra 的 lib 目录中包含 jna.jar 以及:
  2. 以 root 身份运行 Cassandra,或
  3. 使用“ulimit -l”或类似 /etc/security/limits.conf 之类的内容增加内存锁定限制

如果这一切都是正确的,您应该启动时在日志中看到有关“mlockall”成功的消息。

另一件需要注意的事情是你的磁盘空间使用情况;随着压缩的发生和旧的 SSTable 被替换(但它们的快照仍然存在),这个数量将会增长。

The general procedure is:

  1. Run nodetool drain (http://www.riptano.com/docs/0.6/utilities/nodetool#nodetool-drain) on the node
  2. Run nodetool snapshot
  3. Kill the cassandra process
  4. Start the cassandra process

When running nodetool snapshot, it is very important that you have JNA set up and working. This includes:

  1. Having jna.jar in Cassandra's lib directory and either:
  2. Running Cassandra as root, or
  3. Increasing the memory locking limit using 'ulimit -l' or something like /etc/security/limits.conf

If this is all correct, you should see a message about "mlockall" succeeding in the logs on startup.

The other thing to keep an eye on is your disk space usage; this will grow as compactions occur and the old SSTables are replaced (but their snapshots remain).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文