blob: 5bed0b2b3ec0930aab5726a1fd581f3d3467547a [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_facts:
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 }}'"