Hello, I'm investigating usage of Apache Camel for "lightweight" integration tasks. By "lightweight" I mean that I want to replace some shell scripts and Makefile targets which are running as cron jobs for now. The reasons to do this are to provide better error handling and reporting mechanisms for such tasks and also to achieve near real-time requirements for system.
I'm wondering of the following setup: * Apache Camel running as daemon. * Ability to submit new routes' configuration from command line (as of CAMEL-1004 it seem Apache Camel is able to replace routes at runtime) as plain Java/Scala code files. * Apache Camel should try to compile routes and in the case of success -- replace current routes with the new ones. How it seems possible to implement and if it's reasonable at all?