I'm new to cassandra but have a background of Nosql and high availability with other technologies. A few days ago I installed Cassandra 3.0 but it sounds Datastax php driver does not support it at all! So I downgraded to the 2.1.11 version and wrote a simple php script to query it using Datastax php-driver and it is working as it should be.
<?php
try {
$cluster = Cassandra::cluster()
->withContactPoints('127.0.0.1')
->build();
$keyspace = 'mykeysssspace';
$session = $cluster->connect($keyspace);
$statement = new Cassandra\SimpleStatement('SELECT userid, created_date, email FROM users');
$future = $session->executeAsync($statement);
$result = $future->get();
foreach ($result as $row) {
printf("userId: %s, email: %s\n", $row['userid'], $row['email']);
}
}catch(Exception $e) {
print $e->getMessage();
}
?>
Then I started two instance of Cassandra in the same machine (Ubuntu 11.10!) using different ip addresses. Then changed php code to:
$cluster = Cassandra::cluster()
->withContactPoints('127.0.0.1', '127.0.0.2')
->build();
The problem is, as long as both instances are running everything works as expected and php outputs expected results. But when I stop one of the instances (no matter which) it gives
All hosts in current policy attempted and were either unavailable or failed
Even if I change it back to
$cluster = Cassandra::cluster()
->withContactPoints('running_instance_ip')
->build();
it gives me the same error. But cqlsh works in every scenario.
Is it something about the Datastax php driver?