Re: seed faq

2011-04-23 Thread aaron morton
May also want to add that seed nodes do not auto bootstrap. Thanks Aaron On 22 Apr 2011, at 13:24, Maki Watanabe wrote: > Thank you, Naren. > I'll add some more details and upload it to FAQ wiki page. > > maki > > 2011/4/21 Narendra Sharma : >> Here are some more details that might help: >> 1.

Re: decommissioning a wrong node

2011-04-23 Thread aaron morton
> BTW all the nodes are running on the same machine and are set up using > virtual IPs. Not sure if this is important (I don't think it shoul Yup :) JMX binds to 127.0.0.1, but different ports as specified in cassandra-env.sh . Include the port number on the nodetool command line, otherwise you

Re: decommissioning a wrong node

2011-04-23 Thread Edward Capriolo
2011/4/23 Tomas Vondra : > Hi all, > > I've set up a ring with three nodes to play with. I've tried to > decommision a node, but it seems a different node is decommisioned. > > Example - the nodes are running: > > ~/cassandra $ nodetool -h 10.0.0.1 ring > Address    Status State  Load     Owns    T

Re: Manual Conflict Resolution in Cassandra

2011-04-23 Thread aaron morton
Have not read the whole thing just the time line. Couple of issues... At t8 The request would not start as the CL level of nodes is not available, the write would not be written to node X. The client would get an UnavailableException. In response it should connect to a new coordinator and try a

Apt repositories

2011-04-23 Thread David Strauss
I just noticed that, following the Cassandra 0.8 beta release, the Apt repository is encouraging servers in my clusters to upgrade. Beta releases should probably be on different channels (or named differently) than stable ones. Better yet would be naming the packages based on the major release in

decommissioning a wrong node

2011-04-23 Thread Tomas Vondra
Hi all, I've set up a ring with three nodes to play with. I've tried to decommision a node, but it seems a different node is decommisioned. Example - the nodes are running: ~/cassandra $ nodetool -h 10.0.0.1 ring AddressStatus State Load OwnsToken

Re: 0.8.0 thrift api?

2011-04-23 Thread Robert Jackson
I have been using: https://github.com/apache/cassandra/blob/cassandra-0.8/interface/cassandra.thrift And yes both the CQL and the counter API are accessible via Thrift. Robert Jackson - Original Message - From: "Michael Fortin" To: user@cassandra.apache.org Sent: Saturday, April

Re: 0.8.0 thrift api?

2011-04-23 Thread Kirk Peterson
The best documentation (imo) for the Thrift API, is the cassandra.thrift file in the 'interface' subdirectory of the releas. Because cassandra.thrift is used to generate client bindings, it is always up to date, and usually well commented. The wiki lags behind, but sometimes will have more details

0.8.0 thrift api?

2011-04-23 Thread Michael Fortin
Hi, Were can I find the thrift api documentation for 0.8? What's in the wiki is only for <=7. I'm especially inserted in the new query and counter api's. That's accessible via thrift, right? Thanks, Mike

Re: sstable2json

2011-04-23 Thread Edward Capriolo
On Fri, Apr 22, 2011 at 9:07 PM, Jonathan Ellis wrote: > No. > > On Fri, Apr 22, 2011 at 3:22 PM, Subrahmanya Harve > wrote: >> Hi, >> >> Is there a tool similar to sstable2json that can be used to convert data in >> commitlog to json? Or does sstable2json let us read the commitlog as well? >> >>

Re: multiple nodes sharing the same IP

2011-04-23 Thread Tomas Vondra
Dne 23.4.2011 10:15, Maki Watanabe napsal(a): > storage_port: Used for Gossip and Data exchange. So in your word, it > is the port for the seeds. > > You CAN change the storage_port, but all nodes in your ring need to > use same storage_port number. > That's why you need different IP address for e

Re: multiple nodes sharing the same IP

2011-04-23 Thread Maki Watanabe
storage_port: Used for Gossip and Data exchange. So in your word, it is the port for the seeds. You CAN change the storage_port, but all nodes in your ring need to use same storage_port number. That's why you need different IP address for each node. rpc_port: Used for Thrift which the Cassandra c