From 7f9a148285cb4c29220ec774fda9b8f025016359 Mon Sep 17 00:00:00 2001 From: pollfly <75068813+pollfly@users.noreply.github.com> Date: Thu, 20 Jul 2023 15:24:05 +0300 Subject: [PATCH] Add boto3 multipart config options (#618) --- docs/configs/clearml_conf.md | 21 +++++++-------------- 1 file changed, 7 insertions(+), 14 deletions(-) diff --git a/docs/configs/clearml_conf.md b/docs/configs/clearml_conf.md index 6ef8bcb7..49739b39 100644 --- a/docs/configs/clearml_conf.md +++ b/docs/configs/clearml_conf.md @@ -762,20 +762,13 @@ metrics, network, AWS S3 buckets and credentials, Google Cloud Storage, Azure St **`sdk.aws.boto3`** (*dict*) -* Dictionary of AWS Storage, Boto3 options. - ---- - -**`sdk.aws.boto3.pool_connections`** (*integer*) - -* For AWS Boto3, The maximum number of Boto3 pool connections. - ---- - -**`sdk.aws.boto3.max_multipart_concurrency`** (*integer*) - -* For AWS Boto3, the maximum number of threads making requests for a transfer. - +* Dictionary of AWS Storage, Boto3 options. The keys include: + * `max_multipart_concurrency` (*integer*) - The maximum number of threads making requests for a transfer. + * `multipart_threshold` (*integer*) - The transfer size threshold. If size above threshold, Boto3 will automatically use multipart uploads, downloads, and copies (in bytes) + * `multipart_chunksize` (*integer*) - The size of each part of a multipart transfer (in bytes). + * `pool_connections` (*integer*) - The maximum number of Boto3 pool connections. + +
##### sdk.aws.s3