Is it possible to use multiple threadpools to run the different types of scheduled tasks? #438
-
Is it possible to have separate thread pools for separate type of tasks. For example I have a looot of one time tasks scheduled with a short validity period and recurring tasks that may be used to schedule long running tasks or trigger some job etc. I think having separate thread pools would make sure each have a certain number of dedicated threads. Does this make sense :-) ? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 6 replies
-
Yeah, that is a valid use-case and could be risky using the same table. There is a feature-request for task-priority that likely would solve this, but not sure when that will land. For now I have recommended using two separate tables. |
Beta Was this translation helpful? Give feedback.
Yeah, that is a valid use-case and could be risky using the same table. There is a feature-request for task-priority that likely would solve this, but not sure when that will land. For now I have recommended using two separate tables.