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:
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.