SlideShare a Scribd company logo
Azure full
Introducing
Microsoft Azure
What is the cloud?
Cloud Computing
Cloud Services (a.k.a Cloud Models)On Premises
Storage
Servers
Networking
O/S
Middleware
Virtualization
Data
Applications
Runtime
Youmanage
Infrastructure
(as a Service)
Storage
Servers
Networking
O/S
Middleware
Virtualization
Data
Applications
Runtime
ManagedbyMicrosoft
Youmanage
Platform
(as a Service)
ManagedbyMicrosoft
Youmanage
Storage
Servers
Networking
O/S
Middleware
Virtualization
Applications
Runtime
Data
Software
(as a Service)
ManagedbyMicrosoft
Storage
Servers
Networking
O/S
Middleware
Virtualization
Applications
Runtime
Data
Cloud Services hungry kya!On Premises
Made at home
Toppings
Tomato Sauce
Cheese
Fire
Owen
Pizza Dough
Soda
Dining Table
Electricity/Gas
Youmanage
IaaS
Take and Bake
Topping
Tomato Sauce
Cheese
Fire
Owen
Pizza Dough
Soda
Dining Table
Electricity/Gas
ManagedbyVendor
Youmanage
PaaS
Pizza delivered
ManagedbyVendor
Youmanage
Topping
Tomato Sauce
Cheese
Fire
Owen
Pizza Dough
Dinning Table
Electricity/Gas
Soda
SaaS
Dine out
ManagedbyVendor
Topping
Tomato Sauce
Cheese
Fire
Owen
Pizza Dough
Dinning Table
Electricity/Gas
Soda
Why the cloud?
Why the
cloud?
โ€ข Rapidly setup environments to drive business priorities
โ€ข Scale to meet peak demands
โ€ข Increase daily activities, efficiency and reduced cost.
Infrastructure
designed for Scale
Demo: Azure Portal
ASP.NET Core High-Level Overview
Demo: .Net Core with Azure
Speaker Name
you@email.com
@twitter
Azure Functions
For Serverless computing
Mohit Chhabra
mohitchhabra@techie.com
Mohit_techy
Azure Functions
For Serverless computing
The โ€œEvolutionโ€ of Application Platforms
What is Serverless?
Serverless is Great!
Serverless Application Platform Components
Common Scenarios
Web Glue
Bots IoT
Azure Functions
Create a โ€œserverlessโ€
event-driven
experience that
extends the existing
Azure App Service
platform by building
โ€œnanoservicesโ€ that can
scale based on
demand
Supported Languages and Tools
Create functions in
JavaScript, C#, Python,
and PHP, as well as
scripting options such as
Bash, Batch, and
PowerShell, that can be
triggered by virtually
any event in Azure, 3rd
party services, or on
premise systems
Common Scenarios
Your App or
Service
Office
365
Office
Graph
Azure
Storage
Other
Functions
Legacy
Systems
Web
Services
โ€ข Timer-based processing
โ€ข Azure service event processing
โ€ข SaaS event processing
โ€ข Serverless web application
architectures
โ€ข Serverless mobile backends
โ€ข Real-time stream processing
โ€ข Real-time bot messaging
Function App Templates
Function App templates are
categorized into general areas of
Timer, Data Processing, and
Webhook & API
โ€ข BlobTrigger
โ€ข EventHubTrigger
โ€ข Generic webhook
โ€ข GitHub webhook
โ€ข HTTPTrigger
โ€ข QueueTrigger
โ€ข ServiceBusQueueTrigger
โ€ข ServiceBusTopicTrigger
โ€ข TimerTrigger
โ€ข Blank & Experimental
Timer Function Apps
โ€ข Run at explicitly specified intervals, like every day at 2:00 am
using CRON expressions, like โ€œ0 */5 * * * *โ€œ (every 5 minutes)
โ€ข Can send information to other systems, but typically donโ€™t
โ€œreturnโ€ information, only write to logs
โ€ข Great for redundant cleanup and data management
โ€ข Great for checking state of services
โ€ข Can be combined with other functions
Data Processing Function Apps
โ€ข Run when triggered by a data event, such as an item being
added to a queue or container
โ€ข Typically have in and out parameters
โ€ข Great for responding to CRUD events
โ€ข Great for performing CRUD events
โ€ข Great for moving content
โ€ข Access data across services
Webhook & API Function Apps
โ€ข Triggered by events in other services, like GitHub, Team
Foundation Services, Office 365, OneDrive, Microsoft
PowerApps
โ€ข Takes in a request and sends back a response
โ€ข Often mimic Web API and legacy web services flows
โ€ข Typically need CORS settings managed
โ€ข Best for exposing functionality to other apps and services
โ€ข Great for building Logic Apps
code
Anatomy of a Function
โ€ข A โ€œRunโ€ file that containing the
function code
โ€ข A โ€œFunctionโ€ file containing all
service and trigger bindings and
parameters
โ€ข A โ€œProjectโ€ file containing project
assembly and NuGet package
references
โ€ข App Service settings, such as
connection strings and API keys
.NET Core and
Project references
Function
configuration
Executable code
Function Bindings
Type Service Trigger Input Output
Schedule Azure Functions โœ”
HTTP (REST or webhook) Azure Functions โœ” โœ”*
Blob Storage Azure Storage โœ” โœ” โœ”
Events Azure Event Hubs โœ” โœ”
Queues Azure Storage โœ” โœ”
Tables Azure Storage โœ” โœ”
Tables Azure Mobile Apps โœ” โœ”
No-SQL DB Azure DocumentDB โœ” โœ”
Push Notifications Azure Notification Hubs โœ”
Bindings serve as the basis for all connections to and from a
function. Many bindings can be โ€œbi-directionalโ€ as well.
Testing Functions
โ€ข Command-line tools
โ€ข 3rd party products such as
Postman and Swagger
โ€ข Direct web calls via cURL
โ€ข Nested functions
โ€ข Microsoft Azure Storage
Explorer
โ€ข Visual Studio Cloud
Explorer
Azure full
References
โ€ข https://azure.microsoft.com
โ€ข https://azure.microsoft.com/en-in/services/functions/
โ€ข https://info.microsoft.com/microsoft-serverless-approach-webinar-
on-demand.html
โ€ข https://docs.microsoft.com
The โ€œEvolutionโ€ of Application Platforms
What is Serverless?
Serverless is Great!
Serverless Application Platform Components
Common Scenarios
Web Glue
Bots IoT
Azure Functions
Create a โ€œserverlessโ€
event-driven experience
that extends the existing
Azure App Service
platform by building
โ€œnanoservicesโ€ that can
scale based on demand
Supported Languages and Tools
Create functions in
JavaScript, C#, Python,
and PHP, as well as
scripting options such as
Bash, Batch, and
PowerShell, that can be
triggered by virtually any
event in Azure, 3rd party
services, or on premise
systems
Common Scenarios
Your App or
Service
Office 365
Office
Graph
Azure
Storage
Other
Functions
Legacy
Systems
Web
Services
โ€ข Timer-based processing
โ€ข Azure service event processing
โ€ข SaaS event processing
โ€ข Serverless web application
architectures
โ€ข Serverless mobile backends
โ€ข Real-time stream processing
โ€ข Real-time bot messaging
Function App Templates
Function App templates are
categorized into general areas of
Timer, Data Processing, and
Webhook & API
โ€ข BlobTrigger
โ€ข EventHubTrigger
โ€ข Generic webhook
โ€ข GitHub webhook
โ€ข HTTPTrigger
โ€ข QueueTrigger
โ€ข ServiceBusQueueTrigger
โ€ข ServiceBusTopicTrigger
โ€ข TimerTrigger
โ€ข Blank & Experimental
Timer Function Apps
โ€ข Run at explicitly specified intervals, like every day at 2:00 am using
CRON expressions, like โ€œ0 */5 * * * *โ€œ (every 5 minutes)
โ€ข Can send information to other systems, but typically donโ€™t
โ€œreturnโ€ information, only write to logs
โ€ข Great for redundant cleanup and data management
โ€ข Great for checking state of services
โ€ข Can be combined with other functions
Data Processing Function Apps
โ€ข Run when triggered by a data event, such as an item being added
to a queue or container
โ€ข Typically have in and out parameters
โ€ข Great for responding to CRUD events
โ€ข Great for performing CRUD events
โ€ข Great for moving content
โ€ข Access data across services
Webhook & API Function Apps
โ€ข Triggered by events in other services, like GitHub, Team
Foundation Services, Office 365, OneDrive, Microsoft PowerApps
โ€ข Takes in a request and sends back a response
โ€ข Often mimic Web API and legacy web services flows
โ€ข Typically need CORS settings managed
โ€ข Best for exposing functionality to other apps and services
โ€ข Great for building Logic Apps
code
Anatomy of a Function
โ€ข A โ€œRunโ€ file that containing the
function code
โ€ข A โ€œFunctionโ€ file containing all service
and trigger bindings and parameters
โ€ข A โ€œProjectโ€ file containing project
assembly and NuGet package
references
โ€ข App Service settings, such as
connection strings and API keys
.NET Core and Project
references
Function configuration
Executable code
Function Bindings
Type Service Trigger Input Output
Schedule Azure Functions โœ”
HTTP (REST or webhook) Azure Functions โœ” โœ”*
Blob Storage Azure Storage โœ” โœ” โœ”
Events Azure Event Hubs โœ” โœ”
Queues Azure Storage โœ” โœ”
Tables Azure Storage โœ” โœ”
Tables Azure Mobile Apps โœ” โœ”
No-SQL DB Azure DocumentDB โœ” โœ”
Push Notifications Azure Notification Hubs โœ”
Bindings serve as the basis for all connections to and from a function.
Many bindings can be โ€œbi-directionalโ€ as well.
Azure full
References
โ€ข https://azure.microsoft.com
โ€ข https://azure.microsoft.com/en-in/services/functions/
โ€ข https://info.microsoft.com/microsoft-serverless-approach-webinar-
on-demand.html
โ€ข https://docs.microsoft.com
Mohit Chhabra
Mohitchhabra@techie.com
@Mohit_techy
Overview
Containerization
with Microsoft Azure
Containers
โ€ข Lightweight alternative to virtual machines
โ€ข Smaller, less expensive, faster to start up, and self-contained
Host Operating System
Hypervisor
Guest OS
Libraries
App
Guest OS
Libraries
App
Guest OS
Libraries
App
Operating System
Container Engine
Libraries
App
Libraries
App
Libraries
App
Virtual Machines
Containers
Docker
โ€ข Leading open-source
containerization platform
โ€ข Supported natively in Azure
Docker containers wrap up a piece of software
in a complete filesystem that contains
everything it needs to run: code, runtime,
system tools, system libraries โ€“ anything you
can install on a server. This guarantees that it
will always run the same, regardless of the
environment it is running in
Docker Architecture
Docker CLI
โ€ข Command-line interface for Docker, available for Linux, OS X, and
Windows (available separately or as part of Docker Toolbox)
Running a Container
docker run -i -t ubuntu /bin/bash
Common Docker CLI Commands
docker run - Use an image to run a container
docker pull - Pull an image from a registry
docker build - Build a Docker image
docker exec - Execute a command in a container
docker stop - Stop a running container
docker images - List available Docker images
docker ps - List running Docker containers
Azure Container Service
โ€ข Provides robust, ready-to-use Docker hosting environment
โ€ข Uses open-source orchestration tools (DC/OS and Swarm)
Container Orchestration
โ€ข Facilitates deployment and management of containers
โ€ข Containers by design are intended to be deployed in large volumes
with some applications using dozens to even thousands of containers
โ€ข With this type of scale, automating container deployment and
management with orchestration software becomes necessary
โ€ข Azure Container service supports Kubernetes, DC/OS, and Docker
Swarm
Container Clusters
โ€ข Facilitate load balancing, scalability, and high availability
โ€ข A cluster is composed of master nodes which control the
orchestration, and agent nodes that host the containers
Kubernetes
โ€ข Open-source orchestration engine from Google
โ€ข Provides a robust framework for container orchestration, yet remains
lightweight and scalable
โ€ข Supported by Azure Container Service and tightly integrated with ACS,
allowing Kubernetes to modify deployments
DC/OS
โ€ข Datacenter Operating System built on Apache Mesos
โ€ข Creates logical data centers and abstracts underlying hardware
โ€ข Provides resources traditionally provided by infrastructure, including
networking, DNS, and load balancing
โ€ข Natively supported by Azure Container Service
Docker Swarm
โ€ข Dockerโ€™s own orchestration engine
โ€ข Current releases of the Docker engine have
โ€œSwarm Modeโ€ built in and can many of the
same things that other orchestration engines do
โ€ข Lacks a GUI, but makes up for it with tight
integration with Docker
โ€ข Natively supported by Azure Container Service
http://azureguy.azurewebsites.net/working-azure-container-registry-azure-kubernetes-service/
Ad

