In which type of storage replication data is not replicated?

126    Asked by ChloeBurgess in azure , Asked on Dec 20, 2023

 In terms of Azure which is the method is characterized by no replication of the data and only relying on the primary source storage alone for managing and storing the information? 

In the context of Azure, the answer for in which type of storage replication data is not replicated is the Locally Redundant Storage (LRS).

For example, consider a scenario where you are working with Azure Blob storage and you need to specify the locally redundant storage (LRS) replication. In this particular scenario, you can get the objective by creating a storage account. Here is the example given in terms of the Azure command line interface:-

Az storage account create 
    --name
    --resource-group
    --location
    --sku Standard_LRS
    --kind SStorageV

Therefore, by specifying the “- - sku standard_ LRS” you can easily utilize locally redundant storage. Using this LRS by Azure will ensure that your data will not be replicated further across multiple regions or data centers within the region. Thus, your data would be stored in a single data center which will further enhance the redundancy within the data center, but, not replicating it anywhere.



Your Answer

Interviews

Parent Categories