in lambdamap/core.py [0:0]
def __init__(self, max_workers, lambda_arn):
"""
"""
lambda_config = botocore.config.Config(
retries={'max_attempts': 128},
connect_timeout=60*10,
read_timeout=60*10,
max_pool_connections=10000
)
self._client = boto3.client("lambda", config=lambda_config)
self._max_workers = max_workers
self._executor = futures.ThreadPoolExecutor(max_workers=max_workers)
self._lambda_arn = lambda_arn
return