Question with Queues and Processors #2545
Unanswered
nivekithan
asked this question in
Q&A
Replies: 1 comment
-
Not sure I understand your question, but only the service implementing the processor will work on the job and the service adding the jobs do not need to wait for the job to be processed. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have a question regarding Queues and Processors.
So lets say we two services. One is the main backend service and another is Job Processor service. Backend service listens to requests and creates the job and puts into the queue using
queue.add
method.Whereas Job Processor service intializes both
queue
andprocessors
for thoses queues.In this case lets say we got a request which creates 100 Jobs, is there any gurantee that all Jobs will be consumed only by
Job Processor
service ( if processor is not facing any other kind of problem) and thatBackend
service will not hold onto certain jobs waiting forProcessors
to come online in its instance ?Thanks
Beta Was this translation helpful? Give feedback.
All reactions