AWS Lambda urllib3 connectionpool – Connection pool is full, discarding connection

Lambda was throwing this error when using thread pool

Solution from here

https://github.com/boto/botocore/issues/619

s3_client = boto3.client(‘s3’, config=botocore.client.Config(max_pool_connections=50))

Leave a comment