我可以上传到 azure blob uploadfile 方法的最大文件大小是多少

发布于 2025-01-01 22:21:37 字数 58 浏览 4 评论 0原文

请我知道使用 uploadfile api 上传到 azure 存储 blob 的最大文件大小是多少。

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

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入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.

愚人国度 2025-01-08 22:21:37

块 Blob 最初的最大大小为 200GB(块大小为 4MB),现在可能高达 4.77TB(块大小为 100MB)。每个 blob 的最大块数:50,000。

查看块 Blob 上的操作 有关 REST API 调用的更多信息(包括 Put BlockPut 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 and Put Block List)

玩物 2025-01-08 22:21:37

更新:截至 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/

凑诗 2025-01-08 22:21:37

这基本上取决于您使用的 blob 类型。 了解块 Blob 和页面 Blob 详细解释了所有内容。

如果您使用块 blob(UploadFile API):

如果您正在写入大小不超过 64 MB 的块 blob,则可以通过单个写入操作将其完整上传。 (存储客户端默认为 32 MB,可使用 SingleBlobUploadThresholdInBytes 属性进行设置。)

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):

If you are writing a block blob that is no more than 64 MB in size, you can upload it in its entirety with a single write operation. (Storage clients default to 32 MB, settable using the SingleBlobUploadThresholdInBytes property.)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文