Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to do some processing in the background when the website is running. Every 30 minutes I need to run a piece of code that interacts with the database.

Would it be okay to use a timer that executes the code every 30 minutes or is there a better way of doing this? If timer is okay to implement, I'm thinking to implement it in the Application_Start() function in the Global.asax folder.

From what I've read, a timer wouldn't cause performance issues because for the majority of the time it's not actually running any code.

I've been searching but couldn't find anything MVC related. Not sure if that matters.

share|improve this question
3  
How much control do you have over the hosting environment? You can use something like Quartz.NET to implement a job scheduler in your web application, but it might be easier/better to create a console application that you can run via scheduled tasks or a windows service that will sleep and then wake up every X minutes to do whatever you need it to do. – Brian Driscoll Feb 12 at 21:35
6  
You have to take into account that IIS recycles the application pool and your application will not be running until a new request is made. If your timer can check that, it's OK to use it, otherwise I would go for a Windows service. – dan radu Feb 12 at 21:37
Ah, so you think having a separate program like a service to do the job should work. Not sure if it is worth making a completely new helper service for it though, reason being this piece of is not very complex and only involves updating some (around 1000) integers in a database. – Deniz Feb 12 at 21:40
3  
It would only be "ok" if your application is able to check something stateful (like a file or db value) on every run - i.e. it's not really a timer, or you're creating a new timer with each request. If it's important that the data is updated with any precision, then a service is better. For example, if your application stopped receiving traffic for 10 minutes, could that much of a delay be a problem? – jchapa Feb 12 at 21:45
1  
Yes, providing the timer restarts and does the work that is pending. Start with a timer and monitor the testing environment (logs, performance counters etc.). If you see any critical issue, or if the work gets too complex, change it to a Windows service. – dan radu Feb 12 at 21:49
show 2 more comments

1 Answer

If you are are really set on building it into asp.net take a look at Haacked's article The Dangers of Implementing Recurring Background Tasks In ASP.NET.

He outlines the dangers and some ways you can combat them, otherwise as others suggested a service/schedule task is a better solution.

Alternatively if you go down the windows service route take a look at TopShelf its a framework that lets you easily run services as console apps in development while still allowing them to be easily installed on the server

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.