skip to Main Content

i am working on flask app which initiate large no of tasks in background using celery , and i am using Redis as message broker queue and SQL alchemy as celery back-end.

By default, i can see "Results" are stored in back-end in "results" column for celery_taskmeta table , but i would like to store args as well which was passed to task .

And i would like to retrieve them as well in future . Is there any way i can store them in my current back-end.

Thanks

2

Answers


  1. You can use this parameter in your settings =>

    result_extended = True
    

    Enables extended task result attributes (name, args, kwargs, worker, retries, queue, delivery_info) to be written to backend.

    Check out the link for explanation : https://docs.celeryproject.org/en/stable/userguide/configuration.html#result-extended

    Login or Signup to reply.
  2. result_backend=True does not work when loading config using app.config_from_object().

    You have to manually update config using app.conf.update(result_backend=True).

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search