Celery sync nodes of differents queue in a single prompt

I'm running Celery 4.4.2 and using differents queues and nodes on same machine. My objective is to separate and organize each Django Apps process. The queues are running ok on separetly nodes.

The header example of each tasks are:

@shared_task(name = "task1_App1", bind = True, result_extended = True, queue = 'App1')
@shared_task(name = "task1_App2", bind = True, result_extended = True, queue = 'App2')

And I run 2 Celery nodes in separetly prompt with:

celery -A siteconfig worker-Q App1 -l info -n app1@%h -P gevent
celery -A siteconfig worker-Q App2 -l info -n app2@%h -P gevent

When I run a task in the node app1, it appears in the prompt running the node app2, with the message "app1 sync with app2". I want each node showing only its tasks, without sync to other node prompt. What options I can use?

I'm using Win, Python 3.7.8 and Django 2.2.

Back to Top