My personal notes
T

Azure Functions vs WebJobs

Both [[azure-functions]] and [[Azure App Service WebJobs]] are built on top of [[azure-app-service]].

They both support integrations with [[application-insights]].

Azure Functions is built on the WebJobs SDK, so it shares many of the same event triggers and connections to other Azure services.

Azure Functions offers more developer productivity than Azure App Service WebJobs does. It also offers more options for programming languages, development environments, Azure service integration, and pricing.

FunctionsWebJobs with WebJobs SDK
Serverless app model with automatic scalingYesNo
Develop and test in browserYesNo
Pay-per-use pricingYesNo
Integration with Logic AppsYesNo
Trigger eventsTimer, Azure Storage queues and blobs, Azure Service Bus queues and topics, Azure Cosmos DB, Azure Event Hubs, HTTP/WebHook (GitHub, Slack), Azure Event GridTimer, Azure Storage queues and blobs, Azure Service Bus queues and topics, Azure Cosmos DB, Azure Event Hubs, File system
Show Graph Visualisation