0
votes

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?

1
for read access: yes (more or less). for write: nopesilent
@silent Thank you for answering! I see you are a cloud solution architect for Microsoft, is there a way to get in contact with you for further information?nEWBOB
if you make your question a bit more detailed around what your scenario is, I can try to answer it.silent
@silent So I work at a company that wants to change the way they approach software deployment. We use Ivanti for the package distribution and want to link Ivanti and Azure. We have offices in US, EU and ASIA, with EU as the main location. At first we thought we had to create 3 blob storages in the azure storage account, and then mirror them. But we want only ONE entry point for all configuration and stuff, so the task "where will I download the packages from" will be executed automatically. For example if the user is in US Azure will automatically use a server in the US for low latency.nEWBOB
@silent hope I could specify it good enoughnEWBOB

1 Answers

0
votes

You have two options:

  • a) have different regional storage accounts that you replicate into from one storage account. This way you have 1-write account but 3-read accounts. So yes, the people who need to read the data have different settings to configure
  • b) you only use one storage account. but you put a CDN (content delivery network) in front of it. This will cache data close to the clients. only this connection URL will need to be specified for your clients. It is the same all around the globe

(Answer from silent copied from chat)