[RELEASE] Apache Cassandra 1.2.15 released

2014-02-07 Thread Sylvain Lebresne
The Cassandra team is pleased to announce the release of Apache Cassandra version 1.2.15. Cassandra is a highly scalable second-generation distributed database, bringing together Dynamo's fully distributed design and Bigtable's ColumnFamily-based data model. You can read more here:

[RELEASE] Apache Cassandra 2.0.5 released

2014-02-07 Thread Sylvain Lebresne
The Cassandra team is pleased to announce the release of Apache Cassandra version 2.0.5. Cassandra is a highly scalable second-generation distributed database, bringing together Dynamo's fully distributed design and Bigtable's ColumnFamily-based data model. You can read more here:

RE: exception during add node due to test beforeAppend on SSTableWriter

2014-02-07 Thread Desimpel, Ignace
Issue created at https://issues.apache.org/jira/browse/CASSANDRA-6673 From: ravi prasad [mailto:raviprasad...@yahoo.com] Sent: donderdag 6 februari 2014 20:19 To: user@cassandra.apache.org Subject: Re: exception during add node due to test beforeAppend on SSTableWriter I'm seeing the same with

Re: CQL list command

2014-02-07 Thread Brian O'Neill
+1, agreed. I do the same thing. If cli is going away, we¹ll need this ability in cqlsh. I created a JIRA issue for it: https://issues.apache.org/jira/browse/CASSANDRA-6676 We¹ll see what the crew come back with. -brian --- Brian O'Neill Chief Technology Officer Health Market Science The

Adding a node to cluster keeping 100% data replicated on all nodes

2014-02-07 Thread jivko donev
Hi, Our environment will consist of cluster with size not bigger than 2 to 4 nodes per cluster(all located in the same DC). We want to ensure that every node in the cluster will own 100% of the data. A node adding(or removing) procedure will be automated so we want to ensure we're making the

Re: Bootstrap failure on C* 1.2.13

2014-02-07 Thread Alain RODRIGUEZ
From changelog : 1.2.15 * Move handling of migration event source to solve bootstrap race (CASSANDRA-6648) Maybe should you give this new version a try, if you suspect your issue to be related to CASSANDRA-6648. Hope this will solve your issue. 2014-02-06 16:48 GMT+01:00 Paulo Ricardo Motta

Re: Adding datacenter for move to vnodes

2014-02-07 Thread Alain RODRIGUEZ
@Bill An other DC for this migration is the less impacting way to do it. You set a new cluster, switch to it when it's ready. No performance or down time issues. Decommissioning a node is quite an heavy operation since it will give part of its data to all the remaining nodes, increasing network,

Re: Adding datacenter for move to vnodes

2014-02-07 Thread Vasileios Vlachos
Thanks for you input. Yes, you can mix Vnode-enabled and Vnode-disabled nodes. What you described is exactly what happened. We had a node which was responsible for 90%+ of the load. What is the actual result of this though? Say you have 6 nodes with 300G each. So you decommission N1 and you

Thrift execute_cql3_query function seems to require that keyspace name is lowercase and is creating keyspaces with a lower case name

2014-02-07 Thread Desimpel, Ignace
Same for the Column Family name. I thought that CQL names were case sensitive. Also make it impossible to use this interface to query for existing keyspaces that were created with thrift interface and that have capitals in the name. Did I read it wrongly? Simple example : String sCreateKs =

Re: Thrift execute_cql3_query function seems to require that keyspace name is lowercase and is creating keyspaces with a lower case name

2014-02-07 Thread Sylvain Lebresne
On Fri, Feb 7, 2014 at 2:48 PM, Desimpel, Ignace ignace.desim...@nuance.com wrote: Same for the Column Family name. I thought that CQL names were case sensitive. You though wrong: http://cassandra.apache.org/doc/cql3/CQL.html#identifiers Also make it impossible to use this interface to

RE: Thrift execute_cql3_query function seems to require that keyspace name is lowercase and is creating keyspaces with a lower case name

2014-02-07 Thread Desimpel, Ignace
Thanks Sylvain! Did try the quotes, and all is OK. I was planning on replacing some of my pure thrift calls with the cql equivalent to make the code more readable. Hence my first shot at cql. Regards, Ignace From: Sylvain Lebresne [mailto:sylv...@datastax.com] Sent: vrijdag 7 februari 2014

Re: Auto-Bootstrap not Auto-Bootstrapping?

2014-02-07 Thread Thunder Stumpges
OK, well I think that explains why they didn't bootstrap. I do still have a question about this scenario with regard to QUORUM reads. So we added the new empty node in, and had 3 nodes with replication factor 3, two nodes should have had all the data, one empty. Why wouldn't quorum reads result

Re: Bootstrap failure on C* 1.2.13

2014-02-07 Thread Robert Coli
On Fri, Feb 7, 2014 at 4:41 AM, Alain RODRIGUEZ arodr...@gmail.com wrote: From changelog : 1.2.15 * Move handling of migration event source to solve bootstrap race (CASSANDRA-6648) Maybe should you give this new version a try, if you suspect your issue to be related to CASSANDRA-6648.

cqlsh backup

2014-02-07 Thread Daniel Curry
Does cassandra have a backup command like mysqldump and oracle alter tables hot to backup the schema files? -- Daniel Curry Sr Linux Systems Administrator Arrayent, Inc. 2317 Broadway Street, Suite 20 Redwood City, CA 94063 dan...@arrayent.com

Re: cqlsh backup

2014-02-07 Thread DuyHai Doan
*For CQL3 tables* echo describe keyspace your_keyspace_name; command.cql cqlsh -3 -f command.cql /tmp/schema.txt *For Thrift column families* echo describe keyspace your_keyspace_name; command.txt cassandra-cli -f command.txt /tmp/schema.txt On Sat, Feb 8, 2014 at 12:08 AM, Daniel Curry

Hector Could not flush transport error

2014-02-07 Thread Senthil, Athinanthny X. -ND
We get the below error in app logs when it's trying to hit DC which doesn't get traffic in multi DC cluster. But other DC where all traffic hits seems to be responding without any issues. App read/write requests are timing out. Hector client version is 1.0.5. On cassandra side , we are getting

Re: Hector Could not flush transport error

2014-02-07 Thread Robert Coli
On Fri, Feb 7, 2014 at 4:05 PM, Senthil, Athinanthny X. -ND athinanthny.x.senthil@disney.com wrote: We get the below error in app logs when it's trying to hit DC which doesn't get traffic in multi DC cluster. What version of Cassandra? =Rob