🥒
Dill's Knowledge Base
  • Hello World
  • 💻SQL
    • ❌Error Handling
    • 🧀Parameter Sniffing
      • Indexes
      • Query Hints
      • RECOMPILE
      • Branching
      • Memory Grants
      • Summary
      • Bonus
    • SQL Server Buffer Pool
  • 🖱️MongoDB
    • Instructor Led Training
      • DF100
      • DF200
      • DF300
      • DF400
    • MongoDB DBA University
      • DBA Admin Tools
      • DBA Basics
      • Metrics & Monitoring
  • 💻Web Design
    • Oxygen Tips
    • Bricks Builder
      • Tips
      • Discovery Call
      • Utility vs Custom Classes
      • Math Functions
      • Static vs Relative Units
  • Azure
    • AZ-900
      • Benefit of Cloud Computing
      • CapEx, OpEx and Consumption-based
      • Differences Between Cloud Service Categories
      • Identify The Right Service Type
      • Differences Between Types of Cloud Computing
      • Reliability and Predictability
      • Regions and Region Pairs
      • Availability Zones
      • Resource Groups
      • Subscriptions
      • Management Groups
      • Azure Resource Manager
      • Azure ARC
      • Resources Required for VM
      • Benefits and Usage of Core Compute Resources
      • Benefits and Usage of Core Network Resources
      • Public/Private Endpoints
      • Benefits and Usage of Storage Accounts
      • Benefits and Usage of Database Resources
      • Data Movement and Migration Options
      • Benefits and Usage of IoT Services
      • Benefits and Usage of Big Data and Analytics Services
      • Benefits and Usage of AI Services
      • Benefits and Usage of Serverless Technologies
      • Benefits and Usage of DevOps Technologies
      • Functionality of Azure Management Solutions
      • Functionality and Usage of Azure Advisor
      • Functionality and Usage of ARM Templates
      • Functionality and Usage of Azure Monitor
      • Functionality and Usage of Azure Service Health
      • Functionality of Microsoft Defender for Cloud
      • Functionality and Usage of Key Vault
      • Functionality and Usage of Microsoft Sentinel
      • Azure Dedicated Host
      • Defense in Depth
      • Describe the Concept of Zero Trust
      • Functionality and Usage of NSGs
      • Functionality and Usage of Azure Firewall
      • Functionality and Usage of Azure DDoS Protection
      • Explain Authentication and Authorization
      • Functionality and Usage of Azure AD
      • Microsoft Entra Overview
      • Functionality of Conditional Access, MFA and SSO
      • Functionality and Usage of RBAC
      • Functionality and Usage of Resource Locks
      • Functionality and Usage of Tags
      • Functionality and Usage of Azure Policy
      • Governance Hierarchy Constructs
      • Azure Blueprints
      • Describe Microsoft Privacy Statement, OST and DPA
      • Purpose of Trust Center and Azure Compliance Documentation
      • Purpose of Azure Sovereign Regions
      • Factors That Affect Costs
      • Factors to Reduce Cost
      • Functionality and Usage of Azure Cost Management
      • Purpose of Service Level Agreements
    • DP-900
      • Study Cram
    • DP-300
      • Deploy IaaS Soluton with Azure SQL
  • 📦Kubernetes
    • Udemy: Kubernetes for Beginners
Powered by GitBook
On this page
  1. Azure
  2. AZ-900

Benefits and Usage of Core Compute Resources

https://www.youtube.com/watch?v=yKDSAYDLGrI&list=PLlVtbbG169nED0_vMEniWBQjSoxTsBYS3&index=16

Every VM Sku has a specific amount of vCores, IOPs, Memory, etc

  • The Skus are all based on ratios and "specialized" types as they each have a purpose

Virtual Machine Scale Sets

  • Specify a certain template of which OS to use, a configuration (sku) to use, and also specify scale

    • Scale could involve minimum/maximum # of instances or the ability to auto scale based off of something like CPU

Azure Batch

  • Provision the VMs behind the scenes via a scheduler

PaaS

  • Containers are a good example because they virtualize the OS

  • Containers run on a container host like a VM

  • A container creates a sandbox where an image runs

    • Images usually derives from a registry

Azure Container Instances (ACI)

  • You still choose the container image, but you are not managing the OS of the environment

    • The focus is on the app inside in the image

Azure Kubernetes Service (AKS)

  • 2 planes with Kubernetes

    • Control plane and a data plane

    • with AKS, the control plane is fully serviced by Azure and are running somewhere we can not see

  • AKS will create a VM scale set

    • You just have to focus on the deployment YAML file where you specify what type of VMs you want it to run

Azure App Service

  • Something web based such as an API, mobile app, or website

Serverless

  • Functions and logic apps

    • Functions can run inside of an app service plans

  • Usually these are event driven and charged by usage

  • Functions are writing code whereas logic apps uses drag/drop GUI

Azure Virtual Desktop

  • Desktop as a service offering

  • the management plane is once again taken care of for you

  • You only get access to the hosts that people connect to

  • Provides you with a full desktop experience or it can publish particular applications

PreviousResources Required for VMNextBenefits and Usage of Core Network Resources

Last updated 2 years ago