Hi, sorry for the late reply.
Yes, you're right Pandra won't be able to detect other nodes in the
ring automatically. The best way to do this for failover is to
iterate over an array of known seeds, breaking on the first success.
eg :
$hosts = array('host1', 'host2', 'host3');
$ok = FALSE;
foreach ($hosts as $host) {
$ok = PandraCore::auto($host);
if ($ok) break;
}
if (!$ok) echo 'All nodes unavailable';
... hope that helps
- michael
> 2010/7/6 weeladalah <
hendrothem...@gmail.com>