Alternative for Azure Blob Storage

We are currently using Azure Blob Storage for storing documents like .json, .html and .pdf. Is there any replacement that we can use to move the documents from storage to on-premises ? Is MongoDB valid alternative?


Based on my understanding, it seems that you want to migrate document assets from Azure Blob Storage to on-premises.

Per my experience, normally consideration for three attributes of IT on-premises infrastructure which include Reliability, Availability, and Maintainability, you need to use some enterprise hardwares & softwares to support the needs, such as Disk Array, SAN switch, HA software and enterprise FileSystem like JFS with NFS.

However, if only consideration for storage hosted on X86 cluster in software, you can choose some distributed FileSystem as the on-premises storage, such as Ceph or HDFS.

Meanwhile, according to the MongoDB offical article, you can directly store these large Objects & files in MongoDB, but there are some limits of Data Size for MongoDB, please care these https://docs.mongodb.com/manual/reference/limits/#data.

To use what as on-premises storage only depend on your scenario.

链接地址: http://www.djcxy.com/p/66112.html

上一篇: 我使用Application Insights的Azure服务器的使用情况分析限制

下一篇: Azure Blob存储的替代方法