Quarkus Scheduler: Thread per method? #33125
Replies: 3 comments 4 replies
-
/cc @mkouba (scheduler) |
Beta Was this translation helpful? Give feedback.
-
This is using Quarkus 2.16.6 Final btw |
Beta Was this translation helpful? Give feedback.
-
It depends. A thread is never reserved or allocated for a scheduled method. Instead, the default executor for blocking tasks is used. In general, the core thread pool is used, but there are some differences between the production and test/dev modes. Note that non-blocking scheduled methods are executed on the Vert.x event loop. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Using
quarkus-scheduler
I have 4 methods annotated with@Scheduled
like the one below.My question is, how many threads are being used or are allocated for all 4 scheduled methods?
Beta Was this translation helpful? Give feedback.
All reactions