More Related Content

What's hot (20)

CoLabora - Identity in a World of Cloud - June 2015
CoLabora - Identity in a World of Cloud - June 2015CoLabora - Identity in a World of Cloud - June 2015
CoLabora - Identity in a World of Cloud - June 2015
CoLaboraDK
ย 
ECS19 - Patrick Curran, Eric Shupps - SHAREPOINT 24X7X365: ARCHITECTING FOR H...
ECS19 - Patrick Curran, Eric Shupps - SHAREPOINT 24X7X365: ARCHITECTING FOR H...ECS19 - Patrick Curran, Eric Shupps - SHAREPOINT 24X7X365: ARCHITECTING FOR H...
ECS19 - Patrick Curran, Eric Shupps - SHAREPOINT 24X7X365: ARCHITECTING FOR H...
European Collaboration Summit
ย 
[Vonฤina] Configuring SharePoint 2016 for BI Scenarios
[Vonฤina] Configuring SharePoint 2016 for BI Scenarios[Vonฤina] Configuring SharePoint 2016 for BI Scenarios
[Vonฤina] Configuring SharePoint 2016 for BI Scenarios
European Collaboration Summit
ย 
2 Speed IT powered by Microsoft Azure and Minecraft
2 Speed IT powered by Microsoft Azure and Minecraft2 Speed IT powered by Microsoft Azure and Minecraft
2 Speed IT powered by Microsoft Azure and Minecraft
Sriram Hariharan
ย 
O365Con19 - Developing Timerjob and Eventhandler Equivalents - Adis Jugo
O365Con19 - Developing Timerjob and Eventhandler Equivalents - Adis JugoO365Con19 - Developing Timerjob and Eventhandler Equivalents - Adis Jugo
O365Con19 - Developing Timerjob and Eventhandler Equivalents - Adis Jugo
NCCOMMS
ย 
ECS19 - Mike Ammerlaan - Integrate with OneDrive and SharePoint Files
ECS19 - Mike Ammerlaan - Integrate with OneDrive and SharePoint FilesECS19 - Mike Ammerlaan - Integrate with OneDrive and SharePoint Files
ECS19 - Mike Ammerlaan - Integrate with OneDrive and SharePoint Files
European Collaboration Summit
ย 
ECS19 - Mike Ammerlaan - Microsoft Graph Data Connect
ECS19 - Mike Ammerlaan - Microsoft Graph Data ConnectECS19 - Mike Ammerlaan - Microsoft Graph Data Connect
ECS19 - Mike Ammerlaan - Microsoft Graph Data Connect
European Collaboration Summit
ย 
Azure PaaS (WebApp & SQL Database) workshop solution
Azure PaaS (WebApp & SQL Database) workshop solutionAzure PaaS (WebApp & SQL Database) workshop solution
Azure PaaS (WebApp & SQL Database) workshop solution
Gelis Wu
ย 
Windows Azure Workflows Manager - Running Durable Workflows in the Cloud and ...
Windows Azure Workflows Manager - Running Durable Workflows in the Cloud and ...Windows Azure Workflows Manager - Running Durable Workflows in the Cloud and ...
Windows Azure Workflows Manager - Running Durable Workflows in the Cloud and ...
BizTalk360
ย 
Rev Your Engines: SharePoint Performance Best Practices
Rev Your Engines: SharePoint Performance Best PracticesRev Your Engines: SharePoint Performance Best Practices
Rev Your Engines: SharePoint Performance Best Practices
SPC Adriatics
ย 
Toyko azure meetup # 1 azure paa s overview
Toyko azure meetup # 1   azure paa s overviewToyko azure meetup # 1   azure paa s overview
Toyko azure meetup # 1 azure paa s overview
Tokyo Azure Meetup
ย 
ECS19 - Paul Collinge - Transforming enterprise network connectivity in a clo...
ECS19 - Paul Collinge - Transforming enterprise network connectivity in a clo...ECS19 - Paul Collinge - Transforming enterprise network connectivity in a clo...
ECS19 - Paul Collinge - Transforming enterprise network connectivity in a clo...
European Collaboration Summit
ย 
Comparison and mapping between various cloud services 2019
Comparison and mapping between various cloud services 2019Comparison and mapping between various cloud services 2019
Comparison and mapping between various cloud services 2019
jones4u
ย 
No SQL, No Problem: Use Azure DocumentDB
No SQL, No Problem: Use Azure DocumentDBNo SQL, No Problem: Use Azure DocumentDB
No SQL, No Problem: Use Azure DocumentDB
Ken Cenerelli
ย 
Dealing with and learning from the sandbox
Dealing with and learning from the sandboxDealing with and learning from the sandbox
Dealing with and learning from the sandbox
Elaine Van Bergen
ย 
Integrating SaaS application using Microsoftโ€™s Azure App Service Platform
Integrating SaaS application using Microsoftโ€™s Azure App Service PlatformIntegrating SaaS application using Microsoftโ€™s Azure App Service Platform
Integrating SaaS application using Microsoftโ€™s Azure App Service Platform
BizTalk360
ย 
Alfresco Transform Service DevCon 2019
Alfresco Transform Service DevCon 2019Alfresco Transform Service DevCon 2019
Alfresco Transform Service DevCon 2019
J V
ย 
Azure Functions @ global azure day 2017
Azure Functions  @ global azure day 2017Azure Functions  @ global azure day 2017
Azure Functions @ global azure day 2017
Sean Feldman
ย 
Ecs19 - Hans Brender - Is OneDrive Really Enterprise Ready
Ecs19 - Hans Brender -  Is OneDrive Really Enterprise ReadyEcs19 - Hans Brender -  Is OneDrive Really Enterprise Ready
Ecs19 - Hans Brender - Is OneDrive Really Enterprise Ready
European Collaboration Summit
ย 
Share point 2013 in a hybrid world
Share point 2013 in a hybrid worldShare point 2013 in a hybrid world
Share point 2013 in a hybrid world
Jethro Seghers
ย 
CoLabora - Identity in a World of Cloud - June 2015
CoLabora - Identity in a World of Cloud - June 2015CoLabora - Identity in a World of Cloud - June 2015
CoLabora - Identity in a World of Cloud - June 2015
CoLaboraDK
ย 
ECS19 - Patrick Curran, Eric Shupps - SHAREPOINT 24X7X365: ARCHITECTING FOR H...
ECS19 - Patrick Curran, Eric Shupps - SHAREPOINT 24X7X365: ARCHITECTING FOR H...ECS19 - Patrick Curran, Eric Shupps - SHAREPOINT 24X7X365: ARCHITECTING FOR H...
ECS19 - Patrick Curran, Eric Shupps - SHAREPOINT 24X7X365: ARCHITECTING FOR H...
European Collaboration Summit
ย 
[Vonฤina] Configuring SharePoint 2016 for BI Scenarios
[Vonฤina] Configuring SharePoint 2016 for BI Scenarios[Vonฤina] Configuring SharePoint 2016 for BI Scenarios
[Vonฤina] Configuring SharePoint 2016 for BI Scenarios
European Collaboration Summit
ย 
2 Speed IT powered by Microsoft Azure and Minecraft
2 Speed IT powered by Microsoft Azure and Minecraft2 Speed IT powered by Microsoft Azure and Minecraft
2 Speed IT powered by Microsoft Azure and Minecraft
Sriram Hariharan
ย 
O365Con19 - Developing Timerjob and Eventhandler Equivalents - Adis Jugo
O365Con19 - Developing Timerjob and Eventhandler Equivalents - Adis JugoO365Con19 - Developing Timerjob and Eventhandler Equivalents - Adis Jugo
O365Con19 - Developing Timerjob and Eventhandler Equivalents - Adis Jugo
NCCOMMS
ย 
ECS19 - Mike Ammerlaan - Integrate with OneDrive and SharePoint Files
ECS19 - Mike Ammerlaan - Integrate with OneDrive and SharePoint FilesECS19 - Mike Ammerlaan - Integrate with OneDrive and SharePoint Files
ECS19 - Mike Ammerlaan - Integrate with OneDrive and SharePoint Files
European Collaboration Summit
ย 
ECS19 - Mike Ammerlaan - Microsoft Graph Data Connect
ECS19 - Mike Ammerlaan - Microsoft Graph Data ConnectECS19 - Mike Ammerlaan - Microsoft Graph Data Connect
ECS19 - Mike Ammerlaan - Microsoft Graph Data Connect
European Collaboration Summit
ย 
Azure PaaS (WebApp & SQL Database) workshop solution
Azure PaaS (WebApp & SQL Database) workshop solutionAzure PaaS (WebApp & SQL Database) workshop solution
Azure PaaS (WebApp & SQL Database) workshop solution
Gelis Wu
ย 
Windows Azure Workflows Manager - Running Durable Workflows in the Cloud and ...
Windows Azure Workflows Manager - Running Durable Workflows in the Cloud and ...Windows Azure Workflows Manager - Running Durable Workflows in the Cloud and ...
Windows Azure Workflows Manager - Running Durable Workflows in the Cloud and ...
BizTalk360
ย 
Rev Your Engines: SharePoint Performance Best Practices
Rev Your Engines: SharePoint Performance Best PracticesRev Your Engines: SharePoint Performance Best Practices
Rev Your Engines: SharePoint Performance Best Practices
SPC Adriatics
ย 
Toyko azure meetup # 1 azure paa s overview
Toyko azure meetup # 1   azure paa s overviewToyko azure meetup # 1   azure paa s overview
Toyko azure meetup # 1 azure paa s overview
Tokyo Azure Meetup
ย 
ECS19 - Paul Collinge - Transforming enterprise network connectivity in a clo...
ECS19 - Paul Collinge - Transforming enterprise network connectivity in a clo...ECS19 - Paul Collinge - Transforming enterprise network connectivity in a clo...
ECS19 - Paul Collinge - Transforming enterprise network connectivity in a clo...
European Collaboration Summit
ย 
Comparison and mapping between various cloud services 2019
Comparison and mapping between various cloud services 2019Comparison and mapping between various cloud services 2019
Comparison and mapping between various cloud services 2019
jones4u
ย 
No SQL, No Problem: Use Azure DocumentDB
No SQL, No Problem: Use Azure DocumentDBNo SQL, No Problem: Use Azure DocumentDB
No SQL, No Problem: Use Azure DocumentDB
Ken Cenerelli
ย 
Dealing with and learning from the sandbox
Dealing with and learning from the sandboxDealing with and learning from the sandbox
Dealing with and learning from the sandbox
Elaine Van Bergen
ย 
Integrating SaaS application using Microsoftโ€™s Azure App Service Platform
Integrating SaaS application using Microsoftโ€™s Azure App Service PlatformIntegrating SaaS application using Microsoftโ€™s Azure App Service Platform
Integrating SaaS application using Microsoftโ€™s Azure App Service Platform
BizTalk360
ย 
Alfresco Transform Service DevCon 2019
Alfresco Transform Service DevCon 2019Alfresco Transform Service DevCon 2019
Alfresco Transform Service DevCon 2019
J V
ย 
Azure Functions @ global azure day 2017
Azure Functions  @ global azure day 2017Azure Functions  @ global azure day 2017
Azure Functions @ global azure day 2017
Sean Feldman
ย 
Ecs19 - Hans Brender - Is OneDrive Really Enterprise Ready
Ecs19 - Hans Brender -  Is OneDrive Really Enterprise ReadyEcs19 - Hans Brender -  Is OneDrive Really Enterprise Ready
Ecs19 - Hans Brender - Is OneDrive Really Enterprise Ready
European Collaboration Summit
ย 
Share point 2013 in a hybrid world
Share point 2013 in a hybrid worldShare point 2013 in a hybrid world
Share point 2013 in a hybrid world
Jethro Seghers
ย 

Similar to Azure full (20)

Azure Functions & Serverless Computing
Azure Functions & Serverless ComputingAzure Functions & Serverless Computing
Azure Functions & Serverless Computing
Abhimanyu Singhal
ย 
Azure Functions 101
Azure Functions 101Azure Functions 101
Azure Functions 101
Martin Abbott
ย 
2014.10.22 Building Azure Solutions with Office 365
2014.10.22 Building Azure Solutions with Office 3652014.10.22 Building Azure Solutions with Office 365
2014.10.22 Building Azure Solutions with Office 365
Marco Parenzan
ย 
Microsoft Azure Platform-as-a-Service (PaaS)
Microsoft Azure Platform-as-a-Service (PaaS)Microsoft Azure Platform-as-a-Service (PaaS)
Microsoft Azure Platform-as-a-Service (PaaS)
Chris Dufour
ย 
Getting started with development in azure
Getting started with development in azureGetting started with development in azure
Getting started with development in azure
Jasjit Chopra
ย 
Microservices in Azure
Microservices in AzureMicroservices in Azure
Microservices in Azure
Doug Vanderweide
ย 
Microservices in Azure
Microservices in AzureMicroservices in Azure
Microservices in Azure
Doug Vanderweide
ย 
2015-12-02 - WebCamp - Microsoft Azure Logic Apps
2015-12-02 - WebCamp - Microsoft Azure Logic Apps2015-12-02 - WebCamp - Microsoft Azure Logic Apps
2015-12-02 - WebCamp - Microsoft Azure Logic Apps
Sandro Pereira
ย 
Azure Functions Hands-on lab | Global Azure Bootcamp | Radu Vunvulea
Azure Functions Hands-on lab | Global Azure Bootcamp | Radu VunvuleaAzure Functions Hands-on lab | Global Azure Bootcamp | Radu Vunvulea
Azure Functions Hands-on lab | Global Azure Bootcamp | Radu Vunvulea
Radu Vunvulea
ย 
Tokyo Azure Meetup #7 - Introduction to Serverless Architectures with Azure F...
Tokyo Azure Meetup #7 - Introduction to Serverless Architectures with Azure F...Tokyo Azure Meetup #7 - Introduction to Serverless Architectures with Azure F...
Tokyo Azure Meetup #7 - Introduction to Serverless Architectures with Azure F...
Tokyo Azure Meetup
ย 
ArchitectNow - Designing Cloud-Native apps in Microsoft Azure
ArchitectNow  -  Designing Cloud-Native apps in Microsoft AzureArchitectNow  -  Designing Cloud-Native apps in Microsoft Azure
ArchitectNow - Designing Cloud-Native apps in Microsoft Azure
Kevin Grossnicklaus
ย 
Azure Functions Real World Examples
Azure Functions Real World Examples Azure Functions Real World Examples
Azure Functions Real World Examples
Yochay Kiriaty
ย 
Azure DevOps Best Practices Webinar
Azure DevOps Best Practices WebinarAzure DevOps Best Practices Webinar
Azure DevOps Best Practices Webinar
Cambay Digital
ย 
Moving from SBS to Azure
Moving from SBS to AzureMoving from SBS to Azure
Moving from SBS to Azure
Robert Crane
ย 
An Azure of Things, a developerโ€™s perspective
An Azure of Things, a developerโ€™s perspectiveAn Azure of Things, a developerโ€™s perspective
An Azure of Things, a developerโ€™s perspective
BizTalk360
ย 
Tokyo azure meetup #8 azure update, august
Tokyo azure meetup #8   azure update, augustTokyo azure meetup #8   azure update, august
Tokyo azure meetup #8 azure update, august
Tokyo Azure Meetup
ย 
Tokyo azure meetup #8 - Azure Update, August
Tokyo azure meetup #8 - Azure Update, AugustTokyo azure meetup #8 - Azure Update, August
Tokyo azure meetup #8 - Azure Update, August
Kanio Dimitrov
ย 
Designing Microservices
Designing MicroservicesDesigning Microservices
Designing Microservices
David Chou
ย 
Azure from scratch part 3 By Girish Kalamati
Azure from scratch part 3 By Girish KalamatiAzure from scratch part 3 By Girish Kalamati
Azure from scratch part 3 By Girish Kalamati
Girish Kalamati
ย 
Devops continuousintegration and deployment onaws puttingmoneybackintoyourmis...
Devops continuousintegration and deployment onaws puttingmoneybackintoyourmis...Devops continuousintegration and deployment onaws puttingmoneybackintoyourmis...
Devops continuousintegration and deployment onaws puttingmoneybackintoyourmis...
Emerson Eduardo Rodrigues Von Staffen
ย 
Azure Functions & Serverless Computing
Azure Functions & Serverless ComputingAzure Functions & Serverless Computing
Azure Functions & Serverless Computing
Abhimanyu Singhal
ย 
Azure Functions 101
Azure Functions 101Azure Functions 101
Azure Functions 101
Martin Abbott
ย 
2014.10.22 Building Azure Solutions with Office 365
2014.10.22 Building Azure Solutions with Office 3652014.10.22 Building Azure Solutions with Office 365
2014.10.22 Building Azure Solutions with Office 365
Marco Parenzan
ย 
Microsoft Azure Platform-as-a-Service (PaaS)
Microsoft Azure Platform-as-a-Service (PaaS)Microsoft Azure Platform-as-a-Service (PaaS)
Microsoft Azure Platform-as-a-Service (PaaS)
Chris Dufour
ย 
Getting started with development in azure
Getting started with development in azureGetting started with development in azure
Getting started with development in azure
Jasjit Chopra
ย 
Microservices in Azure
Microservices in AzureMicroservices in Azure
Microservices in Azure
Doug Vanderweide
ย 
Microservices in Azure
Microservices in AzureMicroservices in Azure
Microservices in Azure
Doug Vanderweide
ย 
2015-12-02 - WebCamp - Microsoft Azure Logic Apps
2015-12-02 - WebCamp - Microsoft Azure Logic Apps2015-12-02 - WebCamp - Microsoft Azure Logic Apps
2015-12-02 - WebCamp - Microsoft Azure Logic Apps
Sandro Pereira
ย 
Azure Functions Hands-on lab | Global Azure Bootcamp | Radu Vunvulea
Azure Functions Hands-on lab | Global Azure Bootcamp | Radu VunvuleaAzure Functions Hands-on lab | Global Azure Bootcamp | Radu Vunvulea
Azure Functions Hands-on lab | Global Azure Bootcamp | Radu Vunvulea
Radu Vunvulea
ย 
Tokyo Azure Meetup #7 - Introduction to Serverless Architectures with Azure F...
Tokyo Azure Meetup #7 - Introduction to Serverless Architectures with Azure F...Tokyo Azure Meetup #7 - Introduction to Serverless Architectures with Azure F...
Tokyo Azure Meetup #7 - Introduction to Serverless Architectures with Azure F...
Tokyo Azure Meetup
ย 
ArchitectNow - Designing Cloud-Native apps in Microsoft Azure
ArchitectNow  -  Designing Cloud-Native apps in Microsoft AzureArchitectNow  -  Designing Cloud-Native apps in Microsoft Azure
ArchitectNow - Designing Cloud-Native apps in Microsoft Azure
Kevin Grossnicklaus
ย 
Azure Functions Real World Examples
Azure Functions Real World Examples Azure Functions Real World Examples
Azure Functions Real World Examples
Yochay Kiriaty
ย 
Azure DevOps Best Practices Webinar
Azure DevOps Best Practices WebinarAzure DevOps Best Practices Webinar
Azure DevOps Best Practices Webinar
Cambay Digital
ย 
Moving from SBS to Azure
Moving from SBS to AzureMoving from SBS to Azure
Moving from SBS to Azure
Robert Crane
ย 
An Azure of Things, a developerโ€™s perspective
An Azure of Things, a developerโ€™s perspectiveAn Azure of Things, a developerโ€™s perspective
An Azure of Things, a developerโ€™s perspective
BizTalk360
ย 
Tokyo azure meetup #8 azure update, august
Tokyo azure meetup #8   azure update, augustTokyo azure meetup #8   azure update, august
Tokyo azure meetup #8 azure update, august
Tokyo Azure Meetup
ย 
Tokyo azure meetup #8 - Azure Update, August
Tokyo azure meetup #8 - Azure Update, AugustTokyo azure meetup #8 - Azure Update, August
Tokyo azure meetup #8 - Azure Update, August
Kanio Dimitrov
ย 
Designing Microservices
Designing MicroservicesDesigning Microservices
Designing Microservices
David Chou
ย 
Azure from scratch part 3 By Girish Kalamati
Azure from scratch part 3 By Girish KalamatiAzure from scratch part 3 By Girish Kalamati
Azure from scratch part 3 By Girish Kalamati
Girish Kalamati
ย 
Devops continuousintegration and deployment onaws puttingmoneybackintoyourmis...
Devops continuousintegration and deployment onaws puttingmoneybackintoyourmis...Devops continuousintegration and deployment onaws puttingmoneybackintoyourmis...
Devops continuousintegration and deployment onaws puttingmoneybackintoyourmis...
Emerson Eduardo Rodrigues Von Staffen
ย 
Ad

More from Mohit Chhabra (19)

Azure Sentinel.pptx
Azure Sentinel.pptxAzure Sentinel.pptx
Azure Sentinel.pptx
Mohit Chhabra
ย 
Azure Governance for Enterprise
Azure Governance for EnterpriseAzure Governance for Enterprise
Azure Governance for Enterprise
Mohit Chhabra
ย 
Virtual assistant with azure ai
Virtual assistant with azure ai Virtual assistant with azure ai
Virtual assistant with azure ai
Mohit Chhabra
ย 
Azure bastion
Azure bastionAzure bastion
Azure bastion
Mohit Chhabra
ย 
Secure hybrid workload with azure
Secure hybrid workload with azureSecure hybrid workload with azure
Secure hybrid workload with azure
Mohit Chhabra
ย 
Azure functions
Azure functionsAzure functions
Azure functions
Mohit Chhabra
ย 
Convert your sketches to code with microsoft ai
Convert your sketches to code with microsoft aiConvert your sketches to code with microsoft ai
Convert your sketches to code with microsoft ai
Mohit Chhabra
ย 
Intro to docker and kubernetes
Intro to docker and kubernetesIntro to docker and kubernetes
Intro to docker and kubernetes
Mohit Chhabra
ย 
Net overview-and-roadmap
Net overview-and-roadmapNet overview-and-roadmap
Net overview-and-roadmap
Mohit Chhabra
ย 
Azure BluePrint
Azure BluePrintAzure BluePrint
Azure BluePrint
Mohit Chhabra
ย 
Azure devops
Azure devopsAzure devops
Azure devops
Mohit Chhabra
ย 
Containerization in microsoft azure
Containerization in microsoft azureContainerization in microsoft azure
Containerization in microsoft azure
Mohit Chhabra
ย 
Cosmosdb graph
Cosmosdb graphCosmosdb graph
Cosmosdb graph
Mohit Chhabra
ย 
App innovationcircles azure
App innovationcircles azureApp innovationcircles azure
App innovationcircles azure
Mohit Chhabra
ย 
App innovationcircles xamarin
App innovationcircles xamarinApp innovationcircles xamarin
App innovationcircles xamarin
Mohit Chhabra
ย 
Cloud based programming
Cloud based programmingCloud based programming
Cloud based programming
Mohit Chhabra
ย 
Azure document db/Cosmos DB
Azure document db/Cosmos DBAzure document db/Cosmos DB
Azure document db/Cosmos DB
Mohit Chhabra
ย 
Azure cli2.0
Azure cli2.0Azure cli2.0
Azure cli2.0
Mohit Chhabra
ย 
DevOps in Microsoft Azure
DevOps in Microsoft Azure DevOps in Microsoft Azure
DevOps in Microsoft Azure
Mohit Chhabra
ย 
Azure Sentinel.pptx
Azure Sentinel.pptxAzure Sentinel.pptx
Azure Sentinel.pptx
Mohit Chhabra
ย 
Azure Governance for Enterprise
Azure Governance for EnterpriseAzure Governance for Enterprise
Azure Governance for Enterprise
Mohit Chhabra
ย 
Virtual assistant with azure ai
Virtual assistant with azure ai Virtual assistant with azure ai
Virtual assistant with azure ai
Mohit Chhabra
ย 
Azure bastion
Azure bastionAzure bastion
Azure bastion
Mohit Chhabra
ย 
Secure hybrid workload with azure
Secure hybrid workload with azureSecure hybrid workload with azure
Secure hybrid workload with azure
Mohit Chhabra
ย 
Azure functions
Azure functionsAzure functions
Azure functions
Mohit Chhabra
ย 
Convert your sketches to code with microsoft ai
Convert your sketches to code with microsoft aiConvert your sketches to code with microsoft ai
Convert your sketches to code with microsoft ai
Mohit Chhabra
ย 
Intro to docker and kubernetes
Intro to docker and kubernetesIntro to docker and kubernetes
Intro to docker and kubernetes
Mohit Chhabra
ย 
Net overview-and-roadmap
Net overview-and-roadmapNet overview-and-roadmap
Net overview-and-roadmap
Mohit Chhabra
ย 
Azure BluePrint
Azure BluePrintAzure BluePrint
Azure BluePrint
Mohit Chhabra
ย 
Azure devops
Azure devopsAzure devops
Azure devops
Mohit Chhabra
ย 
Containerization in microsoft azure
Containerization in microsoft azureContainerization in microsoft azure
Containerization in microsoft azure
Mohit Chhabra
ย 
Cosmosdb graph
Cosmosdb graphCosmosdb graph
Cosmosdb graph
Mohit Chhabra
ย 
App innovationcircles azure
App innovationcircles azureApp innovationcircles azure
App innovationcircles azure
Mohit Chhabra
ย 
App innovationcircles xamarin
App innovationcircles xamarinApp innovationcircles xamarin
App innovationcircles xamarin
Mohit Chhabra
ย 
Cloud based programming
Cloud based programmingCloud based programming
Cloud based programming
Mohit Chhabra
ย 
Azure document db/Cosmos DB
Azure document db/Cosmos DBAzure document db/Cosmos DB
Azure document db/Cosmos DB
Mohit Chhabra
ย 
Azure cli2.0
Azure cli2.0Azure cli2.0
Azure cli2.0
Mohit Chhabra
ย 
DevOps in Microsoft Azure
DevOps in Microsoft Azure DevOps in Microsoft Azure
DevOps in Microsoft Azure
Mohit Chhabra
ย 
Ad

Recently uploaded (20)

Drupalcamp Finland โ€“ Measuring Front-end Energy Consumption
Drupalcamp Finland โ€“ Measuring Front-end Energy ConsumptionDrupalcamp Finland โ€“ Measuring Front-end Energy Consumption
Drupalcamp Finland โ€“ Measuring Front-end Energy Consumption
Exove
ย 
How analogue intelligence complements AI
How analogue intelligence complements AIHow analogue intelligence complements AI
How analogue intelligence complements AI
Paul Rowe
ย 
Dev Dives: Automate and orchestrate your processes with UiPath Maestro
Dev Dives: Automate and orchestrate your processes with UiPath MaestroDev Dives: Automate and orchestrate your processes with UiPath Maestro
Dev Dives: Automate and orchestrate your processes with UiPath Maestro
UiPathCommunity
ย 
Complete Guide to Advanced Logistics Management Software in Riyadh.pdf
Complete Guide to Advanced Logistics Management Software in Riyadh.pdfComplete Guide to Advanced Logistics Management Software in Riyadh.pdf
Complete Guide to Advanced Logistics Management Software in Riyadh.pdf
Software Company
ย 
Technology Trends in 2025: AI and Big Data Analytics
Technology Trends in 2025: AI and Big Data AnalyticsTechnology Trends in 2025: AI and Big Data Analytics
Technology Trends in 2025: AI and Big Data Analytics
InData Labs
ย 
Greenhouse_Monitoring_Presentation.pptx.
Greenhouse_Monitoring_Presentation.pptx.Greenhouse_Monitoring_Presentation.pptx.
Greenhouse_Monitoring_Presentation.pptx.
hpbmnnxrvb
ย 
TrustArc Webinar: Consumer Expectations vs Corporate Realities on Data Broker...
TrustArc Webinar: Consumer Expectations vs Corporate Realities on Data Broker...TrustArc Webinar: Consumer Expectations vs Corporate Realities on Data Broker...
TrustArc Webinar: Consumer Expectations vs Corporate Realities on Data Broker...
TrustArc
ย 
Massive Power Outage Hits Spain, Portugal, and France: Causes, Impact, and On...
Massive Power Outage Hits Spain, Portugal, and France: Causes, Impact, and On...Massive Power Outage Hits Spain, Portugal, and France: Causes, Impact, and On...
Massive Power Outage Hits Spain, Portugal, and France: Causes, Impact, and On...
Aqusag Technologies
ย 
Rusty Waters: Elevating Lakehouses Beyond Spark
Rusty Waters: Elevating Lakehouses Beyond SparkRusty Waters: Elevating Lakehouses Beyond Spark
Rusty Waters: Elevating Lakehouses Beyond Spark
carlyakerly1
ย 
Build Your Own Copilot & Agents For Devs
Build Your Own Copilot & Agents For DevsBuild Your Own Copilot & Agents For Devs
Build Your Own Copilot & Agents For Devs
Brian McKeiver
ย 
Generative Artificial Intelligence (GenAI) in Business
Generative Artificial Intelligence (GenAI) in BusinessGenerative Artificial Intelligence (GenAI) in Business
Generative Artificial Intelligence (GenAI) in Business
Dr. Tathagat Varma
ย 
Semantic Cultivators : The Critical Future Role to Enable AI
Semantic Cultivators : The Critical Future Role to Enable AISemantic Cultivators : The Critical Future Role to Enable AI
Semantic Cultivators : The Critical Future Role to Enable AI
artmondano
ย 
Andrew Marnell: Transforming Business Strategy Through Data-Driven Insights
Andrew Marnell: Transforming Business Strategy Through Data-Driven InsightsAndrew Marnell: Transforming Business Strategy Through Data-Driven Insights
Andrew Marnell: Transforming Business Strategy Through Data-Driven Insights
Andrew Marnell
ย 
Big Data Analytics Quick Research Guide by Arthur Morgan
Big Data Analytics Quick Research Guide by Arthur MorganBig Data Analytics Quick Research Guide by Arthur Morgan
Big Data Analytics Quick Research Guide by Arthur Morgan
Arthur Morgan
ย 
UiPath Community Berlin: Orchestrator API, Swagger, and Test Manager API
UiPath Community Berlin: Orchestrator API, Swagger, and Test Manager APIUiPath Community Berlin: Orchestrator API, Swagger, and Test Manager API
UiPath Community Berlin: Orchestrator API, Swagger, and Test Manager API
UiPathCommunity
ย 
Transcript: #StandardsGoals for 2025: Standards & certification roundup - Tec...
Transcript: #StandardsGoals for 2025: Standards & certification roundup - Tec...Transcript: #StandardsGoals for 2025: Standards & certification roundup - Tec...
Transcript: #StandardsGoals for 2025: Standards & certification roundup - Tec...
BookNet Canada
ย 
2025-05-Q4-2024-Investor-Presentation.pptx
2025-05-Q4-2024-Investor-Presentation.pptx2025-05-Q4-2024-Investor-Presentation.pptx
2025-05-Q4-2024-Investor-Presentation.pptx
Samuele Fogagnolo
ย 
Increasing Retail Store Efficiency How can Planograms Save Time and Money.pptx
Increasing Retail Store Efficiency How can Planograms Save Time and Money.pptxIncreasing Retail Store Efficiency How can Planograms Save Time and Money.pptx
Increasing Retail Store Efficiency How can Planograms Save Time and Money.pptx
Anoop Ashok
ย 
How Can I use the AI Hype in my Business Context?
How Can I use the AI Hype in my Business Context?How Can I use the AI Hype in my Business Context?
How Can I use the AI Hype in my Business Context?
Daniel Lehner
ย 
IEDM 2024 Tutorial2_Advances in CMOS Technologies and Future Directions for C...
IEDM 2024 Tutorial2_Advances in CMOS Technologies and Future Directions for C...IEDM 2024 Tutorial2_Advances in CMOS Technologies and Future Directions for C...
IEDM 2024 Tutorial2_Advances in CMOS Technologies and Future Directions for C...
organizerofv
ย 
Drupalcamp Finland โ€“ Measuring Front-end Energy Consumption
Drupalcamp Finland โ€“ Measuring Front-end Energy ConsumptionDrupalcamp Finland โ€“ Measuring Front-end Energy Consumption
Drupalcamp Finland โ€“ Measuring Front-end Energy Consumption
Exove
ย 
How analogue intelligence complements AI
How analogue intelligence complements AIHow analogue intelligence complements AI
How analogue intelligence complements AI
Paul Rowe
ย 
Dev Dives: Automate and orchestrate your processes with UiPath Maestro
Dev Dives: Automate and orchestrate your processes with UiPath MaestroDev Dives: Automate and orchestrate your processes with UiPath Maestro
Dev Dives: Automate and orchestrate your processes with UiPath Maestro
UiPathCommunity
ย 
Complete Guide to Advanced Logistics Management Software in Riyadh.pdf
Complete Guide to Advanced Logistics Management Software in Riyadh.pdfComplete Guide to Advanced Logistics Management Software in Riyadh.pdf
Complete Guide to Advanced Logistics Management Software in Riyadh.pdf
Software Company
ย 
Technology Trends in 2025: AI and Big Data Analytics
Technology Trends in 2025: AI and Big Data AnalyticsTechnology Trends in 2025: AI and Big Data Analytics
Technology Trends in 2025: AI and Big Data Analytics
InData Labs
ย 
Greenhouse_Monitoring_Presentation.pptx.
Greenhouse_Monitoring_Presentation.pptx.Greenhouse_Monitoring_Presentation.pptx.
Greenhouse_Monitoring_Presentation.pptx.
hpbmnnxrvb
ย 
TrustArc Webinar: Consumer Expectations vs Corporate Realities on Data Broker...
TrustArc Webinar: Consumer Expectations vs Corporate Realities on Data Broker...TrustArc Webinar: Consumer Expectations vs Corporate Realities on Data Broker...
TrustArc Webinar: Consumer Expectations vs Corporate Realities on Data Broker...
TrustArc
ย 
Massive Power Outage Hits Spain, Portugal, and France: Causes, Impact, and On...
Massive Power Outage Hits Spain, Portugal, and France: Causes, Impact, and On...Massive Power Outage Hits Spain, Portugal, and France: Causes, Impact, and On...
Massive Power Outage Hits Spain, Portugal, and France: Causes, Impact, and On...
Aqusag Technologies
ย 
Rusty Waters: Elevating Lakehouses Beyond Spark
Rusty Waters: Elevating Lakehouses Beyond SparkRusty Waters: Elevating Lakehouses Beyond Spark
Rusty Waters: Elevating Lakehouses Beyond Spark
carlyakerly1
ย 
Build Your Own Copilot & Agents For Devs
Build Your Own Copilot & Agents For DevsBuild Your Own Copilot & Agents For Devs
Build Your Own Copilot & Agents For Devs
Brian McKeiver
ย 
Generative Artificial Intelligence (GenAI) in Business
Generative Artificial Intelligence (GenAI) in BusinessGenerative Artificial Intelligence (GenAI) in Business
Generative Artificial Intelligence (GenAI) in Business
Dr. Tathagat Varma
ย 
Semantic Cultivators : The Critical Future Role to Enable AI
Semantic Cultivators : The Critical Future Role to Enable AISemantic Cultivators : The Critical Future Role to Enable AI
Semantic Cultivators : The Critical Future Role to Enable AI
artmondano
ย 
Andrew Marnell: Transforming Business Strategy Through Data-Driven Insights
Andrew Marnell: Transforming Business Strategy Through Data-Driven InsightsAndrew Marnell: Transforming Business Strategy Through Data-Driven Insights
Andrew Marnell: Transforming Business Strategy Through Data-Driven Insights
Andrew Marnell
ย 
Big Data Analytics Quick Research Guide by Arthur Morgan
Big Data Analytics Quick Research Guide by Arthur MorganBig Data Analytics Quick Research Guide by Arthur Morgan
Big Data Analytics Quick Research Guide by Arthur Morgan
Arthur Morgan
ย 
UiPath Community Berlin: Orchestrator API, Swagger, and Test Manager API
UiPath Community Berlin: Orchestrator API, Swagger, and Test Manager APIUiPath Community Berlin: Orchestrator API, Swagger, and Test Manager API
UiPath Community Berlin: Orchestrator API, Swagger, and Test Manager API
UiPathCommunity
ย 
Transcript: #StandardsGoals for 2025: Standards & certification roundup - Tec...
Transcript: #StandardsGoals for 2025: Standards & certification roundup - Tec...Transcript: #StandardsGoals for 2025: Standards & certification roundup - Tec...
Transcript: #StandardsGoals for 2025: Standards & certification roundup - Tec...
BookNet Canada
ย 
2025-05-Q4-2024-Investor-Presentation.pptx
2025-05-Q4-2024-Investor-Presentation.pptx2025-05-Q4-2024-Investor-Presentation.pptx
2025-05-Q4-2024-Investor-Presentation.pptx
Samuele Fogagnolo
ย 
Increasing Retail Store Efficiency How can Planograms Save Time and Money.pptx
Increasing Retail Store Efficiency How can Planograms Save Time and Money.pptxIncreasing Retail Store Efficiency How can Planograms Save Time and Money.pptx
Increasing Retail Store Efficiency How can Planograms Save Time and Money.pptx
Anoop Ashok
ย 
How Can I use the AI Hype in my Business Context?
How Can I use the AI Hype in my Business Context?How Can I use the AI Hype in my Business Context?
How Can I use the AI Hype in my Business Context?
Daniel Lehner
ย 
IEDM 2024 Tutorial2_Advances in CMOS Technologies and Future Directions for C...
IEDM 2024 Tutorial2_Advances in CMOS Technologies and Future Directions for C...IEDM 2024 Tutorial2_Advances in CMOS Technologies and Future Directions for C...
IEDM 2024 Tutorial2_Advances in CMOS Technologies and Future Directions for C...
organizerofv
ย 

Azure full

  • 3. What is the cloud?
  • 5. Cloud Services (a.k.a Cloud Models)On Premises Storage Servers Networking O/S Middleware Virtualization Data Applications Runtime Youmanage Infrastructure (as a Service) Storage Servers Networking O/S Middleware Virtualization Data Applications Runtime ManagedbyMicrosoft Youmanage Platform (as a Service) ManagedbyMicrosoft Youmanage Storage Servers Networking O/S Middleware Virtualization Applications Runtime Data Software (as a Service) ManagedbyMicrosoft Storage Servers Networking O/S Middleware Virtualization Applications Runtime Data
  • 6. Cloud Services hungry kya!On Premises Made at home Toppings Tomato Sauce Cheese Fire Owen Pizza Dough Soda Dining Table Electricity/Gas Youmanage IaaS Take and Bake Topping Tomato Sauce Cheese Fire Owen Pizza Dough Soda Dining Table Electricity/Gas ManagedbyVendor Youmanage PaaS Pizza delivered ManagedbyVendor Youmanage Topping Tomato Sauce Cheese Fire Owen Pizza Dough Dinning Table Electricity/Gas Soda SaaS Dine out ManagedbyVendor Topping Tomato Sauce Cheese Fire Owen Pizza Dough Dinning Table Electricity/Gas Soda
  • 8. Why the cloud? โ€ข Rapidly setup environments to drive business priorities โ€ข Scale to meet peak demands โ€ข Increase daily activities, efficiency and reduced cost.
  • 12. Demo: .Net Core with Azure
  • 15. The โ€œEvolutionโ€ of Application Platforms
  • 20. Azure Functions Create a โ€œserverlessโ€ event-driven experience that extends the existing Azure App Service platform by building โ€œnanoservicesโ€ that can scale based on demand
  • 21. Supported Languages and Tools Create functions in JavaScript, C#, Python, and PHP, as well as scripting options such as Bash, Batch, and PowerShell, that can be triggered by virtually any event in Azure, 3rd party services, or on premise systems
  • 22. Common Scenarios Your App or Service Office 365 Office Graph Azure Storage Other Functions Legacy Systems Web Services โ€ข Timer-based processing โ€ข Azure service event processing โ€ข SaaS event processing โ€ข Serverless web application architectures โ€ข Serverless mobile backends โ€ข Real-time stream processing โ€ข Real-time bot messaging
  • 23. Function App Templates Function App templates are categorized into general areas of Timer, Data Processing, and Webhook & API โ€ข BlobTrigger โ€ข EventHubTrigger โ€ข Generic webhook โ€ข GitHub webhook โ€ข HTTPTrigger โ€ข QueueTrigger โ€ข ServiceBusQueueTrigger โ€ข ServiceBusTopicTrigger โ€ข TimerTrigger โ€ข Blank & Experimental
  • 24. Timer Function Apps โ€ข Run at explicitly specified intervals, like every day at 2:00 am using CRON expressions, like โ€œ0 */5 * * * *โ€œ (every 5 minutes) โ€ข Can send information to other systems, but typically donโ€™t โ€œreturnโ€ information, only write to logs โ€ข Great for redundant cleanup and data management โ€ข Great for checking state of services โ€ข Can be combined with other functions
  • 25. Data Processing Function Apps โ€ข Run when triggered by a data event, such as an item being added to a queue or container โ€ข Typically have in and out parameters โ€ข Great for responding to CRUD events โ€ข Great for performing CRUD events โ€ข Great for moving content โ€ข Access data across services
  • 26. Webhook & API Function Apps โ€ข Triggered by events in other services, like GitHub, Team Foundation Services, Office 365, OneDrive, Microsoft PowerApps โ€ข Takes in a request and sends back a response โ€ข Often mimic Web API and legacy web services flows โ€ข Typically need CORS settings managed โ€ข Best for exposing functionality to other apps and services โ€ข Great for building Logic Apps
  • 27. code Anatomy of a Function โ€ข A โ€œRunโ€ file that containing the function code โ€ข A โ€œFunctionโ€ file containing all service and trigger bindings and parameters โ€ข A โ€œProjectโ€ file containing project assembly and NuGet package references โ€ข App Service settings, such as connection strings and API keys .NET Core and Project references Function configuration Executable code
  • 28. Function Bindings Type Service Trigger Input Output Schedule Azure Functions โœ” HTTP (REST or webhook) Azure Functions โœ” โœ”* Blob Storage Azure Storage โœ” โœ” โœ” Events Azure Event Hubs โœ” โœ” Queues Azure Storage โœ” โœ” Tables Azure Storage โœ” โœ” Tables Azure Mobile Apps โœ” โœ” No-SQL DB Azure DocumentDB โœ” โœ” Push Notifications Azure Notification Hubs โœ” Bindings serve as the basis for all connections to and from a function. Many bindings can be โ€œbi-directionalโ€ as well.
  • 29. Testing Functions โ€ข Command-line tools โ€ข 3rd party products such as Postman and Swagger โ€ข Direct web calls via cURL โ€ข Nested functions โ€ข Microsoft Azure Storage Explorer โ€ข Visual Studio Cloud Explorer
  • 31. References โ€ข https://azure.microsoft.com โ€ข https://azure.microsoft.com/en-in/services/functions/ โ€ข https://info.microsoft.com/microsoft-serverless-approach-webinar- on-demand.html โ€ข https://docs.microsoft.com
  • 32. The โ€œEvolutionโ€ of Application Platforms
  • 37. Azure Functions Create a โ€œserverlessโ€ event-driven experience that extends the existing Azure App Service platform by building โ€œnanoservicesโ€ that can scale based on demand
  • 38. Supported Languages and Tools Create functions in JavaScript, C#, Python, and PHP, as well as scripting options such as Bash, Batch, and PowerShell, that can be triggered by virtually any event in Azure, 3rd party services, or on premise systems
  • 39. Common Scenarios Your App or Service Office 365 Office Graph Azure Storage Other Functions Legacy Systems Web Services โ€ข Timer-based processing โ€ข Azure service event processing โ€ข SaaS event processing โ€ข Serverless web application architectures โ€ข Serverless mobile backends โ€ข Real-time stream processing โ€ข Real-time bot messaging
  • 40. Function App Templates Function App templates are categorized into general areas of Timer, Data Processing, and Webhook & API โ€ข BlobTrigger โ€ข EventHubTrigger โ€ข Generic webhook โ€ข GitHub webhook โ€ข HTTPTrigger โ€ข QueueTrigger โ€ข ServiceBusQueueTrigger โ€ข ServiceBusTopicTrigger โ€ข TimerTrigger โ€ข Blank & Experimental
  • 41. Timer Function Apps โ€ข Run at explicitly specified intervals, like every day at 2:00 am using CRON expressions, like โ€œ0 */5 * * * *โ€œ (every 5 minutes) โ€ข Can send information to other systems, but typically donโ€™t โ€œreturnโ€ information, only write to logs โ€ข Great for redundant cleanup and data management โ€ข Great for checking state of services โ€ข Can be combined with other functions
  • 42. Data Processing Function Apps โ€ข Run when triggered by a data event, such as an item being added to a queue or container โ€ข Typically have in and out parameters โ€ข Great for responding to CRUD events โ€ข Great for performing CRUD events โ€ข Great for moving content โ€ข Access data across services
  • 43. Webhook & API Function Apps โ€ข Triggered by events in other services, like GitHub, Team Foundation Services, Office 365, OneDrive, Microsoft PowerApps โ€ข Takes in a request and sends back a response โ€ข Often mimic Web API and legacy web services flows โ€ข Typically need CORS settings managed โ€ข Best for exposing functionality to other apps and services โ€ข Great for building Logic Apps
  • 44. code Anatomy of a Function โ€ข A โ€œRunโ€ file that containing the function code โ€ข A โ€œFunctionโ€ file containing all service and trigger bindings and parameters โ€ข A โ€œProjectโ€ file containing project assembly and NuGet package references โ€ข App Service settings, such as connection strings and API keys .NET Core and Project references Function configuration Executable code
  • 45. Function Bindings Type Service Trigger Input Output Schedule Azure Functions โœ” HTTP (REST or webhook) Azure Functions โœ” โœ”* Blob Storage Azure Storage โœ” โœ” โœ” Events Azure Event Hubs โœ” โœ” Queues Azure Storage โœ” โœ” Tables Azure Storage โœ” โœ” Tables Azure Mobile Apps โœ” โœ” No-SQL DB Azure DocumentDB โœ” โœ” Push Notifications Azure Notification Hubs โœ” Bindings serve as the basis for all connections to and from a function. Many bindings can be โ€œbi-directionalโ€ as well.
  • 47. References โ€ข https://azure.microsoft.com โ€ข https://azure.microsoft.com/en-in/services/functions/ โ€ข https://info.microsoft.com/microsoft-serverless-approach-webinar- on-demand.html โ€ข https://docs.microsoft.com
  • 49. Containers โ€ข Lightweight alternative to virtual machines โ€ข Smaller, less expensive, faster to start up, and self-contained Host Operating System Hypervisor Guest OS Libraries App Guest OS Libraries App Guest OS Libraries App Operating System Container Engine Libraries App Libraries App Libraries App Virtual Machines Containers
  • 50. Docker โ€ข Leading open-source containerization platform โ€ข Supported natively in Azure Docker containers wrap up a piece of software in a complete filesystem that contains everything it needs to run: code, runtime, system tools, system libraries โ€“ anything you can install on a server. This guarantees that it will always run the same, regardless of the environment it is running in
  • 52. Docker CLI โ€ข Command-line interface for Docker, available for Linux, OS X, and Windows (available separately or as part of Docker Toolbox)
  • 53. Running a Container docker run -i -t ubuntu /bin/bash
  • 54. Common Docker CLI Commands docker run - Use an image to run a container docker pull - Pull an image from a registry docker build - Build a Docker image docker exec - Execute a command in a container docker stop - Stop a running container docker images - List available Docker images docker ps - List running Docker containers
  • 55. Azure Container Service โ€ข Provides robust, ready-to-use Docker hosting environment โ€ข Uses open-source orchestration tools (DC/OS and Swarm)
  • 56. Container Orchestration โ€ข Facilitates deployment and management of containers โ€ข Containers by design are intended to be deployed in large volumes with some applications using dozens to even thousands of containers โ€ข With this type of scale, automating container deployment and management with orchestration software becomes necessary โ€ข Azure Container service supports Kubernetes, DC/OS, and Docker Swarm
  • 57. Container Clusters โ€ข Facilitate load balancing, scalability, and high availability โ€ข A cluster is composed of master nodes which control the orchestration, and agent nodes that host the containers
  • 58. Kubernetes โ€ข Open-source orchestration engine from Google โ€ข Provides a robust framework for container orchestration, yet remains lightweight and scalable โ€ข Supported by Azure Container Service and tightly integrated with ACS, allowing Kubernetes to modify deployments
  • 59. DC/OS โ€ข Datacenter Operating System built on Apache Mesos โ€ข Creates logical data centers and abstracts underlying hardware โ€ข Provides resources traditionally provided by infrastructure, including networking, DNS, and load balancing โ€ข Natively supported by Azure Container Service
  • 60. Docker Swarm โ€ข Dockerโ€™s own orchestration engine โ€ข Current releases of the Docker engine have โ€œSwarm Modeโ€ built in and can many of the same things that other orchestration engines do โ€ข Lacks a GUI, but makes up for it with tight integration with Docker โ€ข Natively supported by Azure Container Service

Editor's Notes

  • #4: Speaking Points: There are numerous terms and definitions floating around in the industry for โ€œthe cloudโ€, โ€œcloud computingโ€, โ€œcloud servicesโ€, etc. Microsoft thinks of the cloud as simply an approach to computing that enables applications to be delivered at scale for a variety of workloads and client devices. The cloud can help deliver IT as a standardized serviceโ€ฆfreeing you up to focus on your business
  • #5: Slide Objectives: Explain the three established industry terms for cloud services Speaker Notes: There is a lot of talk in the industry about different terms like Platform as a Service, Infrastructure as a Service, and Software as a Service. Since PDC08 when we first announced the Windows Azure our focus has been on delivering a platform as a service offering where you can build applications. Where the platform abstracts you from the complexities of building and running applications. We fundamentally believe that the future path forward for development is by providing a platform. In fact, as youโ€™ll see in a few minutes, we believe that there are a number of new capabilities that should be delivered as services to the platform. Notes: There is a lot of confusion in the industry when it comes to the cloud. Itโ€™s important that you understand both what is happening in the industry and how we think about the cloud. This is the most commonly used taxonomy for differentiating between types of cloud services. The industry has defined three categories of services: IaaS โ€“ a set of infrastructure level capabilities such as an operating system, network connectivity, etc. that are delivered as pay for use services and can be used to host applications. PaaS โ€“ higher level sets of functionality that are delivered as consumable services for developers who are building applications. PaaS is about abstracting developers from the underlying infrastructure to enable applications to quickly be composed. SaaS โ€“ applications that are delivered using a service delivery model where organizations can simply consume and use the application. Typically an organization would pay for the use of the application or the application could be monetized through ad revenue. It is important to note that these 3 types of services may exist independently of one another or combined with one another.
  • #6: Slide Objectives: Explain the differences and relationship between IaaS, PaaS, and SaaS in more detail. Speaking Points: Hereโ€™s another way to look at the cloud services taxonomy and how this taxonomy maps to the components in an IT infrastructure. Packaged Software With packaged software a customer would be responsible for managing the entire stack โ€“ ranging from the network connectivity to the applications. IaaS With Infrastructure as a Service, the lower levels of the stack are managed by a vendor. Some of these components can be provided by traditional hosters โ€“ in fact most of them have moved to having a virtualized offering. Very few actually provide an OS The customer is still responsible for managing the OS through the Applications. For the developer, an obvious benefit with IaaS is that it frees the developer from many concerns when provisioning physical or virtual machines. This was one of the earliest and primary use cases for Amazon Web Services Elastic Cloud Compute (EC2). Developers were able to readily provision virtual machines (AMIs) on EC2, develop and test solutions and, often, run the results โ€˜in productionโ€™. The only requirement was a credit card to pay for the services. PaaS With Platform as a Service, everything from the network connectivity through the runtime is provided and managed by the platform vendor. The Windows Azure best fits in this category today. In fact because we donโ€™t provide access to the underlying virtualization or operating system today, weโ€™re often referred to as not providing IaaS. PaaS offerings further reduce the developer burden by additionally supporting the platform runtime and related application services. With PaaS, the developer can, almost immediately, begin creating the business logic for an application. Potentially, the increases in productivity are considerable and, because the hardware and operational aspects of the cloud platform are also managed by the cloud platform provider, applications can quickly be taken from an idea to reality very quickly. SaaS Finally, with SaaS, a vendor provides the application and abstracts you from all of the underlying components.
  • #10: And you get all the goodness shown in the previous slides across the WW
  • #21: Azure Functions are part of the Azure Web + Mobile suite of App Services and are designed to enable the creation of small pieces of meaningful, reusable methods, easily shared across services. These serverless, event-driven methods are often referred to as โ€œnanoservicesโ€ due to their small size. Although an Azure Function can contain quite a bit of code, they are typically designed to serve a single purpose, and respond to events in connected services.
  • #22: Azure Functions can be created in most common development and scripting languages, and can be โ€œtriggeredโ€ by events in other Azure App Services, such as Web, Mobile, Logic, and API apps. Azure Functions can also be exposed via HTTP URL schemes for easy integration into legacy systems.
  • #23: Azure Functions are โ€œevent-drivenโ€ meaning they run based on associated and configure events, or โ€œtriggersโ€. For example an Azure Function could be triggered by a simple timer, such as running a process once every 24-hours, or triggered by an event in a document management system, such as when a new document is uploaded to a SharePoint library. Azure Functions can also respond to Azure-specific events, such as an image added to a Storage Blob or a notification arriving in a Message Queue.
  • #24: Although Azure Functions can be created from scratchโ€, the Azure Portal exposes a large number of ever-growing templates to help get developers started. These templates are typically designed with specific triggers in mind, such as a Blob Storage event, or a GitHub webhook event. Templates can easily form the basis for robust function creation, and are really designed just to get a developer started.
  • #25: Timer Functions are exactly what they sound like: Functions triggered by a specific time event. Timer Functions are perfect for clean up and maintenance processes and can easily be combined with other functions for more robust scenarios. Timer Functions us CRON expressions to configure schedules. Itโ€™s a good idea to get familiar with CRON syntax, but in the meantime there are a number of tools online to help you build CRON expressions.
  • #26: Data Processing Functions are triggered by activity in a datastore, such as a table, queue, or container. Data Processing Functions also typically have both โ€œinโ€ and โ€œoutโ€ parameters, meaning they can accept an object as a parameter, and then process information and then return another object from within the function. This is not the same as a โ€œreturnโ€ value, as most Azure Functions either return void, or an HTTP response such as โ€œcreatedโ€, โ€œacceptedโ€, or โ€œOKโ€.
  • #27: Webhook and API Functions are designed to easily integrate with 3rd party systems, like GitHub, Office 365, and especially Microsoft PowerApps. Since Webhook and API Functions are often exposed to external or legacy systems, they typically need CORS settings managed in order to โ€œallowโ€ external resources to โ€œseeโ€ and execute the function. Most Azure Logic Apps leverage Webhook and API Functions directly.
  • #28: An Azure Function is really a group of a few files that work in harmony. All actual function logic resides in a โ€œRunโ€ file written in a language of choice. A โ€œProjectโ€ file is similar to a project file in other technologies such as .NET Core or Universal Windows Platform and contains โ€œsecondaryโ€ assembly references such as NuGet packages. Finally a โ€œFunctionโ€ file contains information about triggers and parameters, such as locations of Storage Queue connection strings and whether the parameter is design as an โ€œinโ€, โ€œoutโ€ or โ€œbi-directionalโ€. Optionally, additional configuration is also found in the Function App Settings such as an API Key or database connection string.
  • #29: Without bindings, an Azure Function would just be a โ€œdisconnectedโ€ algorithm without any way to serve a purpose. Bindings server to connect functions and output to other services. Some of the most common binding types and features are listed in the table, however variations and adaptations can and do exist.
  • #30: Many Azure Functions are exposed via an actual URL that can be called directly from a web client or browser. When an Azure Function is not exposed via a URL its common practice to call the function from another function, such as a Timer-based Function for testing purposes only. Since Azure Functions can be nested, testing scenarios can be quite varied. For managing and testing Azure Functions that integrate with Storage Containers, Microsoft provides the Microsoft Azure Storage Explorer, as well as the Visual Studio Cloud Explorer. The Logs console in the Azure Function Designer is also a great way to view and trace function processing.
  • #38: Azure Functions are part of the Azure Web + Mobile suite of App Services and are designed to enable the creation of small pieces of meaningful, reusable methods, easily shared across services. These serverless, event-driven methods are often referred to as โ€œnanoservicesโ€ due to their small size. Although an Azure Function can contain quite a bit of code, they are typically designed to serve a single purpose, and respond to events in connected services.
  • #39: Azure Functions can be created in most common development and scripting languages, and can be โ€œtriggeredโ€ by events in other Azure App Services, such as Web, Mobile, Logic, and API apps. Azure Functions can also be exposed via HTTP URL schemes for easy integration into legacy systems.
  • #40: Azure Functions are โ€œevent-drivenโ€ meaning they run based on associated and configure events, or โ€œtriggersโ€. For example an Azure Function could be triggered by a simple timer, such as running a process once every 24-hours, or triggered by an event in a document management system, such as when a new document is uploaded to a SharePoint library. Azure Functions can also respond to Azure-specific events, such as an image added to a Storage Blob or a notification arriving in a Message Queue.
  • #41: Although Azure Functions can be created from scratchโ€, the Azure Portal exposes a large number of ever-growing templates to help get developers started. These templates are typically designed with specific triggers in mind, such as a Blob Storage event, or a GitHub webhook event. Templates can easily form the basis for robust function creation, and are really designed just to get a developer started.
  • #42: Timer Functions are exactly what they sound like: Functions triggered by a specific time event. Timer Functions are perfect for clean up and maintenance processes and can easily be combined with other functions for more robust scenarios. Timer Functions us CRON expressions to configure schedules. Itโ€™s a good idea to get familiar with CRON syntax, but in the meantime there are a number of tools online to help you build CRON expressions.
  • #43: Data Processing Functions are triggered by activity in a datastore, such as a table, queue, or container. Data Processing Functions also typically have both โ€œinโ€ and โ€œoutโ€ parameters, meaning they can accept an object as a parameter, and then process information and then return another object from within the function. This is not the same as a โ€œreturnโ€ value, as most Azure Functions either return void, or an HTTP response such as โ€œcreatedโ€, โ€œacceptedโ€, or โ€œOKโ€.
  • #44: Webhook and API Functions are designed to easily integrate with 3rd party systems, like GitHub, Office 365, and especially Microsoft PowerApps. Since Webhook and API Functions are often exposed to external or legacy systems, they typically need CORS settings managed in order to โ€œallowโ€ external resources to โ€œseeโ€ and execute the function. Most Azure Logic Apps leverage Webhook and API Functions directly.
  • #45: An Azure Function is really a group of a few files that work in harmony. All actual function logic resides in a โ€œRunโ€ file written in a language of choice. A โ€œProjectโ€ file is similar to a project file in other technologies such as .NET Core or Universal Windows Platform and contains โ€œsecondaryโ€ assembly references such as NuGet packages. Finally a โ€œFunctionโ€ file contains information about triggers and parameters, such as locations of Storage Queue connection strings and whether the parameter is design as an โ€œinโ€, โ€œoutโ€ or โ€œbi-directionalโ€. Optionally, additional configuration is also found in the Function App Settings such as an API Key or database connection string.
  • #46: Without bindings, an Azure Function would just be a โ€œdisconnectedโ€ algorithm without any way to serve a purpose. Bindings server to connect functions and output to other services. Some of the most common binding types and features are listed in the table, however variations and adaptations can and do exist.
  • #50: A virtual machine is -- well -- a virtualized machine created and managed by a hypervisor such as VirtualBox or Hyper-V. Even though a VM runs on a machine that has an operating system, each VM requires its own complete operating system, even if it's the same operating system as the host OS. VMs offer a very high degree of isolation, but at a cost: longer startup times, lower portability (ever tried to move a 127 GB virtual hard disk, or VHD, from one PC to another?), and higher memory requirements. Containers, by contrast, leverage the operating system that is already in place but offer nearly as much separation. RAM requirements are lower since the OS isn't being duplicated in each container, and cost is lower, too, because while cloud platforms typically charge for each VM, a single VM can host multiple container instances.
  • #51: Docker (www.docker.com) isn't the world's only containerization platform, but it is the most popular. It is free, open-source, and Linux-based, with Windows support (Windows Server 2016) in the works. It has earned massive mindshare in the developer community. And with Azure Container Service, you can deploy Docker containers to Azure with minimal effort. Moreover, Docker containers are easily moved between Azure and Amazon Web Services (AWS), affording developers portability between cloud platforms.
  • #52: Docker utilizes a client-server architecture. You execute Docker commands through a Docker client such as the Docker CLI or Kitematic. The client uses REST commands to communicate with the Docker daemon running on a Docker host such as the Azure Container services. These commands can be used to push, pull (docker pull), and create Docker images, to run them in containers, and to manage those containers. Images can be built with the docker build command, and they can be stand-alone, or they can "inherit" from other images. Images are stored in Docker registries, which can be public or private, local or remote. Docker Hub is a popular public registry that is managed by Docker; it contains a "huge collection" of images that anyone may use. The docker run command runs a container using an image as a template.
  • #53: The Docker Client, also known as the Docker CLI, is the primary tool you use to manage Docker containers. You can download container images from repositories such as Docker Hub, build container images, run container instances, list container images and instances, and much more. After connecting to Azure Container Service using SSH, you can use port forwarding to execute commands locally that act on an Azure Container Service running in the cloud. In this example, the -H switch used with the docker commands forwards commands sent to port 22375 on localhost to the Azure Container Services via SSH.
  • #54: This command pulls the image named "Ubuntu" from Docker Hub (or a local registry if the image is cached there) and runs it interactively in a container. "Interactively" means standard input, output, and error are connected locally so you can provide input to the container and see its output. Of course, you are not limited to the "Ubuntu" image. You can specify other images and even create images of your own with docker build. Where the container runs depends on the context. The container can run locally in a docker host (for example, a VM on Windows), or it can remotely if you connect to a remote Docker daemon (for example, one running in Azure) via SSH tunneling and use port forwarding to forward docker commands to the daemon.
  • #55: These are some of the most commonly used docker commands. You can also use docker push to push an image to a registry such as Docker Hub. Also, docker ps is often accompanied by a -a switch to list all containers, including those that are no longer running, while docker rm and docker rmi are used to delete (remove) containers and images, respectively. The docker build command uses a Dockerfile (a text file containing build commands) and a "context" -- for example, a specified directory in the file system -- to build Docker images.
  • #56: From the documentation: "Azure Container Service makes it simpler for you to create, configure, and manage a cluster of virtual machines that are preconfigured to run containerized applications. It uses an optimized configuration of popular open-source scheduling and orchestration tools. This enables you to use your existing skills, or draw upon a large and growing body of community expertise, to deploy and manage container-based applications on Microsoft Azure." ACS supports Linux containers and Windows containers. The latter rely on Windows Server 2016.
  • #57: Orchestration in the context of containers is the deployment and management of containers across infrastructure and networks. It provides the tools and software defined infrastructure needed to deploy containers. Containers by design are intended to be deployed in large volumes with some applications using dozen to even thousands of containers. With this type of scale, automating deployment and management of containers with Orchestration Software becomes necessary.
  • #58: A container cluster is intended to have redundancy for load balancing, scalability, and high availability. A cluster is composed of one or more Master Nodes which control the orchestration for scaling and delegation of tasks to the agents as well as provide monitoring. The Agent Nodes actually run the container loads.
  • #59: Kubernetes is anย open-source platform for automating deployment, scaling, and operations of application containersย across clusters of hosts, providing container-centric infrastructure. With Kubernetes, you are able to quickly and efficiently respond to customer demand: Deploy your applications quickly and predictably. Scale your applications on the fly. Seamlessly roll out new features. Optimize use of your hardware by using only the resources you need.
  • #60: Datacenter Operating System is, as the name implies, an operating system for for a datacenter rather than for a phyiscal of virtual machine. DC/OS abstracts away the underlying hardware from applications and provides much of the needed infrastructure that would otherwise come from multiple disparate services on traditional networks. This enables operations and developers alike to deploy and maintain applications in a uniform fashion with less time and resources spent monitoring the supporting network and network services for those applications.
  • #61: Docker Swarm is the orchestration engine from Docker. It has tight integration with Docker, so many of the same paradigms and tools that used with Swarm seamlessly as well as some additional features like overlay networks and Docker services that can run multiple containers spread across multiple hosts. These containers can seamlessly communicate and rapidly scale.