Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to create a long running background task from MVC [duplicate]

I am using EF6, MVC 5 in VS 2013. I have a long-running task which is causing timeout errors and so I want to set it running as a separate background task and return immediately to the web controller. The background task will report progress to an SQL server database. What I need, essentially, is fire and forget functionality. There appear to be a number of options:

  1. Write the task's details to a server and use a Windows service to process them UPDATE: this was the options used
  2. Use async - this does not seem to be a safe option
  3. Use HostingEnvironment.QueueBackgroundWorkItem method

Option 3 would be preferred as it keeps all the code in one solution. Please could you comment on the pros and cons of each and point, if possible, working examples of number 3?

like image 791
Peter Smith Avatar asked Jan 27 '15 11:01

Peter Smith


1 Answers

HostingEnvironment.QueueBackgroundWorkItem is a valid solution, but keep in mind that the long-running process may be interrupted, for example if application pool recycles.

A better option would be to run it in a scheduled task, for example using Quartz.NET.

like image 185
L-Four Avatar answered Nov 11 '22 14:11

L-Four