Reputation: 69
I need a suggestion on Azure Blob storage. We are using Azure blob storage heavily for various files and now we have a need to categorize these files and stored in folder structure based on certain category. so need to stored same way that we use Azure File share.
Example - Azure Storage Account A - Container A - Folder1 - File1,File4,File9 Example - Azure Storage Account A - Container A - Folder2 - File11,File7,File10 Example - Azure Storage Account A - Container A - Folder3 - File21,File8,File2
We dont want to move to file share as this will require huge efforts, various changes and Azure File share is expensive as well.
Second question is how many blob containers i can create in single storage, is there any limitations?
Please suggest...
Upvotes: 0
Views: 1178
Reputation: 2920
For folder or directory support, you can use the Azure Data Lake storage Gen2, hierarchical namespace
feature.
There is no upper limit for the number of containers or blobs in a single Storage account.
Upvotes: 1