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
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
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
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
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
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
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