blob: e5eb1ab7a9d11820feea77cacacc38c0d1a30e09 [file] [log] [blame]
---
- name: Keyspace before modification
shell: "{{ apigee_installation_home }}/apigee-cassandra/bin/cqlsh -e 'DESCRIBE KEYSPACE {{ keyspace }}' {{ local_address }} | grep -C3 'CREATE KEYSPACE {{ keyspace }}'"
- name: Set consistency to TWO to prepare for replication factor update
set_fact:
consistency: "TWO"
- name: Construct CQL file
template:
src: update_replication_factor.cql.j2
dest: /tmp/replication_factor.cql
- name: Execute CQL statements
shell: "{{ apigee_installation_home }}/apigee-cassandra/bin/cqlsh -f /tmp/replication_factor.cql {{ local_address }} "
- name: Keyspace after modification
shell: "{{ apigee_installation_home }}/apigee-cassandra/bin/cqlsh -e 'DESCRIBE KEYSPACE {{ keyspace }}' {{ local_address }} | grep -C3 'CREATE KEYSPACE {{ keyspace }}'"