Python based asynchronous workflow modules : What is difference between celery workflow and luigi workflow?

后端 未结 2 972
借酒劲吻你
借酒劲吻你 2021-02-05 01:25

I am using django as a web framework. I need a workflow engine that can do synchronous as well as asynchronous(batch tasks) chain of tasks. I found celery and luigi as batch pro

2条回答
  •  攒了一身酷
    2021-02-05 02:04

    (I'm the author of Luigi)

    Luigi is not meant for synchronous low-latency framework. It's meant for large batch processes that run for hours or days. So I think for your use case, Celery might actually be slightly better

提交回复
热议问题