cloud_native_azure

Cloud Native Azure

Return to Cloud Native, Cloud Native Bibliography

Let's start with a simple definition:

Cloud-native architecture and technologies are an approach to designing, constructing, and operating workloads that are built in the cloud and take full advantage of the cloud computing model.

The Cloud Native Computing Foundation provides the official definition:

Cloud-native technologies empower organizations to build and run scalable applications in modern, dynamic environments such as public, private, and hybrid clouds. Containers, service meshes, microservices, immutable infrastructure, and declarative APIs exemplify this approach.

These techniques enable loosely coupled systems that are resilient, manageable, and observable. Combined with robust automation, they allow engineers to make high-impact changes frequently and predictably with minimal toil.

Cloud native is about speed and agility. Business systems are evolving from enabling business capabilities to weapons of strategic transformation that accelerate business velocity and growth. It's imperative to get new ideas to market immediately.

At the same time, business systems have also become increasingly complex with users demanding more. They expect rapid responsiveness, innovative features, and zero downtime. Performance problems, recurring errors, and the inability to move fast are no longer acceptable. Your users will visit your competitor. Cloud-native systems are designed to embrace rapid change, large scale, and resilience

Here are some companies who have implemented cloud-native techniques. Think about the speed, agility, and scalability they've achieved.

Company Experience Netflix Has 600+ services in production. Deploys 100 times per day. Uber Has 1,000+ services in production. Deploys several thousand times each week. WeChat Has 3,000+ services in production. Deploys 1,000 times a day. As you can see, Netflix, Uber, and, WeChat expose cloud-native systems that consist of many independent services. This architectural style enables them to rapidly respond to market conditions. They instantaneously update small areas of a live, complex application, without a full redeployment. They individually scale services as needed.

The pillars of cloud native The speed and agility of cloud native derive from many factors. Foremost is cloud infrastructure. But there's more: Five other foundational pillars shown in Figure 1-3 also provide the bedrock for cloud-native systems.

Cloud-native foundational pillars

Figure 1-3. Cloud-native foundational pillars

Let's take some time to better understand the significance of each pillar.

The cloud Cloud-native systems take full advantage of the cloud service model.

Designed to thrive in a dynamic, virtualized cloud environment, these systems make extensive use of Platform as a Service (PaaS) compute infrastructure and managed services. They treat the underlying infrastructure as disposable - provisioned in minutes and resized, scaled, or destroyed on demand – via automation.

Consider the widely accepted DevOps concept of Pets vs. Cattle. In a traditional data center, servers are treated as Pets: a physical machine, given a meaningful name, and cared for. You scale by adding more resources to the same machine (scaling up). If the server becomes sick, you nurse it back to health. Should the server become unavailable, everyone notices.

The Cattle service model is different. You provision each instance as a virtual machine or container. They're identical and assigned a system identifier such as Service-01, Service-02, and so on. You scale by creating more of them (scaling out). When one becomes unavailable, nobody notices.

The cattle model embraces immutable infrastructure. Servers aren't repaired or modified. If one fails or requires updating, it's destroyed and a new one is provisioned – all done via automation.

Cloud-native systems embrace the Cattle service model. They continue to run as the infrastructure scales in or out with no regard to the machines upon which they're running.

The Azure cloud platform supports this type of highly elastic infrastructure with automatic scaling, self-healing, and monitoring capabilities.

Modern design How would you design a cloud-native app? What would your architecture look like? To what principles, patterns, and best practices would you adhere? What infrastructure and operational concerns would be important?

The Twelve-Factor Application A widely accepted methodology for constructing cloud-based applications is the Twelve-Factor Application. It describes a set of principles and practices that developers follow to construct applications optimized for modern cloud environments. Special attention is given to portability across environments and declarative automation.

While applicable to any web-based application, many practitioners consider Twelve-Factor a solid foundation for building cloud-native apps. Systems built upon these principles can deploy and scale rapidly and add features to react quickly to market changes.

The following table highlights the Twelve-Factor methodology:

