Re: Python CQL Batching is slower than single statements

2012-01-25 Thread Blake Visin
python > script. > > Cheers > > > - > Aaron Morton > Freelance Developer > @aaronmorton > http://www.thelastpickle.com > > On 25/01/2012, at 3:33 PM, Blake Visin wrote: > > So I decided that it would be beneficial to use batching in my applicat

Python CQL Batching is slower than single statements

2012-01-24 Thread Blake Visin
So I decided that it would be beneficial to use batching in my application since I am doing many, many inserts. When I implemented batching in CQL using 'BEGIN BATCH'..'APPLY BATCH' I saw a significant decrease in the speed of inserts, no matter the number of insert statements I included between b

Escaping characters in cqlsh

2011-07-13 Thread Blake Visin
I am trying to get all the columns named "fmd:" in cqlsh. I am using: select 'fmd:'..'fmd;' from feeds where; But I am getting errors (as expected). Is there any way to escape the colon or semicolon in cqlsh? Thanks, Blake