Re[2]: The action of the file system at drop column family execution

2013-05-15 Thread hiroshi.kise.rk
Dear Aaron Morton I'm Hiroshi. Thank you for the reply. $KS/$CF/snapshots directory namely : Under C:\var\lib\cassandra\data\MyKeyspace\testcf1 dir command execution: 2013/05/09 14:04 . 2013/05/09 14:04 .. 0 File(s) 0 bytes

How to add new DC to cluster when GossipingPropertyFileSnitch is used

2013-05-15 Thread Sergey Naumov
As far as I understand, GossipingPropertyFileSnitch supposed to provide more flexibility in nodes addition/removal. But what about addition of a DC? In datastax documentation ( http://www.datastax.com/docs/1.2/operations/add_replace_nodes#add-dc) it is said that cassandra-topology.properties could

Re: (unofficial) Community Poll for Production Operators : Repair

2013-05-15 Thread Alain RODRIGUEZ
Rob, I was wondering something. Are you a commiter working on improving the repair or something similar ? Anyway, if a commiter (or any other expert) could give us some feedback on our comments (Are we doing well or not, whether things we observe are normal or unexplained, what is going to be impr

Re: (unofficial) Community Poll for Production Operators : Repair

2013-05-15 Thread horschi
Hi Alain, have you had a look at the following tickets? CASSANDRA-4905 - Repair should exclude gcable tombstones from merkle-tree computation CASSANDRA-4932 - Agree on a gcbefore/expirebefore value for all replica during validation compaction CASSANDRA-4917 - Optimize tombstone creation for Expir

Re: (unofficial) Community Poll for Production Operators : Repair

2013-05-15 Thread André Cruz
On May 10, 2013, at 7:24 PM, Robert Coli wrote: > 1) What version of Cassandra do you run, on what hardware? 1.1.5 - 6 nodes, 32GB RAM, 300GB data per node, 900GB 10k RAID1, Intel(R) Xeon(R) CPU E5-2609 0 @ 2.40GHz. > 2) What consistency level do you write at? Do you do DELETEs? QUORUM. Yes,

Re: (unofficial) Community Poll for Production Operators : Repair

2013-05-15 Thread Edward Capriolo
I have actually tested repair in many interesting scenarios: Once I joined a node and forgot autobootstrap=true So the data looked like this in the ring left node 8GB new node 0GB right node 8GB After repair left node 10 GB new node 13 gb right node 12 gb We do not run repair at all. It is better

Upgrade 1.1.10 -> 1.2.4

2013-05-15 Thread Everton Lima
Hello, someone can help me to use the Object CassandraServer() in version 1.2.4?? I was using this in version 1.1.10, and thats work, but was happening something that I can not solve (sometimes my cpu up to 100% and stay forever) so I decide to do the upgrade. I start the cassandra with EmbeededCa

Re: Upgrade 1.1.10 -> 1.2.4

2013-05-15 Thread Edward Capriolo
If you are using hector it can setup the embedded server properly. When using the server directly inside cassandra I have run into a similar problem.. https://github.com/edwardcapriolo/cassandra/blob/range-tombstone-thrift/test/unit/org/apache/cassandra/thrift/EndToEndTest.java @BeforeClass publ

Multiple cursors

2013-05-15 Thread Sam Mandes
Hello All, Is using multiple cursors simultaneously on the same C* connection a good practice? I've an internal api for a project running thrift, I then need to query something from C*. I do not like to create a new connection for every api request. Thus, when my service initially starts I open a

Re: Upgrade 1.1.10 -> 1.2.4

2013-05-15 Thread Everton Lima
But using this code: ThriftSessionManager.instance.setCurrentSocket(new InetSocketAddress(9160)); I will need to execute this line every time that I need to do somiething in Cassandra? Like update a collunm family. Thanks for reply. 2013/5/15 Edward Capriolo > If you are using hector it can

Re: (unofficial) Community Poll for Production Operators : Repair

2013-05-15 Thread Robert Coli
On Wed, May 15, 2013 at 1:27 AM, Alain RODRIGUEZ wrote: > Rob, I was wondering something. Are you a commiter working on improving the > repair or something similar ? I am not a committer [1], but I have an active interest in potential improvements to the best practices for repair. The specific ch

Re: (unofficial) Community Poll for Production Operators : Repair

2013-05-15 Thread Edward Capriolo
http://basho.com/introducing-riak-1-3/ Introduced Active Anti-Entropy. Riak now has active anti-entropy. In distributed systems, inconsistencies can arise between replicas due to failure modes, concurrent updates, and physical data loss or corruption. Pre-1.3 Riak already had several features for

Re: Upgrade 1.1.10 -> 1.2.4

2013-05-15 Thread Edward Capriolo
You are doing something wrong. What I was suggesting is only a hack for unit tests. Your not supposed to interact with CassandraServer directly like that as a client. Download hector and use the correct client libraries. On Wed, May 15, 2013 at 5:13 PM, Everton Lima wrote: > But using this code:

C++ Thrift client

2013-05-15 Thread Bill Hastings
Hi All I am doing very small inserts into Cassandra in the range of say 64 bytes. I use a C++ Thrift client and seem consistently get latencies anywhere between 35-45 ms. Could some one please advise as to what might be happening? thanks