Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the maximum file size which i can upload to azure blob uploadfile method

Please can i know what the maximum file size to upload to the azure storage blob using uploadfile api.

like image 853
mahesh Avatar asked Feb 03 '12 11:02

mahesh


1 Answers

Block Blobs originally had a maximum size of 200GB (with 4MB block size), and now may be up to 4.77TB (with new 100MB block size). Maximum number of blocks per blob: 50,000.

Take a look at operations on Block Blobs for more information about the REST API calls (including Put Block and Put Block List)

like image 94
David Makogon Avatar answered Oct 07 '22 13:10

David Makogon