How to actually add new jobs over network? #379
wirelessfuture
started this conversation in
General
Replies: 1 comment 2 replies
-
Yes
I would suggest building an API that accepts a representation of a job and adds it to the scheduler when called. You'll probably want to start the scheduler Async instead of blocking in this case so that you can have a router/mux and an http or gRPC listener. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Let's say I create a scheduler instance and have it running in its own docker container in blocking mode. Is there a way I can add new jobs to the scheduler over the network?
In order to do this, the process adding new jobs needs to have access to the same scheduler instance as running in Docker container right?
Does anyone have some ideas on how to make this work?
Beta Was this translation helpful? Give feedback.
All reactions