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
current fast-agave tasks implementation read a message from SQS queue and then tries to create a new task (asyncio coroutine). It works ok if there is a relative little amount of messages in the queue. But if there is thousands of messages fast-agave tries to create a new task for each message.
This is a bug that can lead to poor HTTP requests performance because the event loop will become flooded with tasks from the queue.
The text was updated successfully, but these errors were encountered:
current fast-agave tasks implementation read a message from SQS queue and then tries to create a new task (asyncio coroutine). It works ok if there is a relative little amount of messages in the queue. But if there is thousands of messages fast-agave tries to create a new task for each message.
This is a bug that can lead to poor HTTP requests performance because the event loop will become flooded with tasks from the queue.
The text was updated successfully, but these errors were encountered: