Mule Quartz Connector: How to Use JDBC-JobStore Instead of RAMJobStore.

#ICYDK: Drawbacks of RAMJobStore

Mule internally uses RAMJobstore, so when running in an environment with multiple workers or nodes, a Quartz scheduler, by default, runs on each node as it keeps all the data in RAM.

Secondly, when the application ends (or crashes), all of the scheduling information is lost — this means RAMJobStore cannot honor the setting of “non-volatility” on jobs and triggers. https://goo.gl/Sy6tQx #DataIntegration #ML

Mule 3.9: Using Timer Interceptor [Snippet]

#ICYMI: In this article, I will show you how to calculate the flow execution time without using any custom code or logic in Mule. Using Timer Interceptor, we are able to see the execution time of a private flow in Mule logs. This is very helpful when it comes to checking the performance of your flows, especially when doing performance testing.

Using the Timer-Interceptor: https://goo.gl/L3DuFC #DataIntegration #ML