Re: Publishing from cassandra

2016-04-24 Thread Laing, Michael
You could take a look at, or follow: https://issues.apache.org/jira/browse/CASSANDRA-8844 On Sun, Apr 24, 2016 at 10:51 AM, Alexander Orr wrote: > Hi, > > I'm wondering if someone could help me, I'd like to use cassandra to store > data and publish this on dowstream to another database (kdb if a

RE: Publishing from cassandra

2016-04-24 Thread Ashic Mahtab
Hi Alex,Cassandra Triggers may help. They come with their drawbacks, but they can be an option for something like this: https://docs.datastax.com/en/cql/3.1/cql/cql_reference/trigger_r.html -Ashic. Date: Sun, 24 Apr 2016 12:05:31 -0400 Subject: Re: Publishing from cassandra From: michael.la

Re: Publishing from cassandra

2016-04-24 Thread Clint Martin
I would probably use a messaging layer to perform this operation. Kafka works very well, but depending on your throughput requirements almost anything should work. The idea is to publish your mutation requests to the messaging layer and allow multiple consumers to process those mutation requests i