我有Django 2.0
项目工作正常,它与Celery 4.1.0
集成,我使用jquery将ajax请求发送到后端但我刚刚意识到它的加载由于芹菜的一些问题而无休止地加载。
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', 'converter.settings')
app = Celery('converter', backend='amqp', broker='amqp://guest@localhost//')
# 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()
@app.task(bind=True)
def debug_task(self):
print('Request: {0!r}'.format(self.request))
from __future__ import absolute_import, unicode_literals
from celery import shared_task
@shared_task(time_limit=300)
def add(number1, number2):
return number1 + number2
class AddAjaxView(JSONResponseMixin, AjaxResponseMixin, View):
def post_ajax(self, request, *args, **kwargs):
url = request.POST.get('number', '')
task = tasks.convert.delay(url, client_ip)
result = AsyncResult(task.id)
data = {
'result': result.get(),
'is_ready': True,
}
if result.successful():
return self.render_json_response(data, status=200)
当我向Django应用程序发送ajax请求时,它会无休止地加载,但是当终止Django服务器时,我运行celery -A demoproject worker --loglevel=info
,这就是我的任务正在运行。
问题 我如何自动执行此操作,以便在运行Django项目时,当我发送ajax请求时,我的celery任务会自动生效?
答案 0 :(得分:1)
如果您使用的是开发环境,则必须手动运行芹菜工作程序,因为它不会在后台自动运行,以便处理队列中的作业。因此,如果您希望拥有完美的工作流程,则需要运行Django默认服务器和芹菜工作者。如文档中所述:
在生产环境中,您需要在后台运行worker作为守护程序 - 请参阅Daemonization - 但是对于测试和开发,能够通过使用celery worker manage命令启动工作程序实例很有用因为你使用Django的manage.py runserver:
celery -A proj worker -l info
您可以阅读他们的守护程序文档。
http://docs.celeryproject.org/en/latest/userguide/daemonizing.html