-
Hello, While this is a aioboto3 question I reckon this is more aiobotocore related since I'm called the lambda client. If it is the wrong place please say so and i'll remove it. Take for example the following code:
The code runs fine. For every argument in list_of_arguments an invoke is made. I've already tried seperating the invoke call and the read call in seperate async functions but that doesn't really change anything. Is there some hardcoded limit in aiobotocore that limits async calls to the lambda invoke when it's "RequestResponse"? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
ya, by default both botocore and aiobotocore has a 10 connection pool limit. you can increase this as needed via the Config/AioConfig object |
Beta Was this translation helpful? Give feedback.
ya, by default both botocore and aiobotocore has a 10 connection pool limit. you can increase this as needed via the Config/AioConfig object