Introduction

In this article, I will discuss web jobs and their types in Azure.

Azure web job is like a service that can run a task in the background. It doesn’t contain any user interface and it is the same as our Windows service.

The scenarios where we use Azure web jobs are

Types of web job

There are 3 types of web jobs such as

Continuous Web job

In a continuous web job, once the web job is created it keeps on running all the time.

Below, I will explain how to create a continuous web job.

It will take some time to create the web job and after that, the web job will show under the web jobs section.

Manually-triggered Web job

In manually-triggered web jobs, once the web job is created we need to manually trigger the job in the portal.

Below I will explain how to create a manually-triggered web job.

It will take some time to create the web job and after that, the web job will show under the web jobs section.

Scheduled Triggered Web Job

In a scheduled triggered web job, once the web job is created it will trigger automatically.

Below I will explain how to create a scheduled triggered web job.

It will take some time to create the web job and after that, the web job will show under the web jobs section.

After every 1 hour (or whatever the time set in the cron expression), the web job will run automatically.