My goal is to synchronize 2 separate Cassandra nodes weekly (based on planning). Question:
I will take a snapshot and transfer the snapshot files and copy them to another Cassandra node table.
I turned on incremental_backup = true, so the next time I want to synchronize only the updated values in another Cassandra node. So is there a way to do this? and What are the main points to consider when creating a backup?
what am I doing table-> snapshot-> snapshot_name-> scp all files -> another cassandra server table-> nodetool update -> giving me all the data
table-> backup-> scp all files-> another cassandra server table-> nodetool update → an error is missing me
ReadFailure: Error from server: code=1300 [Replica(s) failed to execute read] message="Operation failed - received 0 responses and 1 failures" info={'failures': 1, 'received_responses': 0, 'required_responses': 1, 'consistency': 'ONE'}
source
share