-
Notifications
You must be signed in to change notification settings - Fork 12
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
Can celery-message-consumer run concurrency #18
Comments
It's just a celery worker, the answer is exactly the same as for Celery (yes it can) |
Actually I noticed your consumer is not making use of the Celery pool. This means even if you set
You can get pool in the
This would also be valid for any other type of concurrency |
@nucklehead I had the same issue right now, it seems to be the library doesn't user the workers pool and instead all of the messages are handled on the main process, which makes the |
So if this lib actually does not use the Celery worker pool, what is its use? It looks like all it does is setup a kombu consumer and then let Celery drain the connection. |
Well without concurrency it is quite worthless. Strange that celery doesn't support topic exchanges and wildcard bindings out of the box :( |
Hello,
I would like to know if celery-message-consumer can run concurrency with multiple workers, and if so, how can I do it?
Best,
The text was updated successfully, but these errors were encountered: