Rahman
Rahman

Reputation: 452

How to run a task periodically in celery?

I want to run a task every 10 seconds by celery periodic task. This is my code in celery.py:

    from __future__ import absolute_import, unicode_literals
    import os
    from celery import Celery 

     os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'DjangoCelery1.settings')
     app = Celery('DjangoCelery1')
     app.config_from_object('django.conf:settings', namespace='CELERY')
     app.autodiscover_tasks()   

     @app.on_after_finalize.connect
     def setup_periodic_tasks(sender, **kwargs):
             sender.add_periodic_task(10, test.s('hello'), name='add every 10')

    @app.task
    def test(arg):
        print(arg)
        with open("test.txt", "w") as myfile:
             myfile.write(arg)

Then I run it by the following command:

celery -A DjangoCelery1 beat -l info

It seems to run and in the terminal, I give the following message:

celery beat v4.4.2 (cliffs) is starting.
__    -    ... __   -        _
LocalTime -> 2020-04-26 15:56:48
Configuration ->
    . broker -> amqp://guest:**@localhost:5672//
    . loader -> celery.loaders.app.AppLoader
    . scheduler -> celery.beat.PersistentScheduler
    . db -> celerybeat-schedule
    . logfile -> [stderr]@%INFO
    . maxinterval -> 5.00 minutes (300s)
[2020-04-26 15:56:48,483: INFO/MainProcess] beat: Starting...
[2020-04-26 15:56:48,499: INFO/MainProcess] Scheduler: Sending due task add every 10 (DjangoCelery1.celery.test)
[2020-04-26 15:56:53,492: INFO/MainProcess] Scheduler: Sending due task add every 10 (DjangoCelery1.celery.test)
[2020-04-26 15:56:58,492: INFO/MainProcess] Scheduler: Sending due task add every 10 (DjangoCelery1.celery.test)
[2020-04-26 15:57:03,492: INFO/MainProcess] Scheduler: Sending due task add every 10 (DjangoCelery1.celery.test)
[2020-04-26 15:57:08,492: INFO/MainProcess] Scheduler: Sending due task add every 10 (DjangoCelery1.celery.test)
[2020-04-26 15:57:13,492: INFO/MainProcess] Scheduler: Sending due task add every 10 (DjangoCelery1.celery.test)

But, the task is not run and there is no printed message and created text file. what is the problem?

Upvotes: 2

Views: 2185

Answers (1)

ItayB
ItayB

Reputation: 11337

This is the beat process - now you need to run another process:

celery -A tasks worker ...

so a worker could consume the tasks that you'ree triggering via beats and handle them.

Upvotes: 3

Related Questions