Factor Explanation 1 - Code Base A single code base for each microservice, stored in its own repository. Tracked with version control, it can deploy to multiple environments (QA, Staging, Production). 2 - Dependencies Each microservice isolates and packages its own dependencies, embracing changes without impacting the entire system. 3 - Configurations Configuration information is moved out of the microservice and externalized through a configuration management tool outside of the code. The same deployment can propagate across environments with the correct configuration applied. 4 - Backing Services Ancillary resources (data stores, caches, message brokers) should be exposed via an addressable URL. Doing so decouples the resource from the application, enabling it to be interchangeable. 5 - Build, Release, Run Each release must enforce a strict separation across the build, release, and run stages. Each should be tagged with a unique ID and support the ability to roll back. Modern CI/CD systems help fulfill this principle. 6 - Processes Each microservice should execute in its own process, isolated from other running services. Externalize required state to a backing service such as a distributed cache or data store. 7 - Port Binding Each microservice should be self-contained with its interfaces and functionality exposed on its own port. Doing so provides isolation from other microservices. 8 - Concurrency When capacity needs to increase, scale out services horizontally across multiple identical processes (copies) as opposed to scaling-up a single large instance on the most powerful machine available. Develop the application to be concurrent making scaling out in cloud environments seamless. 9 - Disposability Service instances should be disposable. Favor fast startup to increase scalability opportunities and graceful shutdowns to leave the system in a correct state. Docker containers along with an orchestrator inherently satisfy this requirement. 10 - Dev/Prod Parity Keep environments across the application lifecycle as similar as possible, avoiding costly shortcuts. Here, the adoption of containers can greatly contribute by promoting the same execution environment. 11 - Logging Treat logs generated by microservices as event streams. Process them with an event aggregator. Propagate log data to data-mining/log management tools like Azure Monitor or Splunk and eventually to long-term archival. 12 - Admin Processes Run administrative/management tasks, such as data cleanup or computing analytics, as one-off processes. Use independent tools to invoke these tasks from the production environment, but separately from the application. In the book, Beyond the Twelve-Factor App, author Kevin Hoffman details each of the original 12 factors (written in 2011). Additionally, he discusses three extra factors that reflect today's modern cloud application design.

New Factor Explanation 13 - API First Make everything a service. Assume your code will be consumed by a front-end client, gateway, or another service. 14 - Telemetry On a workstation, you have deep visibility into your application and its behavior. In the cloud, you don't. Make sure your design includes the collection of monitoring, domain-specific, and health/system data. 15 - Authentication/ Authorization Implement identity from the start. Consider RBAC (role-based access control) features available in public clouds. We'll refer to many of the 12+ factors in this chapter and throughout the book.

Fair Use Sources

