版本:linux
安裝:redis
運行環境:django
目錄結構:
json
運行celery,須要的幾個文件:windows
1 from __future__ import absolute_import, unicode_literals 2 import os 3 from django.conf import settings 4 from celery import Celery 5 6 7 #設置 Django 的配置文件 8 os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'test.settings') 9 10 # 建立 celery 實例 11 app = Celery('test1') 12 13 # Using a string here means the worker will not have to 14 # pickle the object when using Windows. 15 app.config_from_object('django.conf:settings') 16 17 # 搜索全部 app 中的 tasks 18 app.autodiscover_tasks(lambda: settings.INSTALLED_APPS) 19 20 @app.task(bind=True) 21 def debug_task(self): 22 print('Request: {0!r}'.format(self.request))
1 """原來的django的settings內容""" 2 3 #celery config 4 #消息中間件(使用redis),消息代理,用於發佈者傳遞消息給消費者 5 BROKER_URL = 'redis://127.0.0.1:6379' 6 #消息結果返回中間件(使用redis),用於存儲任務執行結果 7 CELERY_RESULT_BACKEND = 'redis://127.0.0.1:6379' 8 #容許的內容類型, 9 CELERY_ACCEPT_CONTENT = ['json'] 10 #任務的序列化方式 11 CELERY_TASK_SERIALIZER = 'json' 12 #任務結果的序列化方式 13 CELERY_RESULT_SERIALIZER = 'json' 14 #celery時區,定時任務使用 15 CELERY_TIMEZONE = 'Asia/Shanghai' 16 from datetime import timedelta 17 #定時任務處理,使用的schedule,裏面的task,寫上任務的「路徑」,schedule設置時間,args設置參數。 18 CELERYBEAT_SCHEDULE = { 19 'add_every_10_seconds': { 20 'task': 'app2.tasks.add', 21 'schedule': timedelta(seconds=10), 22 'args': (4,4) 23 }, 24 }
1 from __future__ import absolute_import 2 from .celery import app as celery_app 3 # 這是爲了確保在django啓動時啓動 celery
1 # -*- coding:utf-8 -*- 2 from __future__ import absolute_import 3 from auto_model_platform.celery import app 4 5 @app.task 6 def add(x, y): 7 time.sleep(30) 8 print("running...", x, y) 9 return x + y
調用tasks.py內的函數:服務器
1 from app2.tasks import add 2 3 class TestView(View): 4 def get(self, request): 5 6 """其它邏輯""" 7 8 #celery處理的其它任務(異步處理),下面這個代碼,celery會去處理,django直接執行下面的其它邏輯 9 r = add.delay(x,y) 10 task_id = r.id 11 12 """其它邏輯""" 13 14 return JsonResponse({"data":"123"})
1 from test1.celery import app 2 status = app.AsyncResult(task_id).status 3 result = app.AsyncResult(task_id).result 4 5 #狀態有這幾種狀況 6 CELERY_STATUS = { 7 'PENDING': '等待開始', 8 'STARTED': '任務開始', 9 'SUCCESS': '成功', 10 'FAILURE': '失敗', 11 'RETRY': '重試', 12 'REVOKED': '任務取消', 13 }
服務器啓動celery worker(消費者)任務,和定時任務:app