Send task with celery signature using node name instead of queue?

Viewed 14

Currently I am using queue to specify the worker for the celery task as follow:

celery.signature("cropper.run", args=[str("/ngpointdata/NG94_118.ngt"), int(1), str("NGdata_V4_ML_Test"), True], priority="3", queue="crop").delay()

But due to the needs of the pipeline I am working on, I have multiple workers with the same queue name, so I wanted to know if it is possible to send the task to a specific worker that has the same queue name as others but different node name?

0 Answers
Related