Replies: 2 comments 1 reply
-
Ahh, I thought I had searched for this, but now I just saw #442 which I guess is the same thing I'm looking for. |
Beta Was this translation helpful? Give feedback.
-
Just had an idea that you could perhaps use table partitioning (add an extra Then it should be possible to do the pinning without performance penalty (but at the cost of extra complexity). But I'm not really sure how much you can alter the query with the |
Beta Was this translation helpful? Give feedback.
-
Hi
I'm working on a project where we have many different services using a shared database. Each service has its own set of tasks (that only this service should execute) and a given service could be clustered (as in having multiple active schedulers).
I'm looking for a way to ensure that a task is executed by a particular scheduler for instance based on the scheduler name, but a more flexible way would be preferred, like perhaps a tag assigned to a task and then each scheduler could define the tags they should handle.
I could of course create multiple task tables, but that gets ugly quickly.
Would that be difficult to implement?
Beta Was this translation helpful? Give feedback.
All reactions