我可以上传到 azure blob uploadfile 方法的最大文件大小是多少
请我知道使用 uploadfile api 上传到 azure 存储 blob 的最大文件大小是多少。
Please can i know what the maximum file size to upload to the azure storage blob using uploadfile api.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
随着时间的推移,最大上传大小有所增加。根据此 MS 文档 从 2021 年起,最大 blob 大小(通过 Put Block List)约为 190.7 TiB (4000 MiB X 50,000 块)适用于版本 2019-12-12 及更高版本。引用的文档也给出了其他版本的大小限制。
Over time, the maximum upload size has increased. According to this MS document from 2021, the Maximum blob size (via Put Block List) is approximately 190.7 TiB (4000 MiB X 50,000 blocks) for Version 2019-12-12 and later. The referenced doc gives size limits for other versions as well.
块 Blob 最初的最大大小为 200GB(块大小为 4MB),现在可能高达 4.77TB(块大小为 100MB)。每个 blob 的最大块数:50,000。
查看块 Blob 上的操作 有关 REST API 调用的更多信息(包括
Put Block
和Put Block List
)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
andPut Block List
)更新:截至 2016 年 12 月,块 Blob 的最大大小已增加到大约 4.75TB(50,000 x 100MB 块)。
来源:https:// azure.microsoft.com/en-gb/blog/general-availability-larger-block-blobs-in-azure-storage/
Update: as of December 2016 the maximum size of a Block Blob has increased to roughly 4.75TB (50,000 x 100MB blocks).
Source: https://azure.microsoft.com/en-gb/blog/general-availability-larger-block-blobs-in-azure-storage/
这基本上取决于您使用的 blob 类型。 了解块 Blob 和页面 Blob 详细解释了所有内容。
如果您使用块 blob(UploadFile API):
It basically depends on what type of blob you are using. Understanding Block Blobs and Page Blobs explains everything in detail.
If you are using block blobs (UploadFile API):