Re: Weird timeout errors

2014-06-13 Thread Robert Coli
On Fri, Jun 13, 2014 at 2:58 AM, David Mitchell wrote: > > It does look like the excessive number of tombstones is the culprit. > Thanks for pointing me towards that. > NP, HTH, HAND, :D The apparent behavior of the nodes to simply not answer and let a timeout > come back to the user is a littl

Re: Weird timeout errors

2014-06-13 Thread David Mitchell
On Jun 12, 2014, at 11:39 AM, Robert Coli wrote: > On Thu, Jun 12, 2014 at 10:29 AM, David Mitchell wrote: > session.execute("""insert into raw_data (key,column1,value) values > (%s,%s,%s)""", > ... > and then delete them like so: > session.execute("""delete from raw_data where key

Re: Weird timeout errors

2014-06-12 Thread Robert Coli
On Thu, Jun 12, 2014 at 10:29 AM, David Mitchell wrote: > session.execute("""insert into raw_data (key,column1,value) values > (%s,%s,%s)""", > ... > and then delete them like so: > session.execute("""delete from raw_data where key = %s""",(path,)) > ... > and then try to select from

Weird timeout errors

2014-06-12 Thread David Mitchell
Greetings, I am hitting a behavior which looks like a bug to me and I’m not sure how to work around it. If I insert rows with a given key like so: path=‘some:test:key' for c in range(count): session.execute("""insert into raw_data (key,column1,value) values (%s,%s,%s)""",