Consider a scenario in which 4 clients have to set 100 tasks in turn.
In the case of the amqp backend amqp it will create 400 unique queues and store the results in these queues.
In the case of the rpc backend rpc it will create only 4 queues (1 for each client) and save 100 results in each queue, which will lead to a significant increase in productivity, since there is no overhead for creating queues for each task.
For this reason, amqp as a backend is deprecated and will be completely removed in the next version.
rpc backend uses the same amqp publish / consume mechanism . If you set broker_use_ssl to True , then it will use SSL.
source share