Re: Adding a new node to Cassandra cluster

2012-06-04 Thread R. Verlangen
eloper - Big Data(I&D)| 9731648376 | > www.mu-sigma.com > > ** ** > > *From:* samal [mailto:samalgo...@gmail.com] > *Sent:* Monday, June 04, 2012 3:12 PM > > *To:* user@cassandra.apache.org > *Subject:* Re: Adding a new node to Cassandra cluster > > ** **

RE: Adding a new node to Cassandra cluster

2012-06-04 Thread Prakrati Agrawal
algo...@gmail.com] Sent: Monday, June 04, 2012 3:12 PM To: user@cassandra.apache.org Subject: Re: Adding a new node to Cassandra cluster If you use thrift API, you have to maintain lot of low level code by yourself which is already being polished by HLC hector, pycassa also with HLC your can ea

Re: Adding a new node to Cassandra cluster

2012-06-04 Thread samal
;D)| 9731648376 | >> www.mu-sigma.com >> >> ** ** >> >> *From:* R. Verlangen [mailto:ro...@us2.nl] >> *Sent:* Monday, June 04, 2012 2:44 PM >> *To:* user@cassandra.apache.org >> *Subject:* Re: Adding a new node to Cassandra cluster >>

Re: Adding a new node to Cassandra cluster

2012-06-04 Thread Roshni Rajagopal
t; Date: Mon, 4 Jun 2012 02:30:40 -0700 To: "user@cassandra.apache.org<mailto:user@cassandra.apache.org>" mailto:user@cassandra.apache.org>> Subject: Re: Adding a new node to Cassandra cluster You might consider using a higher level client (like Hector indeed). If you don't

Re: Adding a new node to Cassandra cluster

2012-06-04 Thread R. Verlangen
a.com > > ** ** > > *From:* R. Verlangen [mailto:ro...@us2.nl] > *Sent:* Monday, June 04, 2012 2:44 PM > *To:* user@cassandra.apache.org > *Subject:* Re: Adding a new node to Cassandra cluster > > ** ** > > Hi there, > > ** ** > > When you speak

RE: Adding a new node to Cassandra cluster

2012-06-04 Thread Prakrati Agrawal
Sent: Monday, June 04, 2012 2:44 PM To: user@cassandra.apache.org Subject: Re: Adding a new node to Cassandra cluster Hi there, When you speak to one node it will internally redirect the request to the proper node (local / external): but you won't be able to failover on a crash of the local

Re: Adding a new node to Cassandra cluster

2012-06-04 Thread R. Verlangen
Hi there, When you speak to one node it will internally redirect the request to the proper node (local / external): but you won't be able to failover on a crash of the localhost. For adding another node to the connection pool you should take a look at the documentation of your java client. Good l

Adding a new node to Cassandra cluster

2012-06-04 Thread Prakrati Agrawal
Dear all I successfully added a new node to my cluster so now it's a 2 node cluster. But how do I mention it in my Java code as when I am retrieving data its retrieving only for one node that I am specifying in the localhost. How do I specify more than one node in the localhost. Please help me