Is there a way to extend the running time of WebJobs in Azure?

85 Views Asked by At

I have a triggered WebJob which executes deletion of thousands of records. Based on dashboard, the maximum running time of for every execution is 5 minutes only: enter image description here

When checking the list, it manages to delete around 4,000 records in 5mins. What I need is to delete all the records in single run but due to the 5 minutes running time, there are records left during every run. Is there a way to increase the limit of this?

I did some refactoring with the Console Application the WebJob invokes to make sure that all records are deleted. However, It keeps coming back to the 5 minute running time. Please help.

0

There are 0 best solutions below