Replies: 2 comments 5 replies
-
/cc @machi1990, @mkouba |
Beta Was this translation helpful? Give feedback.
4 replies
-
Hi Team, We are using Quartz with property org.quartz.jobStore.driverDelegateClass where we are giving our custom delegate class. We are planning to migrate to Quarkus but in Quarkus quartz above property is missing and i couldn't find any way to use custom delegate class. Please suggest. @machi1990 |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
I'm puzzled with how Quarkus wraps Quartz, in particular for JobStoreCMT.
Quartz provides these configurations: http://www.quartz-scheduler.org/documentation/quartz-2.3.0/configuration/
And Quarkus provides these: https://quarkus.io/guides/quartz#quartz-configuration-reference
Maybe first a quick question to check an assumption:
If we are using Quarkus/Quartz, should we only use the Quarkus configuration options?
And, more specifically:
Quartz, where the store-type is "JobStoreCMT" requires two data-sources: http://www.quartz-scheduler.org/documentation/quartz-2.3.0/configuration/ConfigJobStoreCMT.html -- Quarkus provides "quarkus.quartz.datasource" (singular) -- and suggests that the default datastore shall suffice. (confusingly, it also cites the 'db' store, which I guess really means any store-type except 'ram'?).
Basically, if I'm using Quarkus/Quartz, with store-type as "jdbc-cmt", what is the default behaviour? How is the dual managed/unmanaged datastores handled? And, what things do I totally need to configure, to wire it up correctly?
Bill
Beta Was this translation helpful? Give feedback.
All reactions