首页 > 解决方案 > Microsoft Azure - Multi region access blob storage

问题描述

for software deployment reasons I want to set up a blob storage on Azure. I need to provide software packages not only for Europe, but for the US and parts of Asia as well. I do not want to set up 3 different blob storages (for each area), but one single blob storage, that can be accessed from all locations - ensuring low latency etc. Is this possible with Microsoft Azure?

标签: azureazure-blob-storage

解决方案


你有两个选择:

  • a) 具有从一个存储帐户复制到的不同区域存储帐户。这样你就有了 1-write 帐户,但 3-read 帐户。所以是的,需要读取数据的人有不同的设置来配置
  • b) 您只使用一个存储帐户。但是你在它前面放了一个CDN (内容分发网络)。这将缓存靠近客户端的数据。只需为您的客户端指定此连接 URL。全世界都一样

(从聊天中复制的无声回答)


推荐阅读