I have created a GKE
cluster of Cassandra
and I want to run nodetool
on each node to back up the data. I am unable to figure out how to do it.
So far, I have SSH
ed to the node on the kubernetes
cluster and I lost from that point onwards. I did docker ps -a
and can see the containers. How do I get to each container/pod
and take back up?
@Manu Chadha
I am not sure which method you used to install Cass on GKE, but with the cass-operator tag I am going to assume you used the Cass Operator.
This is how i get to pods (NEED POD NAME):
Next I can get to bash with pod name:
From bash I can use nodetool or dsetool
You can also execute these directly like this:
I am updating to answer the last question about backups. Backups are done a bit different with cass-operator. Be sure to include backup enabled in your yaml:
Follow the documented steps for GKE and Google Blog Storage:
https://docs.datastax.com/en/dse/6.8/dse-admin/datastax_enterprise/operations/opsBackupRestoreCreateBackupStore.html
https://docs.datastax.com/en/dse/6.8/dse-admin/datastax_enterprise/operations/opsCqlCreateBackupStore.html