Re: [VOTE] Release Apache Camel K 1.9.1 and Camel-Kamelets 0.8.1

2022-05-12 Thread Andrea Cosentino
Thanks all,  This vote passes with 3 +1 binding votes and 2 +1 non-binding votes. Thanks. -- Andrea Cosentino  -- Apache Camel PMC Chair Apache Karaf Committer Apache Servicemix PMC Member Email: ancosen1...@yahoo.com Twitter: @oscerd2 Github: oscerd On

RE: Re: Camel kafka connector - azure blob storage sink

2022-05-12 Thread Jean Arcand
Looking for 2 things mainly : 1 - no specific property for this one but wanted to check if we could customize the aggregation / partitioning of the messages like this connector :

Re: [HEADS UP] - Stream Caching default enabled in Camel 3.17 onwards

2022-05-12 Thread ski n
Wow, good step. One of the first thing what I did with a new Camel App was enable stream caching, however was always a bit worried about the edge cases. Good they are tackled now. Raymond On Wed, May 11, 2022 at 12:57 PM Claus Ibsen wrote: > Hi > > Okay so I am working on correcting some unit

Re: unmarshalling with jackson, LocalDateTime and datatype:jackson-datatype-jsr310

2022-05-12 Thread abrosich
Hello, you have to register the module. For example: final JacksonDataFormat df = new JacksonDataFormat(MyPojo.class); df.setObjectMapper(new ObjectMapper().registerModule(new JavaTimeModule())); Regards On Thu, 2022-05-12 at 10:19 +0300, Vyacheslav Boyko wrote: > Hello! > > How to get

Re: Camel kafka connector - azure blob storage sink

2022-05-12 Thread Claus Ibsen
Hi Yes the 1.x model is what we goes forward with. The CKC are based on Kamelets https://camel.apache.org/camel-kamelets/0.8.x/ What options are you looking for? On Thu, May 12, 2022 at 8:59 AM Arcand, Jean wrote: > > Greetings, > > We have a use case where we want to copy kafka messages to

unmarshalling with jackson, LocalDateTime and datatype:jackson-datatype-jsr310

2022-05-12 Thread Vyacheslav Boyko
Hello! How to get managed with such problem? I need to unmarshall incoming from Kafka data into POJO having one field of LocalDateTime type. I have the route:     from(parametersProvider.getEventsListeningEndpoint())     .unmarshal().json(EventDto.class) And it produces the

Camel kafka connector - azure blob storage sink

2022-05-12 Thread Arcand, Jean
Greetings, We have a use case where we want to copy kafka messages to an azure blob container, the camel kafka connector project seemed like a really good fit. The connector which we were interested in is this one :