简体   繁体   English

Azure Blob 存储或 Azure 文件存储

[英]Azure Blob Storage or Azure File Storage

Looking for suggestions to use the right storage account in Azure.在 Azure 中寻找使用正确存储帐户的建议。 The use case is to store large number of.zip files which will have 100's of PDF files.用例是存储大量的.zip 文件,其中将包含 100 个 PDF 文件。 Application will have to upload these.zip files to the storage system and also read from this storage system for processing.应用程序必须将这些.zip 文件上传到存储系统,并从该存储系统中读取以进行处理。

Could you please suggest what is the right option to go for?您能否建议 go 的正确选项是什么? Azure Blob or Azure File Azure Blob 或 Azure 文件

Thanks in advance提前致谢

You can see examples of when to use one or the other in the documentation .您可以在文档中查看何时使用其中一种的示例。

To me this sounds like a Blob Storage scenario.对我来说,这听起来像是一个 Blob 存储场景。 Unless you need to connect this storage to VMs as a file share, I don't see a reason to use Azure Files for this.除非您需要将此存储作为文件共享连接到虚拟机,否则我认为没有理由为此使用 Azure 文件。

Azure Blob Storage or Azure Files in this scenario may come down to the method available to your application to upload/process the.zip files. Azure Blob 存储或 Azure 文件在这种情况下可能归结为您的应用程序可用于上传/处理.zip 文件的方法。 If your application is able to use the SDK or upload the file using HTTPS, then this will be the less expensive and more flexible option.如果您的应用程序能够使用 SDK 或使用 HTTPS 上传文件,那么这将是更便宜且更灵活的选项。 If your application/processes are only able to upload files via standard file protocol/commands or target a UNC path, then Azure Files would be a better fit.如果您的应用程序/进程只能通过标准文件协议/命令上传文件或以 UNC 路径为目标,那么 Azure 文件将更适合。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM