From 3e8592e011314c11f51dd3eb3968fee4154bb915 Mon Sep 17 00:00:00 2001 From: Stanislav Kozlovski Date: Sat, 26 Oct 2024 14:50:16 +0200 Subject: [PATCH] MINOR: Explicitly document how the minimum GCS resumable upload chunk size is set --- docs/configs.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/configs.rst b/docs/configs.rst index e74206fd..db1d7055 100644 --- a/docs/configs.rst +++ b/docs/configs.rst @@ -376,7 +376,7 @@ AzureBlobStorageStorageConfig * Importance: medium ``gcs.resumable.upload.chunk.size`` - The chunk size for resumable upload. Must be a multiple of 256 KiB (256 x 1024 bytes). Larger chunk sizes typically make uploads faster, but requires bigger memory buffers. The recommended minimum is 8 MiB. The default is 15 MiB. + The chunk size for resumable upload. Must be a multiple of 256 KiB (256 x 1024 bytes). Larger chunk sizes typically make uploads faster, but requires bigger memory buffers. The recommended minimum is 8 MiB. The default is 15 MiB, `dictated by the GCS SDK `_ when we set it to null. * Type: int * Default: null