CODEWITHSUNDEEP
Home
Blog
Discussion
azure-functions
webhooks
azure-webjobs
azure-webjobssdk
Manish
Reputation: 71
Difference between Azure Function and Web Job Or Azure function Vs Web Job
Azure Function :
Azure function based on the web job SDK.
Deployment through visual studio: not deploy as a package , its only create function within resourceGroup"
Consumption plan** and App service plan both available
Don't support remote debugging.
return OUTPUT
when call via http.
Integrate with webhook
we can create Web Api.
bydefault it support autoscale.
Web Job :
web job sdk depends on language.(e.g. C#..)
Always Deploy with App Service.(e.g. web App,web Api etc..)
**
Only
App service plan.
Support Remote debugging.
not return any value.
not option to integrate with
webhook
.
do not create web api.
For Continious Trigger: its provide two options for Scale-
a.
multi instance
: scale your web jobs across all instances of app service plan
b.
single instance
- copy only single copy of your web job running regardless on app service plan instance count. "
Upvotes: 0
Views: 3850
Answers (0)
Related Questions
What's the difference between "HTTP request" and "Webhook request" in Azure Functions?
Azure App Service Plan: Function vs App Service?
Azure Webjobs vs Azure Functions : How to choose
What is the difference between WCF and Azure Function?
Difference between creating azure function using HTTP triggers/generic webhooks?
Difference between azure function and azure static web app? How it works?
How to use Azure Functions instead of WebJobs?
Azure Function Structure
How do Azure Functions Bindings Work?
Azure Webjobs: One Job with several Functions, or several Jobs with 1 function each?
Close Ad