gzurowski commented on code in PR #1330: URL: https://github.com/apache/camel-website/pull/1330#discussion_r2028255513
########## content/blog/2025/04/camel411-whatsnew/index.md: ########## @@ -0,0 +1,130 @@ +--- +title: "Apache Camel 4.11 What's New" +date: 2025-04-12 +authors: [davsclaus, squakez, croway] +categories: ["Releases"] +preview: Details of what we have done in the Camel 4.11 release. +--- + +Apache Camel 4.11 has just been [released](/blog/2025/04/RELEASE-4.11.0/). + +This release introduces a set of new features and noticeable improvements that we will cover in this blog post. + +## Camel Core + +The component _verifier extension_ has been deprecated. This functionality has not been in use for many years, +and we will start to deprecate more of these un-used features in camel-core going forward. + +### Recipient List, Split and Multicast EIP + +In parallel processing mode, you can also enable `synchronous=true` to force these EIPs to process +the sub-tasks using the upper bounds of the thread-pool. If using `synchronous=false` then Camel +will allow its reactive routing engine to use as many threads as possible, which may be available +due to sub-tasks using other thread-pools such as `CompletableFuture.runAsync` or others. + +Setting `synchronous=true` is the same behaviour is in Camel 2 which did not have the reactive routing engine. Review Comment: ```suggestion Setting `synchronous=true` is the same behavior as in Camel 2 which did not have the reactive routing engine. ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
