Re: [FEEDBACK] - Apache Camel 3 - camel-core vs camel-core-lite vs camel-core-all

2019-03-07 Thread Ralf Claussnitzer
Well, I would expect the core to include all the core modules. So "camel-core" should deliver on this. If there is need for a "smaller core", than the "bigger core" should have it as a dependency. This leads to awkward naming, because we have now got a "core core". For this "core core" I would

Re: I could not use .transacted() in camel route with SpringBoot, got exception

2019-03-07 Thread Willem Jiang
The transacted DSL is built on top of Spring PlatformTransactionManager. If you want to use the transacted with Spring Boot, you need to make sure you can get PlatformTransactionManager from the application context. Willem Jiang Twitter: willemjiang Weibo: 姜宁willem On Fri, Mar 8, 2019 at 4:46 A

I could not use .transacted() in camel route with SpringBoot, got exception

2019-03-07 Thread Wang Yan
I could not use .transacted() in camel route with SpringBoot, got exception No bean could be found in the registry of type: PlatformTransactionManager" Is it expected behavior for SpringBoot+Camel setup? below is example of the code https://github.com/apache/camel/blob/master/components/camel-sp

I'm having trouble processing batches of records from kafka in camel. I can't get them in a batch, nor can I assemble them using aggregation.

2019-03-07 Thread Hart, James W.
1. I am trying to process batches of records in camel from kafka, but I am unable to get a batch, nor am I able to aggregate the records myself. I was expecting to get 5 records in a batch because I set "maxPollRecords=5", and then I could process them in a batch or split and process them indiv