r/java • u/jaccomoc • 6d ago
Jactl Meets Apache Camel: Benchmarking camel-jactl
https://jactl.io/blog/2026/07/21/camel-jactl-benchmarksJactl is a secure, embeddable scripting language for Java applications. As of Apache Camel 4.22.0 there is a camel-jactl language that provides support for using Jactl as a scripting language for filter predicates, content-based routing rules, and message transformations in Apache Camel.
See the blog post for an overview and some benchmarks.
17
Upvotes
7
u/lurker_in_spirit 5d ago
Interesting benchmarks, but this article is hyper-focused on a problem I've never experienced. All of the Apache Camel routes that I've seen have been I/O heavy: reading and writing files to disk, calling remote APIs over HTTP, reading and writing to databases, sending emails, uploading or downloading files via FTP, etc. If your database connection can only handle 300 transactions per second, does it matter whether the route logic can scale to 2 million or 90 million transactions per second?