芹菜在 Django 中不起作用,只是等待(待定)



我正在尝试找到芹菜的工作原理。 我有一个项目,大约有 10 个应用程序,现在我想使用芹菜。

setting.py:

CELERY_BROKER_URL = 'amqp://rabbitmq:rabbitmq@localhost:5672/rabbitmq_vhost'
CELERY_RESULT_BACKEND = 'redis://localhost'

我在 RabbitMQ 中创建了一个用户,其中包含以下信息:username: rabbitqpassword:rabbitmq。 然后我创建了一个名为rabbitmq_vhost的 vhost,并为其添加rabbitmq权限。 我认为一切都很好,因为关于RabbitMQ的所有错误都消失了。

这是我 test.py:

from .task import when_task_expiration
def test_celery():
result = when_task_expiration.apply_async((2, 2), countdown=3)
print(result.get())

task.py:

from __future__ import absolute_import, unicode_literals
import logging
from celery import shared_task
from proj.celery import app
@app.task
def when_task_expiration(task, x):
print(task.id, 'task done')
return True

celery.py:

from __future__ import absolute_import, unicode_literals
import os
from celery import Celery
# set the default Django settings module for the 'celery' program.
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'proj.settings')
app = Celery('proj')
# Using a string here means the worker doesn't have to serialize
# the configuration object to child processes.
# - namespace='CELERY' means all celery-related configuration keys
#   should have a `CELERY_` prefix.
app.config_from_object('django.conf:settings', namespace='CELERY')
# Load task modules from all registered Django app configs.
app.autodiscover_tasks()

现在,当我在Python shell中调用test_celery()时,它是挂起的.我尝试替换@shared_task@app.task(bind=True)但注意到更改.即使我尝试使用.delay()而不是apply_async((2, 2), countdown=3),再次什么也没发生。

我正在尝试使用芹菜在我过去问的这个问题的特定时间调用函数。谢谢。

您很可能忘记运行至少一个 Celery 工作进程。为此,请在 shell 中执行以下命令:celery worker -A proj.celery -c 4 -l DEBUG(这里我假设您的 Celery 应用程序是在 proj/celery 中定义的.py正如您在那里Celery('proj')的那样)

相关内容

  • 没有找到相关文章

最新更新