blob: a6f00c17705bba0ab6fa2bc47493ff955c8a5df1 [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: Construct CQL file
template:
src: alter_replication_factor.cql.j2
dest: /tmp/alter_replication_factor.cql
- name: Execute CQL statements
shell: "{{ apigee_installation_home }}/apigee-cassandra/bin/cqlsh -f /tmp/alter_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 }}'"