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
Now that Django ORM supports asyncio, can we move consumers to it? since most of our stuff is IO blocking and better concurrency with lower resource usage?
The text was updated successfully, but these errors were encountered:
Gevent is an issue due to blocking issues we've seen with redis(and in turn launchdarkly redis) connections. The latency goes down a lot by changing to prefork on celery. On other trials redis client blocks/hangs also and gets progressively slower on green threads. We need to investigate this further independently of eventbusk.
Now that Django ORM supports asyncio, can we move consumers to it? since most of our stuff is IO blocking and better concurrency with lower resource usage?
The text was updated successfully, but these errors were encountered: