Mod 4 - Understanding Azure PaaS Compute Option Flashcards

1
Q

App Services definition

A

HTTP-based Azure resource you use to host web workloads, REST APIs, and mobile back ends. ex. API. Handles deploying code and making it useable by customers

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

what is WebJobs app service type

A

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

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

what is Mobile app service type

A

Mobile Apps feature of App Service to quickly build a back end for iOS and Android apps. With just a few actions 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.

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

Types of app services

A
  • Web apps
  • API apps
  • WebJobs
  • Mobile apps
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

App Service Plan

A

Azure resource that manages running the app service, gets deployed with AppSVC . Like a VM that provides compute services ex. CPU or RAM

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

Can you assign multiple AppSVC’s to one ASP?

A

Yes

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

What is the public address name format for Appsvc

A
  • Appsvc comes with public address name ex. Appsvc_name.azurewebsites.net / knoxtest.azurewebsites.net
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

what is Custom Domains/SSL deploy option for appsvc?

A

bring your own domain or SSL certs

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

Logic Apps definition

A

: Azure resource that provides No code solution for deploying workflow of applications and automating business workloads

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

Logic apps example

A

Ex. Create a logic to send tweet if you get slack message

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

Can you integrate with non-MS apps

A

No

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

Benefits of Azure Functions

A
  1. No infrastructure mngmt
  2. Scalability: automatic config depending on demand
  3. Only pay what you use
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

2 types of functions

A

Stateless: (the default), they behave as if they’re restarted every time they respond to an event.
stateful (called Durable Functions), a context is passed through the function to track prior activity.

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

Function Apps

A

Tiny bits of code that we write and triggers when an event happens, ex. API endpoint get message. Pricing works same as Logic app either App Service Plan or Consumption model.

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

do you manage the operating system for a container like on a VM

A

No

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

az container purpose

A

run multiple instances of an application on a single host machine

17
Q

Azure Containers

A

a virtualization environment that bundles a single app and it’s dependencies

18
Q

Azure Container Instances

A

platform as a service (PaaS) offering, allow you to upload your containers and then the service will run the containers for you

19
Q

Azure container Registry

A

private repository for your custom built container images, secured by Microsoft identities ex. Azure login credentials.

20
Q

Kubernetes(K8s

A

container tech that handles automatic scaling of services that are presented by the K8 pod. Deploys K8 clusters(groups of containers)

21
Q

Pods

A

o Groups of containers that each depend on each other within the group