如何同时执行两个任务

时间:2018-02-06 16:48:12

标签: python celery

我正在使用芹菜,我遇到了一个问题。

我有两个功能: 1)当程序被激活时,该功能将被激活,它将无限运行:

from celery.signals import worker_ready    

@worker_ready.connect()
def message_poll_start(sender=None, headers=None, body=None, **kwargs):
    while True:
        time.sleep(2)
        print("hello")

2)此功能每十秒钟激活一次,并在txt文件中写入日期:

@periodic_task(run_every=timedelta(seconds=10))
def last_record_time_check():
    file_text = open('file.txt', 'a')
    file_text.write("===========" + str(datetime.datetime.now()) +
                    " =============== \n\n")

最后我使用了celerydcelerybeat

第一个函数没有问题,但第二个函数根本不起作用。

[2018-02-06 16:43:17,802: INFO/MainProcess] beat: Starting...
[2018-02-06 16:43:27,947: INFO/MainProcess] Scheduler: Sending due task base.tasks.last_record_time_check (base.tasks.last_record_time_check)
[2018-02-06 16:43:37,925: INFO/MainProcess] Scheduler: Sending due task base.tasks.last_record_time_check (base.tasks.last_record_time_check)
[2018-02-06 16:43:47,926: INFO/MainProcess] Scheduler: Sending due task base.tasks.last_record_time_check (base.tasks.last_record_time_check)

1 个答案:

答案 0 :(得分:0)

看起来你的功能卡在第一个上,因为它总是处于while循环中。