How fast are Azure Storage changes propagated to instances?

时光怂恿深爱的人放手 提交于 2019-12-13 06:12:17

问题


Suppose I have several role instances and one instance writes to Azure Storage (blob, tables or queue - whatever). How fast will other instances be able to see and read those changes?


回答1:


There is no propagation of data from Azure Storage to Role Instances. When you request or persist data from storage you're making an OData request over the network in the background to the Azure Storage services.

Because the data is stored in a central location there is only one authority for the information. The instant that authority is updated, clients will immediately receive the updated data when it is requested.



来源:https://stackoverflow.com/questions/6517263/how-fast-are-azure-storage-changes-propagated-to-instances

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!