Re: What is 'Read Reuqests' on OpsCenter exaclty?

2015-04-24 Thread Carlos Rolo
Let me try to reproduce your test and get back wiith some results. Regards, Carlos Juzarte Rolo Cassandra Consultant Pythian - Love your data rolo@pythian | Twitter: cjrolo | Linkedin: *linkedin.com/in/carlosjuzarterolo * Mobile: +31 6 159 61 814 | Tel:

Re: What is 'Read Reuqests' on OpsCenter exaclty?

2015-04-24 Thread Bongseo Jang
You're quite right. I missed important thing first. I found a mistake in my program while making test case. It turns out that the original program has 3~4 selects for non-existing row keys plus a select for existing row key. It was intended to do nothing but for next tests. My original test count

Re: What is 'Read Reuqests' on OpsCenter exaclty?

2015-04-24 Thread Bongseo Jang
I can see two numbers matches when the redundant selects are removed with 1 node/1 replica settings. On 24 April 2015 at 19:09, Bongseo Jang wrote: > You're quite right. I missed important thing first. > > I found a mistake in my program while making test case. It turns out that > the original p

Re: Creating 'Put' requests

2015-04-24 Thread Phil Yang
2015-04-23 22:16 GMT+08:00 Matthew Johnson : > > In HBase, we do something like: > > Put put = new Put(id); > put.add(myPojo.getTimestamp(), myPojo.getValue()); > put.add(myPojo.getMySecondTimestamp(), myPojo.getSecondValue()); > server.put(put); > > Is there any sim

Re: Creating 'Put' requests

2015-04-24 Thread Jens Rantil
Matthew, Maybe this could also be of interest: http://projects.spring.io/spring-data-cassandra/ Cheers, Jens On Fri, Apr 24, 2015 at 12:50 PM, Phil Yang wrote: > > > 2015-04-23 22:16 GMT+08:00 Matthew Johnson : >> >> In HBase, we do something like: >> >> Put put = new Put(id); >>

Re: Creating 'Put' requests

2015-04-24 Thread Jonathan Haddad
There's also Achilles: https://github.com/doanduyhai/Achilles On Fri, Apr 24, 2015 at 1:21 PM Jens Rantil wrote: > Matthew, > > Maybe this could also be of interest: > http://projects.spring.io/spring-data-cassandra/ > > Cheers, > Jens > > On Fri, Apr 24, 2015 at 12:50 PM, Phil Yang wrote: > >>

Re: Creating 'Put' requests

2015-04-24 Thread Jonathan Haddad
To add to Phil's point, there's no circumstance in which I would use an unlogged batch, under load I have yet to hear it do anything other than increase GC pauses. On Fri, Apr 24, 2015 at 11:50 AM Phil Yang wrote: > 2015-04-23 22:16 GMT+08:00 Matthew Johnson : >> >> In HBase, we do something lik

RE: Creating 'Put' requests

2015-04-24 Thread Matthew Johnson
The object-mapping API is very interesting, I’ll check that out, thanks. I believe I have found what I was looking for in terms of programmatically inserting data using the following syntax: * Insert builder = QueryBuilder.insertInto(**"simplex"**, * *"mytable1"**);* *

Confirming Repairs

2015-04-24 Thread Jeff Ferland
The short answer is I used a logstash query to get a list of all repair ranges started and all ranges completed. I then matched the UUID of the start message to the end message and printed out all the ranges that didn't succeed. Then one needs to go a step further than I've coded and match the rema

Re: Confirming Repairs

2015-04-24 Thread Yuki Morishita
In 3.0, we have system table that stores repair history. https://issues.apache.org/jira/browse/CASSANDRA-5839 So you can just use CQL to check when given ks/cf is repaired. On Sat, Apr 25, 2015 at 5:23 AM, Jeff Ferland wrote: > The short answer is I used a logstash query to get a list of all repa