You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Message creation (e.g. choosing which queue to send to)
Message serialization (e.g. converting the message body to a set of bytes)
Message sending (e.g. here's a dict of headers and a bundle of bytes, please put them into your broker specific format and send them)
There's also something in there about ensuring that that queue exists already and such. The tl;dr is that it is hard to push any async concepts into Celery without copying huge portions of the internals, at least as far as I've been able to see. (Note that this comment is about using async. code as a producer -- sending tasks and looking at results -- not about using it for a worker. I'm not 100% sure what this issue is about.)
https://github.com/erdewit/distex this could be a good candidate
The text was updated successfully, but these errors were encountered: