-
-
Notifications
You must be signed in to change notification settings - Fork 192
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Separating Task Scheduling and Execution #546
Comments
This is possible as far as I know, if you don't Workers can use
For this one, i am not sure, as far as I have used the library, as soon as something is not |
That's great. Are you aware if there is a feature to have multiple job queues and dedicated executors for each of them? |
I edited my post to answer that :) @Blejwi |
Thanks, I'll play with the configuration and verify if that's possible. |
Hi,
I’m wondering if it’s possible to separate the scheduling and processing of tasks.
In my scenario, I have an API instance responsible for scheduling tasks, and I would like to have multiple worker instances dedicated to executing those scheduled tasks. This is to keep the API instance under a lighter load.
Additionally, is it possible to configure the executor to pick up only specific types of tasks? For example, I’d like to set up a separate instance for heavy, long-running tasks and scale those independently from the instances handling short tasks.
Thanks in advance!
The text was updated successfully, but these errors were encountered: