Is there a limit to the number of files that can be stored in an Azure blob storage?

蓝咒 提交于 2019-12-08 19:53:34

问题


I have found documentation describing the limits for blob storage, including the maximum file size and blob size, but I can't find reference to whether there is a limit to the number of files that can be stored - is there a limit, or perhaps more importantly, a performance penalty when there are several hundred thousand (or million) small files stored in blob storage?


回答1:


There is no limit to the number of blobs in a storage account, aside from the 500TB limit per storage account. You won't see a performance difference when dealing with individual blobs, whether you have one blob or a million. Now, if you decide to list blobs in a container, and you have a million blobs in a container, you will certainly see a difference than listing a container with just a handful of blobs. But, with direct-access via blob name, nope: no perf difference at all.



来源:https://stackoverflow.com/questions/32545953/is-there-a-limit-to-the-number-of-files-that-can-be-stored-in-an-azure-blob-stor

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!