You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently this is impossible to do with the quarkus scheduler because the QuartzSchedulerImpl.java only allows you to pass unsupported props that have not already been set by quartz itself.
See:
Description
I would like to be able to tell quartz to use a VirtualThreadPool similar to this PR for my one off jobs.
Example of one off job:
Currently this is impossible to do with the quarkus scheduler because the QuartzSchedulerImpl.java only allows you to pass unsupported props that have not already been set by quartz itself.
See:
quarkus/extensions/quartz/runtime/src/main/java/io/quarkus/quartz/runtime/QuartzSchedulerImpl.java
Lines 639 to 643 in 9943ebd
The threadpool class is already set here:
quarkus/extensions/quartz/runtime/src/main/java/io/quarkus/quartz/runtime/QuartzSchedulerImpl.java
Line 582 in 9943ebd
So when I try to override it with application properties, it still users the built in SimpleThreadPool:
Implementation ideas
Expose the ability to change the threadpool impl.
The text was updated successfully, but these errors were encountered: