Re: Consume Files with specific dynamic content only

2023-03-22 Thread Claudio Miranda
On Wed, Feb 22, 2023 at 3:22 AM Reto Peter wrote: > > Is there any chance I can access the Exchange inside the filter > (GenericFileFilter)? > Or how can I achieve to process only files with specific dynamic content Your route has to access the message content, you can use the content filter. Yo

Re: Building camel

2023-03-22 Thread Chirag
Thanks. Will try mavend. ચિરાગ/चिराग/Chirag -- Sent from My Gmail Account On Wed, Mar 22, 2023 at 1:01 PM Nicolas Filotto wrote: > > Hi Chirag, > > I personally use Maven Daemon https://github.com/apache/maven-mvnd and use > the command "mvnd clean instal

Re: Building camel

2023-03-22 Thread Nicolas Filotto
Hi Chirag, I personally use Maven Daemon https://github.com/apache/maven-mvnd and use the command "mvnd clean install -Pfastinstall -q" to build as fast as possible but since it is a big project with a lot of dependencies to download, it will still take tens of minutes. I hope it helps, Regard

Building camel

2023-03-22 Thread Chirag
Team I am trying to build camel snapshot. I see two guides: https://camel.apache.org/manual/building.html and https://camel.apache.org/docs/building/ (both are slightly different). there may be a need to merge into one document ? I do see a lot of warnings. [INFO] [INFO] --- flatten:1.2.5:flat

Re: Consume Kafka messages in a batch

2023-03-22 Thread Mark Nuttall
Thanks Otavio! Option 1 won't work because the Camel code, while it does consume a batch based on those settings and iterates over the enumeration, it only ever passes one at a time. I thought about hacking that class but when we update camel versions, i'd have to remember i did that. :) . We can

Re: Enum comparing does not work when toString is overridden

2023-03-22 Thread Claus Ibsen
Hi Thanks for sharing your use-case. I have created a ticket to work on improving this https://issues.apache.org/jira/browse/CAMEL-19186 On Wed, Mar 22, 2023 at 12:08 PM Svend Ole Nielsen < svend-ole.niel...@addsecure.com> wrote: > Hi - sorry for the late reply. Some money making stuff was a bit

Re: Unable to use ehcache in pure blueprint DSL

2023-03-22 Thread Mirek Borsky
Yes, that would work. Can´t believe I missed it :) Thank you very much, Jacek. -- Mirek Borský -- Původní e-mail -- Od: jacek szymanski Komu: users@camel.apache.org Datum: 22. 3. 2023 9:54:50 Předmět: Re: Unable to use ehcache in pure blueprint DSL "Hi, wouldn't work? js.

Sv: Enum comparing does not work when toString is overridden

2023-03-22 Thread Svend Ole Nielsen
Hi - sorry for the late reply. Some money making stuff was a bit important. If I have a choice list like this: ${header.type} == ${type:Type.TYPE1} ${h

Re: Consume Kafka messages in a batch

2023-03-22 Thread Otavio Rodolfo Piske
Hi, Some ideas worth investigating: 1. Using a mix of current kafka client options (i.e.: like maxPollrecords, maxPollInterval, etc) along with aggregate EIP 2. Create your own KafkaClientFactory that wraps a custom Producer/Consumer wrapping the Spring Kafka Consumer. If none of this works, the

Re: Unable to use ehcache in pure blueprint DSL

2023-03-22 Thread jacek szymanski
Hi, wouldn't work? js. On 3/21/23 19:25, Mirek Borsky wrote: Greetings, I am trying to use camel-ehcache with pure blueprint DSL and struggle to make it work. Could someone either help point me in the right direction or confirm that it is not possible? I have done the following: downlo