Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[QUESTION] Is it possible to run a chord with a chunks as header and another task as result, both running on different queues #8904

Open
gautierrog opened this issue Mar 10, 2024 · 0 comments

Comments

@gautierrog
Copy link

Hello,

I have an issue with my chord. Here is in pseudocode:

@app.task(queue="a")
def a(p1, p2):
  ...
@app.task(queue="b")
def b(*args, **kwargs):
  ...

chunks = a.chunks(([1,2],[2,3],), 1)
g = chunks.group()

c = chord(g)(b.s())

This code will make a tasks run on default delery queue. How can I indicate that I want these tasks running on a queue?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant