I have one task that checks the speed of a URL, but I want this to be done by several celery workers on different servers. I want the same URL to be checked by several employees.
How can i do this?
If you can set ignore_result=True . Try Broadcast
ignore_result=True
If you could not, check the "Routing Tasks" and send the task several times in different queues, for example, for different IDCs and corresponding employees.
Source: https://habr.com/ru/post/915984/More articles:How to copy bytearray buffer in python? - pythoncocos2d-x how to read plist in an array - iosMaven clean install equals mvn clean and after installing mvn? - javaimproving friend list query: counting common friends - phpIntegration of prolog into other environments - prologWhy can't I split datetime.timedelta into a float? - pythonScripting specific records in SQL Server - sqlWith iOS, how to check if a URL is empty - urlCreating a huge image in C # - c #SQL How to create a table with values ββin the form of columns and a new format? - sqlAll Articles