Not a lot of quality videos for Apache Camel. Thanks for doing this! And helping us embrace this powerful open source integration tool. Please do more videos on EIP and best practices advices.
Hello, great video, I can't find much information about Apache Camel and Spring Boot. I'm working on processing a file line by line, but I need to get the header names and have them available for the other rows in the file because I need to apply some logic together. So far I haven't been able to persist the header names in the following lines. What I have been able to do is process line by line. Do you know how I could do that?
Is it synchronous by default for eg: of we have multiple users going through camel flow so can we ensure that the data or rather split operation from user 1 does not overlap with user 2? If we consider api call after split
Hi, I am not sure why, i have split with end(), but the processor am calling post split end() is being called for every split. event the logging post split end() is publishing for every split.
I have to end() twice to stop this behaviour any idea why is that . my route is working from() .split(body().tokenize(" ") .filter(predicatebuilder) .log("inside") .to("mock:preprocess") .end() .end() // if i don't give this it prints outside as well for every line split is processing. why is it so. .log("outside") .end();
Not a lot of quality videos for Apache Camel. Thanks for doing this! And helping us embrace this powerful open source integration tool. Please do more videos on EIP and best practices advices.
Thanks a lot, explained very well, subscribed :)
Thanks a lot for this video.
Very nice video. can you also upload something which uses parallel processing with split please when time permits.
Will upload soon
Thank you so much for your valuable contents please keep it up it's very helpful.
Nice explanation. Enjoyed your session.
Very good explanation..
Hello, great video, I can't find much information about Apache Camel and Spring Boot. I'm working on processing a file line by line, but I need to get the header names and have them available for the other rows in the file because I need to apply some logic together. So far I haven't been able to persist the header names in the following lines. What I have been able to do is process line by line. Do you know how I could do that?
another nice video Thx
Is it synchronous by default for eg: of we have multiple users going through camel flow so can we ensure that the data or rather split operation from user 1 does not overlap with user 2? If we consider api call after split
Good stuff
How to build a camel engine by converting a CSV file into a hashmap
Hi, I am not sure why, i have split with end(), but the processor am calling post split end() is being called for every split. event the logging post split end() is publishing for every split.
I have to end() twice to stop this behaviour any idea why is that .
my route is working
from()
.split(body().tokenize("
")
.filter(predicatebuilder)
.log("inside")
.to("mock:preprocess")
.end()
.end() // if i don't give this it prints outside as well for every line split is processing. why is it so.
.log("outside")
.end();
Hi, Does anyone how to implement splitter eip in pypipeline using python