Add default values in .conf files for s3 multipart

This commit is contained in:
Alex Burlacu 2023-07-14 14:24:10 +03:00
parent bae4886412
commit f6ae803110
3 changed files with 6 additions and 0 deletions

View File

@ -103,6 +103,8 @@
boto3 { boto3 {
pool_connections: 512 pool_connections: 512
max_multipart_concurrency: 16 max_multipart_concurrency: 16
multipart_threshold: 8388608 # 8MB
multipart_chunksize: 8388608 # 8MB
} }
} }
google.storage { google.storage {

View File

@ -121,6 +121,8 @@ sdk {
boto3 { boto3 {
pool_connections: 512 pool_connections: 512
max_multipart_concurrency: 16 max_multipart_concurrency: 16
multipart_threshold: 8388608 # 8MB
multipart_chunksize: 8388608 # 8MB
} }
} }
google.storage { google.storage {

View File

@ -105,6 +105,8 @@ sdk {
boto3 { boto3 {
pool_connections: 512 pool_connections: 512
max_multipart_concurrency: 16 max_multipart_concurrency: 16
multipart_threshold: 8388608 # 8MB
multipart_chunksize: 8388608 # 8MB
} }
} }
google.storage { google.storage {