Azure compute options Flashcards

1
Q

a logical grouping of two or more VMs that help keep your application available during planned or unplanned maintenance.

A

availability set

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

The group of virtual machines that share common hardware are in the same fault domain. A fault domain is essentially a rack of servers. It provides the physical separation of your workload across different power, cooling, and network hardware that support the physical servers in the data center server racks.

A

Fault Domain

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Update domains indicate groups of VMs and underlying physical hardware that can be rebooted at the same time

A

Update Domain

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Azure Batch enables large-scale job scheduling and compute management with the ability to scale to tens, hundreds, or thousands of VMs.

When you’re ready to run a job, Batch does the following:

  • Starts a pool of compute VMs for you
  • Installs applications and staging data
  • Runs jobs with as many tasks as you have
  • Identifies failures
  • Requeues work
  • Scales down the pool as work completes
A

Azure Batch

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

This architecture is where you break solutions into smaller, independent pieces. For example, you may split a website into a container hosting your front end, another hosting your back end, and a third for storage. This split allows you to separate portions of your app into logical sections that can be maintained, scaled, or updated independently.

A

microservice architecture

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

The preceding figure depicts this process as follows:

You convert an existing application to one or more containers and then publish one or more container images to the Azure Container Registry.
By using the Azure portal or the command line, you deploy the containers to an AKS cluster.
Azure AD controls access to AKS resources.
You access SLA-backed Azure services, such as Azure Database for MySQL, via OSBA.
Optionally, AKS is deployed with a virtual network.

A

Migration APPs to Containers

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Azure App Service enables you to build and host web apps, background jobs, mobile backends, and RESTful APIs in the programming language of your choice without managing infrastructure. It offers automatic scaling and high availability. App Service supports both Windows and Linux, and enables automated deployments from GitHub, Azure DevOps, or any Git repo to support a continuous deployment model.

This platform as a service (PaaS) allows you to focus on the website and API logic while Azure handles the infrastructure to run and scale your web applications.

A

Azure App Service

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

With Azure App Service, you can host most common web app styles including:

  • Web Apps
  • API Apps
  • WebJobs
  • Mobile Apps
A

Types of Web Apps

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

App Service includes full support for hosting web apps using ASP.NET, ASP.NET Core, Java, Ruby, Node.js, PHP, or Python. You can choose either Windows or Linux as the host operating system.

A

Web Apps

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Much like hosting a website, you can build REST-based Web APIs using your choice of language and framework. You get full Swagger support, and the ability to package and publish your API in the Azure Marketplace. The produced apps can be consumed from any HTTP(S)-based client.

A

API Apps

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

WebJobs allows you to run a program (.exe, Java, PHP, Python, or Node.js) or script (.cmd, .bat, PowerShell, or Bash) in the same context as a web app, API app, or mobile app. They can be scheduled, or run by a trigger. WebJobs are often used to run background tasks as part of your application logic.

A

Web jobs

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Use the Mobile Apps feature of Azure App Service to quickly build a back-end for iOS and Android apps. With just a few clicks in the Azure portal you can:

  • Store mobile app data in a cloud-based SQL database
  • Authenticate customers against common social providers such as MSA, Google, Twitter, and Facebook
  • Send push notifications
  • Execute custom back-end logic in C# or Node.js

On the mobile app side, there is SDK support for native iOS & Android, Xamarin, and React native apps.

A

Mobile apps

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Serverless computing is the abstraction of servers, infrastructure, and OSs. With serverless computing, Azure takes care of managing the server infrastructure and allocation/deallocation of resources based on demand. Infrastructure isn’t your responsibility. Scaling and performance are handled automatically, and you are billed only for the exact resources you use. There’s no need to even reserve capacity.

Serverless computing encompasses three ideas: the abstraction of servers, an event-driven scale, and micro-billing

A

Serverless

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Serverless computing abstracts the servers you run on. You never explicitly reserve server instances; the platform manages that for you. Each function execution can run on a different compute instance, and this execution context is transparent to the code. With serverless architecture, you simply deploy your code, which then runs with high availability.

A

Abstraction of servers

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Serverless computing is an excellent fit for workloads that respond to incoming events. Events include triggers by timers (for example, if a function needs to run every day at 10:00 AM UTC), HTTP (API and webhook scenarios), queues (for example, with order processing), and much more. Instead of writing an entire application, the developer authors a function, which contains both code and metadata about its triggers and bindings. The platform automatically schedules the function to run and scales the number of compute instances based on the rate of incoming events. Triggers define how a function is invoked and bindings provide a declarative way to connect to services from within the code.

A

Event-driven scale

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Traditional computing has the notion of per-second billing, but often, that’s not as useful as it seems. Even if a customer’s website gets only one hit a day, they still pay for a full day’s worth of availability. With serverless computing, they pay only for the time their code runs. If no active function executions occur, they’re not charged. For example, if the code runs once a day for two minutes, they’re charged for one execution and two minutes of computing time.

A

Micro-billing

17
Q

which can execute code in almost any modern language.

A

Azure Functions

18
Q

which are designed in a web-based designer and can execute logic triggered by Azure services without writing any code.

A

Azure Logic Apps