Cloud Native Computing Foundation: CNCF Projects, Cloud Native Frameworks, Cloud Native DevOps - Cloud Native SRE - Cloud Native CI/CD, Cloud Native Security - Cloud Native DevSecOps - Falco, Cloud Native Kubernetes, Cloud Native Containerization, Cloud Native Docker, Cloud Native Service Mesh, Cloud Native Microservices, Cloud Native AWS - Cloud Native AWS - Cloud Native GCP - Cloud Native IBM Cloud - Cloud Native Mainframe, Cloud Native Mobile (Cloud Native Android, Cloud Native iOS), Cloud Native Programming Languages (Cloud Native C Sharp dot NET | .NET - Cloud Native Azure, Cloud Native Golang, Cloud Native Java - Cloud Native Spring - Cloud Native Quarkus, Cloud Native JavaScript - Cloud Native React, Cloud Native Kotlin, Cloud Native Python - Cloud Native Django - Cloud Native Flask, Cloud Native Rust, Cloud Native Swift, Cloud Native TypeScript - Cloud Native Angular; Cloud Native Linux, Cloud Native Windows, Cloud Native Message Brokers, Cloud Native Kafka, Cloud Native Functional Programming, Cloud Native Concurrency, Cloud Native Data Science - Cloud Native Databases, Cloud Native Machine Learning, Cloud Native Bibliography, Manning Cloud Native Series, Cloud Native Courses, Cloud Native Glossary - Glossaire de Cloud Native - French, Awesome Cloud Native, Cloud Native GitHub, Cloud Native Topics. (navbar_cncf - see also navbar_cloud_native_languages, navbar_k8s)

Cloud Native Programming Languages: Cloud Native Mobile (Cloud Native Android, Cloud Native iOS), Cloud Native Bash, Cloud Native BASIC, Cloud Native C Sharp dot NET | .NET - Cloud Native Azure, Cloud Native Clojure, Cloud Native COBOL, Cloud Native Fortran, Cloud Native Golang, Cloud Native Java - Cloud Native Spring - Cloud Native Quarkus, Cloud Native JavaScript - Cloud Native React, Cloud Native Kotlin, Cloud Native Pascal, Cloud Native Python - Cloud Native Django - Cloud Native Flask, Cloud Native Rust, Cloud Native Swift, Cloud Native TypeScript - Cloud Native Angular, Manning Cloud Native Series. (navbar_cloud_native_languages - see also navbar_cncf)

Azure Glossary

Azure Active Directory, Azure Active Directory B2C, Azure Active Directory Domain Services, Azure Advisor, Azure Analysis Services, Azure API Management, Azure App Service, Azure App Service Certificates, Azure App Service Domains, Azure App Service Environments, Azure Application Gateway, Azure Application Insights, Azure Arc, Azure Artifacts, Azure Automation, Azure Automanage, Azure Backup, Azure Bastion, Azure Batch, Azure Blob Storage, Azure Blockchain Service, Azure Blueprints, Azure Bot Service, Azure Cache for Redis, Azure CDN, Azure Cognitive Search, Azure Cognitive Services, Azure Communication Services, Azure Container Instances, Azure Container Registry, Azure Cosmos DB, Azure Cost Management, Azure Data Box, Azure Data Box Disk, Azure Data Box Edge, Azure Data Catalog, Azure Data Explorer, Azure Data Factory, Azure Data Lake Analytics, Azure Data Lake Storage, Azure Database Migration Service, Azure Dedicated Host, Azure Defender, Azure Deployment Environments, Azure DevOps, Azure DevTest Labs, Azure Digital Twins, Azure Disk Encryption, Azure Disk Storage, Azure DNS, Azure Event Grid, Azure Event Hubs, Azure ExpressRoute, Azure File Sync, Azure Files, Azure Firewall, Azure Form Recognizer, Azure Front Door, Azure Functions, Azure HPC Cache, Azure HPC Pack, Azure Image Builder, Azure Import Export, Azure Information Protection, Azure Internet Analyzer, Azure IoT Central, Azure IoT Edge, Azure IoT Hub, Azure Key Vault, Azure Kubernetes Service, Azure Lab Services, Azure Lighthouse, Azure Load Balancer, Azure Logic Apps, Azure Machine Learning, Azure Managed Applications, Azure Managed Disks, Azure Migrate, Azure Monitor, Azure NetApp Files, Azure Network Watcher, Azure Notification Hubs, Azure Open Datasets, Azure Orbital, Azure Percept, Azure Pipelines, Azure Policy, Azure Private Link, Azure Private MEC, Azure Purview, Azure Quantum, Azure Remote Rendering, Azure Repos, Azure Resource Manager, Azure Resource Mover, Azure Route Server, Azure Scheduler, Azure Search, Azure Security Center, Azure Sentinel, Azure Service Bus, Azure Service Fabric, Azure SignalR Service, Azure Site Recovery, Azure Spatial Anchors, Azure Sphere, Azure SQL Database, Azure SQL Managed Instance, Azure SQL Edge, Azure Stack, Azure Stack Edge, Azure Static Web Apps, Azure Storage, Azure Stream Analytics, Azure Synapse Analytics, Azure Time Series Insights, Azure Traffic Manager, Azure Virtual Desktop, Azure Virtual Network, Azure VMware Solution, Azure Web PubSub Service, Azure Windows Virtual Desktop, Azure Virtual Machines, Azure Virtual Machine Scale Sets, Azure Virtual Network Manager, Azure Virtual WAN, Azure VMware Solution, Azure Well-Architected Framework, Azure Stack HCI, Azure Stack Hub, Azure Stack Edge Pro, Azure Communication Services Chat, Azure Communication Services Calling, Azure Communication Services SMS, Azure Container Apps, Azure Custom Vision, Azure CycleCloud, Azure DDoS Protection, Azure Dedicated HSM, Azure Dev Spaces, Azure Files AD Authentication, Azure Firewall Manager, Azure Form Recognizer, Azure Front Door Standard, Azure Functions Premium Plan, Azure Government, Azure Lighthouse, Azure Managed Identities, Azure Maps, Azure Media Services, Azure Monitor Alerts, Azure Monitor Logs, Azure Monitor Metrics, Azure Monitor for Containers, Azure Monitor for VMs, Azure Monitor Application Insights, Azure Networking Services, Azure Peering Service, Azure Policy Compliance, Azure Portal, Azure PowerShell, Azure Private DNS Zones, Azure Private Link Service, Azure Private Endpoint, Azure Red Hat OpenShift, Azure RemoteApp, Azure Reserved Instances, Azure Resource Graph, Azure Security Benchmark, Azure Service Health, Azure Shared Disks, Azure Site-to-Site VPN, Azure Spatial Anchors, Azure Spring Cloud, Azure SQL Data Warehouse, Azure SQL Database Hyperscale, Azure Stack Edge Mini R, Azure Storage Explorer, Azure Time Series Insights Gen2, Azure Ultra Disks, Azure Virtual Network NAT, Azure Virtual Network Peering, Azure VMware Solution on Azure, Azure Web Application Firewall, Azure Well-Architected Review, Azure DevOps Repos, Azure DevOps Boards, Azure DevOps Artifacts, Azure DevTest Labs, Azure Monitor Autoscale, Azure Monitor Application Map, Azure Monitor Smart Alerts, Azure Active Directory Identity Protection, Azure Active Directory Conditional Access, Azure Active Directory B2B, Azure Active Directory Managed Service Identity, Azure AD Privileged Identity Management, Azure AD Application Proxy, Azure AD Domain Services, Azure Active Directory Connect, Azure Advanced Threat Protection, Azure API for FHIR, Azure App Configuration, Azure Application Gateway WAF, Azure Arc-enabled Kubernetes, Azure Arc-enabled Servers, Azure Attestation, Azure Backup Server, Azure Bastion Host, Azure Blockchain Workbench, Azure Cache for Redis Enterprise, Azure Confidential Ledger, Azure Custom Vision Service, Azure Data Share, Azure Database for MySQL, Azure Database for PostgreSQL, Azure Database for MariaDB, Azure Dedicated Hosts, Azure DevOps Server, Azure Digital Twins Explorer, Azure Digital Twins Models, Azure Digital Twins Query, Azure DNS Private Resolver, Azure ExpressRoute FastPath, Azure Firewall Premium, Azure Firewall Policy, Azure Front Door Premium, Azure Function Proxies, Azure HDInsight, Azure Health Bot, Azure Hybrid Benefit, Azure IoT Hub Device Provisioning Service, Azure Kubernetes Service on Azure Stack HCI, Azure Logic Apps Standard, Azure Managed HSM, Azure Migration Program, Azure Monitor Insights, Azure Monitor Network Insights, Azure Monitor Service Health, Azure Monitor Workbooks, Azure NetApp Files Snapshot, Azure Network Function Manager, Azure Network Security Groups, Azure Orbital Ground Station, Azure Peering Service Customer Router, Azure Policy Remediation, Azure Private 5G Core, Azure Purview Data Catalog, Azure Quantum Workspace, Azure Resource Health, Azure Resource Locks, Azure Security Center JIT VM Access, Azure Security Center Regulatory Compliance, Azure Sentinel Notebooks, Azure Sentinel Playbooks, Azure Service Fabric Mesh, Azure SignalR Service Free Tier, Azure Site Recovery Mobility Service, Azure Sphere OS Updates, Azure SQL Analytics, Azure SQL Database Managed Instance, Azure Stack Edge Pro GPU, Azure Stack Edge Pro R, Azure Stack Hub Marketplace, Azure Stack Hub Update, Azure Static Web Apps GitHub Actions, Azure Synapse Studio, Azure Synapse Link, Azure Time Series Insights Explorer, Azure Virtual WAN Hubs, Azure Virtual WAN VPN Sites, Azure VMware Solution HCX, Azure Web PubSub, Azure Well-Architected Review Tool, Azure Well-Architected Framework Assessments, Azure Arc Data Controller, Azure Arc Enabled Data Services, Azure Arc Enabled SQL Managed Instance, Azure Arc Enabled PostgreSQL Hyperscale, Azure Automanage for Windows Server, Azure Backup Soft Delete, Azure Backup Vaults, Azure Bastion Native Client Support, Azure Bot Framework Composer, Azure Cognitive Services Containers, Azure Communication Services Rooms, Azure Confidential Computing, Azure Cosmos DB Autoscale, Azure Cosmos DB Change Feed, Azure Cosmos DB Gremlin API, Azure Cosmos DB MongoDB API, Azure Cosmos DB Table API, Azure Cosmos DB Cassandra API, Azure Defender for IoT, Azure Digital Twins Live Execution, Azure Digital Twins Time Series Insights, Azure Event Hubs Capture, Azure File Sync Cloud Tiering, Azure Firewall Threat Intelligence, Azure Form Recognizer Layout API, Azure Functions Durable Functions, Azure Functions Premium Plan Linux, Azure Hybrid Services, Azure IoT Edge Security Daemon, Azure Kubernetes Service Virtual Nodes, Azure Logic Apps Integration Service Environment, Azure Machine Learning Designer, Azure Machine Learning Pipelines, Azure Monitor Container Insights, Azure Monitor VM Insights, Azure Monitor for SAP Solutions, Azure NetApp Files Cross-Region Replication, Azure OpenAI Service, Azure Percept DK, Azure Percept Studio, Azure Policy for Kubernetes, Azure Private MEC Platform, Azure Purview Data Map, Azure Purview Data Insights, Azure Quantum Resource Estimator, , [[Azure Red Hat OpenShift Dedicated, Azure Sentinel Fusion, Azure Sentinel GitHub Integration, Azure Service Bus Premium, Azure Shared Image Gallery, Azure Spatial Anchors Persistence, Azure Sphere Guardian Module, Azure SQL Edge Docker Container, Azure Stack Edge Mini R Preview, Azure Static Web Apps Enterprise Grade Edge, Azure Synapse Data Explorer, Azure Synapse Link for Cosmos DB, Azure Time Series Insights Gen2 Storage, Azure Video Analyzer, Azure VMware Solution vSphere, Azure VMware Solution vSAN, Azure VMware Solution NSX-T, Azure VMware Solution HCX Enterprise, Azure VMware Solution vCenter Server, Azure VMware Solution vMotion, Azure VMware Solution SRM, Azure VMware Solution NSX Advanced Load Balancer, Azure VMware Solution Tanzu, Azure Web Application Firewall Policies, Azure Well-Architected Framework Review, Azure Well-Architected Framework Pillars

Azure: Azure Products, Microsoft Cloud, Azure Virtual Machines, Azure App Service, Azure Blob Storage, Azure SQL Database, Azure Kubernetes Service, Azure Functions, Azure Cosmos DB, Azure Active Directory, Azure Cognitive Services, Azure DevOps, Azure Logic Apps, Azure Virtual Network, Azure Key Vault, Azure Storage Account, Azure Container Registry, Azure Monitor, Azure Data Factory, Azure Databricks, Azure Machine Learning, Azure Event Grid, Azure Redis Cache, Azure API Management, Azure Cognitive Search, Azure CDN, Azure Batch, Azure Firewall, Azure Front Door, Azure Synapse Analytics, Azure Security Center, Azure ExpressRoute, Azure Container Instances, Azure Backup, Azure Data Lake Storage, Azure Advisor, Azure Service Bus, Azure Bastion, Azure Site Recovery, Azure Automation, Azure Stream Analytics, Azure DevTest Labs, Azure Data Explorer, Azure Queue Storage, Azure Load Balancer, Azure Traffic Manager, Azure SQL Data Warehouse, Azure Notification Hubs, Azure DNS, Azure Virtual WAN, Azure Sphere, Azure Information Protection, Azure Search, Azure Dev Spaces, Azure Application Gateway, Azure Resource Manager, Azure Cost Management + Billing, Azure Scheduler, Azure Relay, Azure Database for PostgreSQL, Azure Database for MySQL, Azure Maps, Azure Blockchain Service, Azure Database for MariaDB, Azure Dedicated HSM, Azure Data Share, Azure Data Box, Azure IoT Hub, Azure SQL Managed Instance, Azure Lab Services, Azure Container Service, Azure Firewall Manager, Azure API for FHIR, Azure CycleCloud, Azure Dedicated Host, Azure Active Directory B2C, Azure CDN Standard, Azure Sphere Guardian, Azure Private Link, Azure Dedicated HSM, Azure Arc, Azure VMware Solution, Azure VMware Solution by CloudSimple, Azure Blob Storage (hot, cool, archive), Azure App Service (Linux, Windows), Azure Cognitive Services (Computer Vision, Face, Speech, etc.), Azure Logic Apps (Standard, Enterprise), Azure Virtual Desktop, Azure Database for SQL Server, Azure Orbital, Azure Synapse Pathway, Azure Purview, Azure TruGrid, Azure HPC Cache.

Azure AI (Azure MLOps-Azure ML-Azure DL), Azure Compute (Azure K8S-Azure Containers-Azure GitOps, Azure IaaS-Azure Linux-Azure Windows Server), Azure Certification, Azure Data Science (Azure Databases-Azure SQL-Azure NoSQL-Azure Analytics-Azure DataOps), Azure DevOps-Azure SRE-Azure Automation-Azure Terraform-Azure Ansible-Azure Chef-Azure Puppet-Azure CloudOps-Azure Monitoring, Azure Developer Tools (Azure GitHub-Azure CI/CD-Azure Cloud IDE-Azure VSCode-Azure Serverless-Azure Microservices-Azure Service Mesh-Azure Java-Azure Spring-Azure JavaScript-Azure Python), Azure Hybrid-Azure Multicloud, Azure Identity (Microsoft Entra-Azure IAM-Azure MFA-Azure Active Directory), Azure Integration, Azure IoT-Azure Edge, Azure Management-Azure Admin-Azure Cloud Shell-Azure CLI-Azure PowerShell-AzureOps, Azure Governance, Azure Media (Azure Video), Azure Migration, Azure Mixed reality, Azure Mobile (Azure Android-Azure iOS), Azure Networking (Azure Load Balancing-Azure CDN-Azure DNS-Azure NAT-Azure VPC-Azure Virtual Private Cloud (VPC)-Azure VPN), Azure Security (Azure Vault-Azure Secrets-HashiCorp Vault Azure, Azure Cryptography-Azure PKI, Azure Pentesting-Azure DevSecOps), Azure Storage, Azure Web-Azure Node.js, Azure Virtual Desktop, Azure Product List. Azure Awesome List, Azure Docs, Azure Glossary - Glossaire de Azure - French, Azure Books, Azure Courses, Azure Topics (navbar_azure and navbar_Azure_detailed and navbar_microsoft - see also navbar_azure_devops, navbar_azure_developer, navbar_azure_security, navbar_azure_kubernetes, navbar_azure_cloud_native, navbar_azure_microservices, navbar_azure_databases, navbar_azure_iac, navbar_ibm_cloud navbar_aws, navbar_gcp, navbar_ibm_cloud, navbar_oracle_cloud)


Cloud Monk is Retired ( for now). Buddha with you. © 2025 and Beginningless Time - Present Moment - Three Times: The Buddhas or Fair Use. Disclaimers

SYI LU SENG E MU CHYWE YE. NAN. WEI LA YE. WEI LA YE. SA WA HE.


cloud_native_azure.txt · Last modified: 2025/02/01 07:09 by 127.0.0.1

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki