I have 2 different Python applications using Celery connected to the same broker.
Server A has all my @tasks, but I need to execute this tasks from Server B. I cannot do the standard import tasks as it does not exist on server B.
How in Celery from server B can I run tasks from exist only on Server A?
i.e.
Server B:
from tasksFromSeverA import add
add.delay(4, 4)
Is there something in Celery that allows you send a signal to run say a task called 'Add' to the Broker?