Re: Async Performance

2021-10-26 Thread Arvid Heise
Hi Sanket, if you have a queue of 1000, then 1000 will be used in AsyncIO. Memory doesn't matter. What you need to double-check is if your async library can handle that many elements in parallel. The AsyncHttpClient should have a thread pool that effectively will put an upper limit on how many el

Async Performance

2021-10-25 Thread Sanket Agrawal
Hello Everyone, I am using a series of 6 Async Operators in my application. Each operator is using AsyncHttpClient to make some external API call. Each Async Operator makes only one call to external API for a message. Capacity is set t 1000 for each parallelism. Approximately, we are getting re