Celery注册任务,但Beat无法从已安装的应用程序调度任务

问题描述 投票:0回答:1

我在让Celery / Celery Beat安排我的celery.py文件中的任务以外的其他任务时遇到了问题。我可以看到任务已在“芹菜检查已注册”中注册,但是任务未按计划运行。我已经阅读了所有文档,并且碰壁了。在Windows上使用Ubuntu WSL运行Redis。

测试-每10秒运行良好,并显示在我的shell中PayClosedLines-已注册,但在运行芹菜工人时不会出现在外壳中。

/ proj / proj / celery.py

from __future__ import absolute_import
import os
from celery import Celery
from django.apps import apps


os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'mysite.settings')
app = Celery('mysite')

app.config_from_object('django.conf:settings')
app.autodiscover_tasks(lambda: [n.name for n in apps.get_app_configs()])


@app.task(bind=True)
def debug_task(self):
    print('Request: [0!r}'.format(self.request))


@app.on_after_configure.connect
def setup_periodic_tasks(sender, **kwargs):
    sender.add_periodic_task(10.0, test.s('test'), name='add every 10')
    sender.add_periodic_task(10.0, )
    sender.add_periodic_task(30.0, test.s(), expires=10)


@app.task
def test(arg):
    print(arg)


'''
proj/proj/settings.py
BROKER_URL = 'redis://localhost:6379'
CELERY_RESULT_BACKEND = 'redis://localhost:6379'
CELERY_ACCEPT_CONTENT = ['application/json']
CELERY_TASK_SERIALIZER = 'json'
CELERY_RESULT_SERIALIZER = 'json'
CELERY_TIMEZONE = 'UTC'


from datetime import timedelta

CELERY_BEAT_SCHEDULE = {
    'Payout bets every 10 seconds': {
        'task': 'UFCBetting.tasks.PayClosedLines',
        'schedule': timedelta(seconds=10.0),
    },
}
CELERY_IMPORTS = ('UFCBetting.tasks',)

proj / app / task.py

from __future__ import absolute_import, unicode_literals
from .MyBookieTools import get_odds
from .models import BettingLines, Bets, CustomUser

from celery import task, shared_task


@task(name='UpdateLinesTable')
def UpdateLinesTable():
    odds = get_odds()
    for odd in odds:
        bl = BettingLines()
        bl.fighter = odd[0]
        bl.line = odd[1]
        bl.save()


@shared_task
def PayClosedLines():
    unpaid_lines = BettingLines.objects.filter(result="W").exclude(payment_status=True)
    print(unpaid_lines)
    for line in unpaid_lines:
        print(line)
        if line.result == "W":
            unpaid_bets = Bets.objects.filter(line_id=line.id)
            print(unpaid_bets)
            for bet in unpaid_bets:
                user = CustomUser.objects.get(id=bet.placed_by_id)
                user.balance = user.balance + line.payout(amount=bet.bet_amount)
                user.save()
        line.payment_status = 1
        line.save()
    print("Closed lines paid.")
python django celery celerybeat
1个回答
0
投票

板球 ...这就是问题所在。我安装了django-celery-beat,所以我需要像这样启动我的beat worker。菜鸟太多了,不知道为什么,但这有效。

celery -A mysite beat -l info --scheduler django_celery_beat.schedulers:DatabaseScheduler

而不是通常的

celery -A mysite beat
© www.soinside.com 2019 - 2024. All rights reserved.