User Scheduled Jobs in Azure

134 Views Asked by At

We have a requirement for generating reports based on a schedule. These schedules can be configured by the users for a report. Initially We were planning to use Quartz in a worker role and Create jobs based on the user input. I'm not sure whether the Azure Scheduler can be used for this because I feel any jobs that could run at the application level could be configured in Azure but not the user jobs.

Please validate and let me know if there are any resources which I could look at.

1

There are 1 best solutions below

1
On

How about using Azure Web Jobs? (https://learn.microsoft.com/en-us/azure/app-service/web-sites-create-web-jobs)

Can you please explain more about the nature of reports you're running?