Implementing queue in Cassandra

2012-01-18 Thread Eric Martell
Hi,   I am having 10 millions of rows with in sql db in key table. key_id -> key_value For each request I am fetching  one key_id and removing that from the key table. Each request should get unique key_id. Similar to java queue but keys persists in DB. How do I implement that in Cassandra

Re: Prepared Statement support (CASSANDRA-2475)

2012-01-18 Thread Eric Evans
On Wed, Jan 11, 2012 at 3:14 PM, Eric Evans wrote: > We need to drive a stake in the ground Real Soon Now, but since this > issue directly affects client maintainers, I'd be interested in > hearing what they had to say about this (either here, or in the > ticket). FYI, trunk has been updated so t

Re: Implementing queue in Cassandra

2012-01-18 Thread Tatu Saloranta
On Wed, Jan 18, 2012 at 7:31 AM, Eric Martell wrote: > Hi, > >   I am having 10 millions of rows with in sql db in key table. > > key_id -> key_value > > > For each request I am fetching  one key_id and removing that > from the key table. Each request should get unique key_id. Similar to > java qu

Welcome committer Aaron Morton!

2012-01-18 Thread Jonathan Ellis
The Apache Cassandra PMC has voted to add Aaron as a committer. Thanks for helping make Cassandra what it is today! -- Jonathan Ellis Project Chair, Apache Cassandra co-founder of DataStax, the source for professional Cassandra support http://www.datastax.com

Re: Welcome committer Aaron Morton!

2012-01-18 Thread aaron morton
Thanks Jonathan and the other committers. Cheers :) - Aaron Morton Freelance Developer @aaronmorton http://www.thelastpickle.com On 19/01/2012, at 7:19 AM, Jonathan Ellis wrote: > The Apache Cassandra PMC has voted to add Aaron as a committer. > Thanks for helping make Cassandra

Re: Implementing queue in Cassandra

2012-01-18 Thread Todd Burruss
if you need a strictly FIFO queue, what I'm about to offer does not satisfy FIFO. I created a "mostly" FIFO queue for processing work items that could arrive out of order, didn't matter for my use case. https://github.com/btoddb/cassandra-queue/wiki/Queue-Design maintaining FIFO order using Cas

Re: Implementing queue in Cassandra

2012-01-18 Thread Norman Maurer
Why not just use something which fits better for the job then cassandra. Did you checkout kafka and kestrel ? Bye, Norman Ps: I think you should better ask these questions on user@ 2012/1/19 Todd Burruss : > if you need a strictly FIFO queue, what I'm about to offer does not > satisfy FIFO.  I