Apache Camel 2.12 - Even Easier Cron Scheduled Routes
Join the DZone community and get the full member experience.
Join For FreeIn the upcoming release of Apache Camel 2.12 we have introduced an SPI that
allows users to plugin different schedulers for schedule-based consumers.
The motivation for this feature came from the fact that some Camel components have scheduled consumers. Usually file and FTP consumers. By default, they use the
scheduler from the JVM that can schedule based on a fixed period. Now, with the SPI, we allow a different scheduler to be used instead.
We have two cron-based schedulers ready out-of-box in the
camel-quartz2 and camel-spring components. So pick your favorite, or
dive in and build your own scheduler.
CRON expression |
Example with Spring:
<route> <from uri="file:inbox?scheduler=spring&scheduler.cron=0/10+6-18+*+*+MON-FRI"/> ...
Example with Quartz:
<route> <from uri="file:inbox?scheduler=quartz2&scheduler.cron=0/10+6-18+*+*+MON-FRI"/> ...
To implement a similar solution in older releases of Camel, you would need to use sort in order to use a route policy. There is a cron-based route policy that can be used to setup cron expressions when a route should be started and when it should be stopped. With this new functionality in Camel 2.12, it's even easier to just define the cron expression in the endpoint URI directly.
Published at DZone with permission of Claus Ibsen, DZone MVB. See the original article here.
Opinions expressed by DZone contributors are their own.
Comments