Book Image

Implementing Azure Solutions - Second Edition

By : Florian Klaffenbach, Markus Klein, Sebastian Hoppe, Oliver Michalski, Jan-Henrik Damaschke
Book Image

Implementing Azure Solutions - Second Edition

By: Florian Klaffenbach, Markus Klein, Sebastian Hoppe, Oliver Michalski, Jan-Henrik Damaschke

Overview of this book

<p>Microsoft Azure offers numerous solutions that can shape the future of any business. However, the major challenge that architects and administrators face lies in implementing these solutions. </p><p>Implementing Azure Solutions helps you overcome this challenge by enabling you to implement Azure Solutions effectively. The book begins by guiding you in choosing the backend structure for your solutions. You will then work with the Azure toolkit and learn how to use Azure Managed Apps to share your solutions with the Azure service catalog. The book then focuses on various implementation techniques and best practices such as implementing Azure Cloud Services by configuring, deploying, and managing cloud services. As you progress through the chapters, you’ll learn how to work with Azure-managed Kubernetes and Azure Container Services. </p><p>By the end of the book, you will be able to build robust cloud solutions on Azure.</p>
Table of Contents (14 chapters)

Read-access geo-redundant storage (RA-GRS)

Replication to a secondary geographic location is provided with RA-GRS. The customer holds read access to the data, maintained in the secondary location. Access from the primary and the secondary region is possible. RA-GRS is the default option for your storage account on creation.

The following is an overview of the redundancy options in Azure Storage:

Replication strategy

LRS

ZRS

GRS

RA-GRS

Data is replicated across multiple datacenters

No

Yes

Yes

Yes

Data can be read from the secondary location as well as from the primary location

No

No

No

Yes

Number of copies of data maintained on separate nodes

3

3

6

6

Source: https://docs.microsoft.com/en-us/azure/storage/storage-redundancy

For our example, we select Locally-redundant storage (LRS), as high durability is not necessary in our example. Let's look at the current settings:

Storage account settings

In the example, an existing resource...