sharptooth
sharptooth

Reputation: 170499

How fast are Azure Storage changes propagated to instances?

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?

Upvotes: 0

Views: 458

Answers (1)

Steve
Steve

Reputation: 31642

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.

Upvotes: 3

Related Questions