0 votes
in Azure by
What are On Demand WebJobs aka. Scheduled WebJobs aka. Triggered WebJobs in Azure?

1 Answer

0 votes
by
Triggered WebJobs are WebJobs which are run once when a URL is called or when the schedule property is present in schedule.job. Scheduled WebJobs are just WebJobs which have had an Azure Scheduler Job created to call URL on a schedule.

Summary:

+ Executable/Script on demand

+ Scheduled executions

- Have to trigger via .scm endpoint

- Scaling is manual

- VM is always required
...