Skip to content

AzureBlobMultipartOptions

Defined in: src/providers/cloud/AzureBlobProvider.ts:81

Multipart (staged block) upload tuning for the Azure Blob provider.

PropertyTypeDescriptionDefined in
enabled?booleanEnable staged-block uploads via Put Block + Put Block List. Defaults to true so payloads above AzureBlobMultipartOptions.thresholdBytes stream in fixed-size blocks instead of being buffered into a single PUT. Set to false to force single-shot block-blob PUTs.src/providers/cloud/AzureBlobProvider.ts:88
partSizeBytes?numberTarget block size in bytes. Defaults to 8 MiB. Maximum 4000 MiB per Azure.src/providers/cloud/AzureBlobProvider.ts:92
thresholdBytes?numberObject size threshold above which staged-block upload is used. Defaults to 8 MiB.src/providers/cloud/AzureBlobProvider.ts:90