What is the maximum file size that I can upload to azure blob uploadfile method

Please, I can find out what is the maximum file size for uploading to the azure memory maze using uploadfile api.

+6
source share
3 answers

Since UploadFile() writes to the Blobs block, the maximum file size is 200 GB.

Behind the scenes, UploadFile() makes calls to the Windows Azure Storage REST API. You can read information about such calls here .

+9
source

Update: As of December 2016, the maximum Blob block size increased to approximately 4.75 TB (50,000 x 100 MB blocks).

Source: https://azure.microsoft.com/en-gb/blog/general-availability-larger-block-blobs-in-azure-storage/

+4
source

It mostly depends on what type of blob you are using. Explains the general information about block blocks and page blocks .

If you use block blobs (UploadFile API):

If you are writing a block block no larger than 64 MB, you can download it completely with a single write operation. (The default vault clients are 32 MB, set using the SingleBlobUploadThresholdInBytes property.)

+1
source

Source: https://habr.com/ru/post/907558/


All Articles