Wednesday, January 29, 2020

Day 13: Microsoft Module Core Cloud Services - Azure compute options

Four Azure Compute options,
  • Virtual machines (IaaS) -> Greatest control and flexibility
  • Containers
  • Azure App Service (Paas)
  • Serverless computing -> Lowet Control

Knowledge check:
  1. Suppose you have an existing application running locally on your own server. You need additional capacity but prefer to move to Azure instead of buying upgraded on-premises hardware. Which compute option would likely give you the quickest route to getting your application running in Azure?
  • Serverless computing
  • Containers
  • Virtual machines
You have full control over the VM setup, so you can configure it to match your on-premises server. This control will allow your existing application to run on the Azure VM with little or no change.


  1. Imagine that you work on a photo-sharing application that runs on millions of mobile devices. Demand is unpredictable because you see a spike in usage whenever a locally or nationally significant event occurs. Which Azure compute resource is the best match for this workload?
  • Serverless computing
The photo-sharing app is event driven and needs to handle unpredictable demand. Serverless computing is a good fit for this situation because it is event-based and can scale instantly to process spikes in traffic. It should also be a cost-effective choice because you will pay for compute time only when processing user data.
  • Containers
  • Virtual machines

  1. The compute options give you different levels of control over the configuration of the environment in which your application runs. Which of the following lists the compute options in order of your control from "most control" to "least control"?
  • Serverless computing, containers, virtual machines
  • Containers, serverless computing, virtual machines
  • Virtual machines, containers, serverless computing
Virtual machines give you full control over the environment. Containers give you limited control. Serverless computing does not allow you to do any infrastructure configuration.

Thats all for today.

No comments:

Post a Comment