R: Re: Re: Streaming Cassandra Table ( Polling every 5s - Near Realtime )

2017-07-26 Thread Andrea Cosentino
Maybe you need to learn a bit about camel. What camel is and what is a consumer.There is a lot of documentation on the website. Il mer, 26 lug, 2017 alle 21:15, SenthilKumar K ha scritto: Not sure if i already have an answer... Still i'm not clear :-( .. Questions :     1)  *Can this Cass

shutdown strategy is set on context level / way of route level?

2017-07-26 Thread onders
Hi, As per my understanding, shutdown strategy is set per camelcontext. Is there a way / other ways where we can apply shutdown strategy or custom shutdown implementation per route(s) in a camel context? In my use case, i have number of events stored in database already. In order to avoid reproce

CxfEndpoint and wsdl message part issue

2017-07-26 Thread Matthew Shaw
Hi, I'm configuring a camel route with a cxf web service endpoint and deploying into osgi/karaf via declarative services. Service starts up ok and I can browse the wsdl. However invoking from soapui with a valid request I am getting the following error: org.apache.cxf.interceptor.Fault: Messag

Re: Re: Streaming Cassandra Table ( Polling every 5s - Near Realtime )

2017-07-26 Thread SenthilKumar K
Not sure if i already have an answer... Still i'm not clear :-( .. Questions : 1) *Can this Cassandra Camel Consumer opt for my Use Case ?* 2) If Yes ( for above Q) , How to use Cassandra Consumer ? *It would be great if i get sample code !* --Senthil On Thu, Jul 27, 2017 at 12:41

R: Re: Streaming Cassandra Table ( Polling every 5s - Near Realtime )

2017-07-26 Thread Andrea Cosentino
You already have an answer. Il mer, 26 lug, 2017 alle 21:09, SenthilKumar K ha scritto: Ping !!! It would be great if anybody help me here :-) .. --Senthil On Wed, Jul 26, 2017 at 4:47 PM, SenthilKumar K wrote: > Adding Dev Group ... > > > --Senthil > > On Wed, Jul 26, 2017 at 3:14 PM,

Re: Streaming Cassandra Table ( Polling every 5s - Near Realtime )

2017-07-26 Thread SenthilKumar K
Ping !!! It would be great if anybody help me here :-) .. --Senthil On Wed, Jul 26, 2017 at 4:47 PM, SenthilKumar K wrote: > Adding Dev Group ... > > > --Senthil > > On Wed, Jul 26, 2017 at 3:14 PM, SenthilKumar K > wrote: > >> Hello Camel Users , Recently i started exploring possibilities o

Re: Streaming Cassandra Table ( Polling every 5s - Near Realtime )

2017-07-26 Thread Claus Ibsen
You need to keep the consumer running, so maybe your JVM terminate after you call start as start is non blocking. However with Camel you typically uses Camel routes to setup what you want, and can then do a route that is from cassandr to bean or processor To keep the JVM running see this FAQ

RE: camel route to remote EJB using karaf blueprint

2017-07-26 Thread Rafael Soares
Great! For sure, would be nice see a public version of your project. Can you share a gist or a public git repo? Thanks ;-) Em 26 de jul de 2017 1:04 AM, "Matthew Shaw" < matthew.s...@ambulance.qld.gov.au> escreveu: > Hi, > > For anyone that's interested I got a working solution integrating an e

Re: Streaming Cassandra Table ( Polling every 5s - Near Realtime )

2017-07-26 Thread SenthilKumar K
Adding Dev Group ... --Senthil On Wed, Jul 26, 2017 at 3:14 PM, SenthilKumar K wrote: > Hello Camel Users , Recently i started exploring possibilities of > streaming data from Cassandra Table for my use case, found > *https://github.com/apache/camel/tree/master/components/camel-cassandraql >

Streaming Cassandra Table ( Polling every 5s - Near Realtime )

2017-07-26 Thread SenthilKumar K
Hello Camel Users , Recently i started exploring possibilities of streaming data from Cassandra Table for my use case, found *https://github.com/apache/camel/tree/master/components/camel-cassandraql * . This seems to be good