Skip to content

Commit

Permalink
Adding base 50 max_pool_connections for wrangler (#95)
Browse files Browse the repository at this point in the history
  • Loading branch information
ashsrobbins authored Aug 30, 2024
1 parent 1081ddc commit 2bb716b
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/braingeneers/utils/s3wrangler/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@
from awswrangler import config
from awswrangler.s3 import *
import braingeneers
import botocore

awswrangler.config.botocore_config = botocore.config.Config(
retries={"max_attempts": 10},
connect_timeout=20,
max_pool_connections=50)

braingeneers.set_default_endpoint()

0 comments on commit 2bb716b

Please sign in to comment.