English 中文(简体)
Celery + RabbitMQ, some AMQP temporay queues not die
原标题:Celery + RabbitMQ, some AMQP temporay queues not expiring

I have a celery + rabbitmq setup with a busy django site, in the celery setting I have this config:

CELERY_RESULT_BACKEND = “amqp”

CELERY_AMQP_TASK_RESULT_EXPIRES = 5

我正在监测“监视”指挥的问候,我观察到的是,虽然大多数临时点是在几秒后被忽略的,但有些问题(指导原则)没有被删除,而名单却缓慢增长,无论有多少工人使用。

django网站确实产生大约60项任务,接受各种信息,并利用任务来消化信息。 整套安装在16个核心小服务器上,配备了大量的援助团。 这是否仍由业绩问题或奖状造成?

卡车

James

问题回答

暂无回答




相关问题
what the default max length of rabbit queue

For any given queue, the maximum length (of either type) can be defined using a policy (this option is highly recommended) or by clients using the queue s optional arguments. In the case where both ...

Retrieve messages from RabbitMQ queue(s)

I m looking to implement RabbitMQ into my PHP application, and am using the php-amqp extension. My only question is this, how do I easily query to return the contents of the queue in PHP? php-amqp ...

How to use listen on basic.return in python client of AMQP

I d like to make sure that my message was delivered to a queue. To do so I m adding the mandatory param to the basic_publish. What else should I do to receive the basic.return message if my message ...

Is AMQP production ready?

I d like to use AMQP to join two services one written in C# and other written in python. I m expecting quite large volume of messages per second. Is there any AMQP Broker that is production ready? ...

Multiple consumer one queue

Is it possible to make multiple consumers to share one single queue in RabbitMQ? I am currently using this php library to work with RabbitMQ, from what I observe, although I have 2 identical instances ...

Why use AMQP/ZeroMQ/RabbitMQ

as opposed to writing your own library. We re working on a project here that will be a self-dividing server pool, if one section grows too heavy, the manager would divide it and put it on another ...

How to wait for messages on multiple queues using py-amqplib

I m using py-amqplib to access RabbitMQ in Python. The application receives requests to listen on certain MQ topics from time to time. The first time it receives such a request it creates an AMQP ...

热门标签