**Description** Quartz supports clustered JobStores that use JDBC and locks to synchronize between nodes: [Configure Clustering with JDBC-JobStore](http://www.quartz-scheduler.org/documentation/quartz-2.3.0/configuration/ConfigJDBCJobStoreClustering.html) The current Quartz extension has the RAMJobStore hardwired so this cannot be used. **Implementation ideas** As discussed here: https://groups.google.com/forum/#!searchin/quarkus-dev/quartz%7Csort:date/quarkus-dev/XarQoQ8BLp4/kARhAbM9BAAJ the current extension can consider using also the JDBCJobStore, or another extension can be written for that. **Use case** Our Quarkus application now uses @Scheduled to synch from external data. Having this running on multiple node can be an issue.