gpt4 book ai didi

python - 使用 Celery Canvas,chord() 和 chain(group(), task) 有什么区别

转载 作者:太空宇宙 更新时间:2023-11-03 15:07:14 28 4
gpt4 key购买 nike

我们正在使用 Celery 实现工作流程。首先,我们需要并行运行一些任务,当它们全部完成后,我们需要运行一个任务。

看来我们可以使用和弦,或者组和链:

chord(tasks, task)

对比

group(tasks) | task

这两者之间的确切区别是什么?他们似乎在做同样的事情。

最佳答案

Canvas docs说:

Chaining a group together with another task will automatically upgrade it to be a chord:

 >>> c3 = (group(add.s(i, i) for i in xrange(10)) | xsum.s())
>>> res = c3()
>>> res.get()
90

关于python - 使用 Celery Canvas,chord() 和 chain(group(), task) 有什么区别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31179336/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com