Welcome to Microsoft Q&A platform and thanks for posting your question here.
Azure Blob Storage could be a good choice for your use case. It is designed for storing massive amounts of unstructured data, such as your scanned images. Here are some reasons why Azure Blob Storage might be a good fit:
- Scalability: Azure Blob Storage can handle large amounts of data, so it should be able to accommodate your 3TB of scanned images.
- Data Accessibility: Users or client applications can access objects in Blob Storage via HTTP/HTTPS, from anywhere in the world. This could be useful for your web application that needs to retrieve images one by one.
- Integration with Azure Functions: If your further processing involves any serverless computation, Azure Functions can be triggered by events in Blob Storage which is one of the integrations from many.
- Preserving Directory Structure: Azure Blob Storage supports a virtual directory structure which can be used to organize blobs. This can help you preserve the directory structure of your NAS in the cloud.
- Cost-Effective: Azure Blob Storage offers different access tiers, which allow you to choose the best balance between performance and cost. For example, you could use the hot tier for frequently accessed data and the cool or archive tiers for less frequently accessed data.
However, you should also consider the following:
Data Transfer Costs: While Azure Blob Storage itself is relatively inexpensive, transferring data into and out of Azure (egress) can incur additional costs. You'll need to factor this into your cost calculations. Performance: Depending on the scale of your operations and the size of your images, you may need to consider the performance implications of retrieving and processing images from Blob Storage. Please refer
- https://learn.microsoft.com/en-us/azure/storage/blobs/storage-blobs-introduction
- https://azure.microsoft.com/en-in/pricing/details/storage/blobs/#pricing
Hope this helps.
Please 'Upvote'(Thumbs-up) and 'Accept' as answer if the reply was helpful. This will be benefitting other community members who face the same issue.
Thanks