Replies: 1 comment 5 replies
-
This is a bit light on details, so I'm just throwing something out there based on my "gut": Garbage Collection If there is any behaviour that starts after a while and can be described as "pulsating" I'm looking into when GC is happening as a first step. You might be doing some IO or HttpClient anti-patterns that cause very aggressive GC behavour. |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello everyone,
I have faced with very strange situation, which causes constant outgoing traffic drops after some time of running .net console app.
I do use single instance of HttpClient and do send GET requests to different servers constantly using SendAsync + HttpRequestMessage. But after some time i see that it starts getting constant traffic drops.
Any idea what may cause it? Is there any specific cases/conditions when you able to get such/similar issue?
similar Python script using asyncio and aiohttp produces smooth constant traffic without jumps and drops.
Thank you for any idea, explenation, details, observation.
Beta Was this translation helpful? Give feedback.
All reactions