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 }}
This repository has been archived by the owner on Aug 30, 2023. It is now read-only.
We are using AioHttpTransport when sending errors to Sentry. But (based on the documentation here "Each new message spawns it owns asyncio.Task, amount of them is not limited") if the application keeps sending large amount of error messages, this will cause memory leak and eventually the box will run out of memory. But if we use QueuedAioHttpTransport, the extra errors will simply get omitted if the queue is full.
I am wondering what's the best way to handle this issue?
The text was updated successfully, but these errors were encountered:
We are using
AioHttpTransport
when sending errors to Sentry. But (based on the documentation here "Each new message spawns it owns asyncio.Task, amount of them is not limited") if the application keeps sending large amount of error messages, this will cause memory leak and eventually the box will run out of memory. But if we useQueuedAioHttpTransport
, the extra errors will simply get omitted if the queue is full.I am wondering what's the best way to handle this issue?
The text was updated successfully, but these errors were encountered: