Please enable JavaScript.
Coggle requires JavaScript to display documents.
Compute Services - Coggle Diagram
Compute Services
App Service
features
background jobs
WebJobs
-
run a program (.exe, Java, PHP, Python, or Node.js) or script (.cmd, .bat, PowerShell, or Bash) in the app context
mobile back-ends
-
Authenticate customers against common social providers, such as MSA, Google, Twitter, and Facebook
-
-
-
-
-
PaaS
focus on the website and API logic while Azure handles the infrastructure to run and scale your web applications
-
-
-
-
-
-
Function App
Serverless
abstraction of servers,
infrastructure, and operating systems
Azure takes care of managing the server infrastructure and the allocation and deallocation of resources based on demand
-
-
-
Azure Implementations
Azure Functions
ideal when
you're concerned only about the code running your service, and not the underlying platform or infrastructure
commonly used when you need to perform work in response to an event (often via a REST request), timer, or message from another Azure service
work can be completed quickly, within seconds or less
-
-
-
-