Re: Cassandra Management tools?

2022-03-08 Thread Yakir Gibraltar
Install cluster and manage all files: Puppet Alerts: Sensu-Go Metrics: Prometheus + Grafana Scheduled jobs or manually tasks like rolling upgrade/restart/cleanup: Jenkins + Cstar Best, Yakir Gibraltar

Re: Cassandra Management tools?

2022-03-08 Thread Patrick McFadin
Scott > *Gesendet:* Dienstag, 1. März 2022 00:32 > *An:* user@cassandra.apache.org > *Betreff:* Re: Cassandra Management tools? > > > > I use pssh -i -h hosts nodetool for one-offs. > > > > Rolling restart is tricky to automate, but haven't had to yet. If I were > to,

Re: Cassandra Management tools?

2022-03-01 Thread Miles Garnsey
A cheeky plug for the project I’m currently working on: k8ssandra-operator aims to automate a lot of everyday Cassandra maintenance tasks by orchestrating Cassandra on Kubernetes. We offer integration with the TLP projects Reaper (repair),

Re: Cassandra Management tools?

2022-03-01 Thread Jeff Jirsa
Most teams are either using things like ansible/python scripts, or have bespoke infrastructure. Some of what you're describing is included in the intent of the `cassandra-sidecar` project: https://cwiki.apache.org/confluence/pages/viewpage.action?pageId=95652224 Goals We target two main

Re: Cassandra Management tools?

2022-03-01 Thread Joe Obernberger
Thanks all - I'll take a look at Ansible.  Back in my Hadoop days, we would use Cloudera manager (course that now costs $). Sounds like we need a new open source project!  :) -Joe On 3/1/2022 7:46 AM, Bowen Song wrote: We use Ansible to manage a fairly large (200+ nodes) cluster. We created

Re: Cassandra Management tools?

2022-03-01 Thread Bowen Song
We use Ansible to manage a fairly large (200+ nodes) cluster. We created our own Ansible playbooks for common tasks, such as rolling restart. We also use Cassandra Reaper for scheduling and running repairs on the same cluster. We occasionally also use pssh (parallel SSH) for inspecting the

RE: Cassandra Management tools?

2022-02-28 Thread Durity, Sean R
in ansible. I haven’t done the automated upgrade, yet. Ansible is much more verbose in output and not as clean for understanding what was done – at least so far. Sean R. Durity From: Adam Scott Sent: Monday, February 28, 2022 6:32 PM To: user@cassandra.apache.org Subject: [EXTERNAL] Re: Cassandra

Re: Cassandra Management tools?

2022-02-28 Thread Adam Scott
I use pssh -i -h hosts nodetool for one-offs. Rolling restart is tricky to automate, but haven't had to yet. If I were to, I would be sure to do a test connect and query to confirm the node is up before going to the next one. For automation I use python fabric. I too, would be curious what