AzureBlobMultipartOptions
Defined in: src/providers/cloud/AzureBlobProvider.ts:81
Multipart (staged block) upload tuning for the Azure Blob provider.
Properties
Section titled “Properties”| Property | Type | Description | Defined in |
|---|---|---|---|
enabled? | boolean | Enable 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? | number | Target block size in bytes. Defaults to 8 MiB. Maximum 4000 MiB per Azure. | src/providers/cloud/AzureBlobProvider.ts:92 |
thresholdBytes? | number | Object size threshold above which staged-block upload is used. Defaults to 8 MiB. | src/providers/cloud/AzureBlobProvider.ts:90 |