Adding multiple nodes to a Cassandra cluster

2017-01-24 Thread Andreas Fritzler
Hi, what is the best way to add multiple nodes to an existing Cassandra cluster. The cluster runs in 1 DC. I found this guide on the datastax website [1]. Are there any other best practices I should consider? Regards, Andreas [1] https://docs.datastax.com/en/cassandra/2.1/cassandra/operations/o

Re: Transparent Fail-Over for Java Driver to survive Cluster Rolling

2016-10-24 Thread Andreas Fritzler
cluster and fails. > Having two contact points is a good start. > > Cheers, > Hannu > > > On 24 Oct 2016, at 15:04, Andreas Fritzler > wrote: > > Hi, > > I was wondering if it is enough to set a list of contact points via: > > Cluster.builder().addContactP

Transparent Fail-Over for Java Driver to survive Cluster Rolling

2016-10-24 Thread Andreas Fritzler
Hi, I was wondering if it is enough to set a list of contact points via: Cluster.builder().addContactPoint("host1").addContactPoint("host2")...; to survive a cluster rolling while inserting/reading from the cluster. Regards, Andreas