Book Image

A Developer's Guide to Building Resilient Cloud Applications with Azure

By : Hamida Rebai Trabelsi
Book Image

A Developer's Guide to Building Resilient Cloud Applications with Azure

By: Hamida Rebai Trabelsi

Overview of this book

To deliver software at a faster rate and reduced costs, companies with stable legacy systems and growing data volumes are trying to modernize their applications and accelerate innovation, but this is no easy matter. A Developer’s Guide to Building Resilient Cloud Applications with Azure helps you overcome these application modernization challenges to build secure and reliable cloud-based applications on Azure and connect them to databases with the help of easy-to-follow examples. The book begins with a basic definition of serverless and event-driven architecture and Database-as-a-Service, before moving on to an exploration of the different services in Azure, namely Azure API Management using the gateway pattern, event-driven architecture, Event Grid, Azure Event Hubs, Azure message queues, FaaS using Azure Functions, and the database-oriented cloud. Throughout the chapters, you’ll learn about creating, importing, and managing APIs and Service Fabric in Azure, and discover how to ensure continuous integration and deployment in Azure to fully automate the software delivery process, that is, the build and release process. By the end of this book, you’ll be able to build and deploy cloud-oriented applications using APIs, serverless, Service Fabric, Azure Functions, and Event Grid technologies.
Table of Contents (18 chapters)
1
Part 1: Building Cloud-Oriented Apps Using Patterns and Technologies
5
Part 2: Connecting Your Application with Azure Databases
13
Part 3: Ensuring Continuous Integration and Continuous Container Deployment on Azure

Chapter 5

  1. What is an Azure Service Fabric cluster?

An Azure Service Fabric cluster is a network-connected set of virtual machines (VMs) in which your microservices are deployed and managed. For more details, see the Clusters and nodes section.

  1. What is the difference between Kubernetes and Service Fabric?

The main difference between Kubernetes and Service Fabric is that Service Fabric has three mechanisms to deploy and run applications: a propriety programming model that you can optionally use in your applications, the use of containers, and the use of any secure built with any platform and any language, with no modification required at all. For more details, see the The differences between Service Fabric and Kubernetes section.

  1. How do we deploy a containerized application on Azure Service Fabric?

To deploy a containerized application on Azure Service Fabric, we can use Visual Studio 2022 and select the Service Fabric template, and then we can...