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)

Roles

Let us continue with the next diagram and the other elements of the Cloud Services architecture. These elements are called roles and they are created by the service definition file and the code assets.

Each role is an instance of the Cloud Service itself (or at least a part of it). In your planning of the Azure Cloud Service, you should therefore consider which task is associated with a role, how often this task is performed, and, per these findings, determine the number of  suitable role instances.

There are currently two options for the roles available:

  • WebRoles
  • WorkerRoles

The term WebRoles is referred to Cloud Service instances which are running on a Windows VM with an installed IIS and the term WorkerRoles refers to Cloud Service instances which are running on a Windows VM without an installed IIS.

Those roles have specific tasks and workload which we will detail in the following part.

While instances of the WebRoles serve the actual hosting of your web apps, WorkerRoles...