etianen / django-s3-storage

Django Amazon S3 file storage.
BSD 3-Clause "New" or "Revised" License
414 stars 94 forks source link

Support S3Boto max_pool_connections setting. #148

Closed Routhinator closed 2 years ago

Routhinator commented 2 years ago

This adds support for the botocore.client.Config max_pool_connections setting. This is critical for gevent workers handling many connections in which an s3 url hit occurs.

By default the number of connections in a gevent worker is 1000, but the default connection pool max for S3Boto is 10.

etianen commented 2 years ago

Brill! I'll get this in a release ASAP!