AW: Survey about the parsing of the tooling's output

2023-07-12 Thread Rhys.Campbell
Hi all, I make extensive use of nodetool within https://github.com/ansible-collections/community.cassandra Most modules just run a command and check the return status but a few do parse the output. I certainly depend on the output format in some moduley, example

AW: Cassandra Management tools?

2022-03-08 Thread Rhys.Campbell
I use an Ansible Collection for Cassandra - https://galaxy.ansible.com/community/cassandra Full disclosure: I am the author and I eat my own dogfood. I've automated rolling restarts well using the cassandra_status module. Cheers, Rhys Von: Adam Scott Gesendet: Dienstag, 1. März 2022 00:32

RE: Problem with www.apache.org/dist/cassandra/KEYS?

2021-10-07 Thread Rhys.Campbell
Thanks for that. This command is actually spat out by the apt_key ansible module…. but I'm sure there's a way around it. Cheers, R From: Bowen Song Sent: 07 October 2021 14:05 To: user@cassandra.apache.org Subject: Re: Problem with www.apache.org/dist/cassandra/KEYS? Well... $ wget -qO -

Problem with www.apache.org/dist/cassandra/KEYS?

2021-10-06 Thread Rhys.Campbell
Anyone else having problems doing this? wget -qO - https://www.apache.org/dist/cassandra/KEYS | apt-key add - gpg: key AD055BC2: no valid user IDs This seems to refer to the following section... -END PGP PUBLIC KEY BLOCK- pub ed25519 2021-10-05 [SC]

Ansible Cassandra Collection

2021-03-19 Thread Rhys.Campbell
Hello All, I'm the developer of a collection of Ansible modules for Cassandra and I'm seeking collaborations and/or input from users. With Ansible 2.9+ you can install the collection with... ansible-galaxy collection install community.cassandra Ansible Galaxy -

RE: Cassandra and Docker

2020-06-03 Thread Rhys.Campbell
1. Use what works for you. People are starting to use C* in Docker though. Lots of info on google for this. 2. https://hub.docker.com/_/cassandra 3. You probably want to mount an external volume in the container - https://docs.docker.com/storage/volumes/ 4. Connect to C* with cql and

RE: Log output when Cassandra is "up"?

2020-01-09 Thread Rhys.Campbell
I've always used the wait_for task on port 9042 for Ansible https://docs.ansible.com/ansible/latest/modules/wait_for_module.html From: Voytek Jarnot Sent: 08 January 2020 21:37 To: user@cassandra.apache.org Subject: Log output when Cassandra is "up"? Needing to know when Cassandra is

RE: Backups in Cassandra

2019-08-08 Thread Rhys.Campbell
Just to add to this… We do snapshot, incremental and commitlog backups along with schema and config backups. All is copied to S3 although we do keep a small number of snapshots / inc / commitlog on the local node in the rare event they are needed. We have written some Ansible to restore the