* @return existing replication factor
*/
protected int queryReplicationFactor() {
int replicationFactor = 1;
try {
ResultSet resultSet = execute(
"SELECT strategy_options FROM system.schema_keyspaces where keyspace_name='rhq'");
Row row = resultSet.one();
String replicationFactorString = "replication_factor\"";
String resultString = row.getString(0);
resultString = resultString.substring(resultString.indexOf(replicationFactorString)
+ replicationFactorString.length());