Terminology Flashcards
Azure Event Grid - Event
What happened.
Azure Event Grid - Event Source
Where the event took place
Azure Event Grid - Topic
The endpoints where publishers send events
Azure Event Grid - Subscriptions
The endpoint, or built-in mechanism to route events to one or more handlers
Azure Event Grid - Event Handlers
The app or service to handle the event
Azure Event Grid - Event Size up to GA SLA
64 kB
Azure Event Grid - System topics
built-in topics provided by Azure Services
Azure Event Grid - Custom topics
application or third party topics
Azure Event Grid - Event Schema
A set of string properties that every event has
Azure Event Grid - Time-To-Live
Max duration in minutes that an event is allowed to exist before being dropped or dead-lettered.
Azure Event Grid - TTL
Time to live
Azure Event Grid - Retry policy
Failed events are dropped or deadlettered if max number of tries or max TTL is reached
Azure Event Grid - Output Batching
Delivering events in batches for high throughput scenarios
Azure Event Grid - Delayed delivary
If an endpoint keeps failing, Event grid won’t try new events for up to several hours
Azure Event Grid - Dead-lettering
An event is sent to a storage account if the retry policy is failed
Azure Event Grid - Subscription Reader
Lets you read event subscriptions
Azure Event Grid - Subscription Contributor
Lets you manage event subscription operations
Azure Event Grid - Contributor
Lets you create and manage Event Grid Resources
Azure Event Grid - Data Sender
Lets you send events to Event Grid Topics
Azure Event Grid - 3 filter types
Event types, Subject pre/postfix, advanced fields and operators
Azure Event Hub
Big data streaming platform and event ingestion service
Azure Event Grid
Serverless Event Broker
Azure Event Hub - Event Hub Client
Interface for developers for interacting with Event Hub
Azure Event Hub - Producer
A client that serves as a source of telemetry data
Azure Event Hub - Consumer
Reads info off of Event Hubs and processes it.
Azure Event Hub - Partition
An ordered sequence of events
Azure Event Hub - Consumer Groups
Multiple applications with their own seperate views on the stream in terms of pace and position
Azure Event Hub - Event Receivers
Any entity that reads data from Event Hub
Azure Event Hub - Throughput units
Prepurchased units to control the capacity of event hubs
Azure Event Hub - Capture
Streaming the data in Event Hub to blob storage or data lake storage
Azure Event Hub - First Wins Policy
The first trigger encountered causes a capture operation
Azure Event Hub - EventProcessorClient
.Net and Java implementation to balance event hub load between instances of your program
Azure Event Hub - EventHubCustomerClient
Python and JavaScript implementation to balance event hub load between instances of your program
Azure Event Hub - Data Owner
Has complete access to Event Hub resources
Azure Event Hub - Data Sender
Has access to give ‘send access’ to Event Hub resources
Azure Event Hub - Data Receiver
Has access to give ‘Receive access’ to Event Hub resources
Azure Event Hub - Checkpointing
An event processor marks or commits a position of the last successfully processed event
Azure Key Vault
A cloud service for securely storing and accessing secrets
Azure Key Vault - 2 container types
Vaults, HSM pools
Azure Key Vault - HSM pools
Hardware security module pools
Azure Key vault - Protocol
Transport Layer Security
Protocol - TLS
Transport layer security
Managed Identities - 2 types
User assigned and system assigned
Managed Identity - System assigned MI
Directly enabled identity on a Azure service instance
Managed Identity - User assigned MI
Through a create process an identity is made in Azure AD Tenant
Application Insights - Live Metrics
Activity observation from deployed applications in real time with no effect on the host
Application Insights
Provides Application Performance Monitoring
Application Insights - Availability
Also known as Synthetic Transaction Monitoring, probes external endpoints to test availability and responsiveness
Application Insights - Smart Detection
Automatic failure and anomaly detection through telemetry analysis
Application Insights - Application Maps
High-level, topdown architecture overview and visual reference to component health and responsiveness
Application Insights - Distributed Tracing
Search and visualize and end-to-end flow of given applications
Application Insights - Log-based metrics
Health analysis using logs to monitor health and create powerful dashboards
Microsoft Graph
A gateway into data and intelligence in Microsoft 365
Microsoft Graph - 3 components
API via a single endpoint, Microsoft Graph Connectors, Microsoft Graph Data Connects
Microsoft Graph - Ms Graph Connectors
Connectors work with in the incoming direction, Connectors exists for many data sources
Azure Blob Storage
Object storage solution for the cloud
Azure Blob Storage - 6 design type
- Image and documents into browser
- Storing distributed files
- Streaming video and audio
- Log files
- Storing data for backing, recovery and archiving
- Storing data for analysis
Azure Blob storage - General Purpose V2
Standard tier storage account
Azure Blob Storage - Block Blob
Premium Tier storage option, for high transaction rates, small object sizes and low latency storage
Azure Blob Storage - Page Blob
Premium tier storage, and is stored to virtual harddrives, upto 8 TB. They serve as disks for VMs
Azure Blob storage - hot access
Optimized storage tier for high frequency access
Azure Blob Storage - cold access
Optimized storage that is infrequently access for at least 30 days
Azure Blob Storage - Archive Access
Optimized Storage that is infrequently accessed for at least 180 days.
Azure CosmosDb
Fully managed NoSql database
Azure CosmosDb - Strong
Highest consistency level
Azure CosmosDb - Bounded Staleness
Second highest consistency level
Azure CosmosDb - Session
Medium consistency level
Azure CosmosDb - Consistent Prefix
Second lowest consistency level
Azure CosmosDb - Eventual
Lowest consistency level
Azure CosmosDb - Max. No. of accounts in 1 subscription
50
Azure CosmosDb - Consistency level
Availability / performance trade-off
az group create --location <myLocation> --name az204-cosmos-rg
Creates a resource group
`
az cosmosdb create –name <myCosmosDBacct> --resource-group az204-cosmos-rg
`</myCosmosDBacct>
Creates a cosmos database
az cosmosdb keys list --name <myCosmosDBacct> --resource-group az204-cosmos-rg
Get primary key
az group delete --name az204-cosmos-rg --no-wait
Deletes a resource group
Azure CosmosDb - Change feed
persistent record of changes to a container in the order of occcurence
Azure CosmosDb - Change feed push model
Pushes work to clients to be processed
Azure CosmosDb - Change feed pull model
Clients pulls work from the change feed processor. Clients are responsible for storing state and handling load.
Azure CosmosDb - Monitored Container
change feed processor component - Any insert or update is reflecting in the change feed
Azure CosmosDb - Lease Container
change feed processor component - Acts as a state storage and coordinates change processing across multiple workers
Azure CosmosDb - Compute Instance
change feed processor component - a type of compute service listens actively for changes
Azure CosmosDb - Delegate
Code that defines what to do about each batch of changes
Api management - Control flow <tag>
<choose>
Api management - conditional <tag>
<when>
&& <otherwise>
API management - Error code for limit concurrent calls
429 Too Many Request
API Management - Request header for keys
Ocp-Apim-Subscription-Key
Azure Container Registry - service tier with geo-replication
Premium
FQDN
Full qualified domain name
az extension add --name containerapp --upgrade
Adds the Azure Container App extension to the Azure CLI
az group create \ --name $myRG \ --location $myLocation
Creates a resouce group in $MyLocation
az containerapp create \ --name my-container-app \ --resource-group $myRG \ --environment $myAppContEnv \ --image mcr.microsoft.com/azuredocs/containerapps-helloworld:latest \ --target-port 80 \ ==>> --ingress 'external' <== --query properties.configuration.ingress.fqdn
–ingress as external means that the created container app is available for public requests
Restarts on crash:
Container instance v Container Apps
Container apps