Tagged Questions
A scheduled task is a computer task that is scheduled to happen at a certain time and may repeat.
57
votes
15answers
11k views
Django - Set Up A Scheduled Job?
I've been working on a web app using Django, and I'm curious if there is a way to schedule a job to run periodically.
Basically I just want to run through the database and make some ...
54
votes
15answers
27k views
ASP.Net:Best way to run scheduled tasks
Today we have built an console application for running scheduled tasks for our ASP.NET website. But I think this approach is a bit error prone and difficult to maintain. How do you execute you ...
32
votes
11answers
20k views
What is the Windows version of cron?
A Google search turned up software that performs the same functions as cron, but nothing built into Windows.
I'm running Windows XP Professional, but advice for any version of Windows would be ...
24
votes
8answers
11k views
windows service vs scheduled task
What are the cons and pros of windows services vs scheduled tasks for running a program repeatedly (e.g. every two minutes)?
18
votes
9answers
35k views
How might I schedule a C# Windows Service to perform a task daily?
I have a service written in C# (.NET 1.1) and want it to perform some cleanup actions at midnight every night. I have to keep all code contained within the service, so what's the easiest way to ...
15
votes
14answers
34k views
How can I schedule a daily backup with SQL Server Express?
I'm running a small web application with SQL server express (2005) as backend. I can create a backup with a SQL script, however, I'd like to schedule this on a daily basis. As extra option ...
14
votes
10answers
5k views
Multithreaded job queue manager
I need to manage CPU-heavy multitaskable jobs in an interactive application. Just as background, my specific application is an engineering design interface. As a user tweaks different parameters and ...
12
votes
6answers
423 views
How to stop a Runnable scheduled for repeated execution after a certain number of executions
Situation
I have a Runnable. I have a class that schedules this Runnable for execution using a ScheduledExecutorService with scheduleWithFixedDelay.
Goal
I want to alter this class to schedule the ...
12
votes
2answers
329 views
Is this algorithm an existing real-time system algorithm?
I have developed a scheduling algorithm that provides probabilistic soft real-time guarantees, but it seems too obvious and simple to be novel. I have had a hard time though relating it to published ...
12
votes
2answers
25k views
Android - Controlling a task with Timer and TimerTask?
I am currently trying to set up a WiFi Scan in my Android application that scans for WiFi access points every 30 seconds.
I have used Timer and TimerTask to get the scan running correctly at the ...
11
votes
3answers
21k views
How do I stop/start a scheduled task on a remote computer programatically?
I want to write a script that will stop a scheduled task on a remote computer, do some stuff, and then start the schedule task back up.
How can I do it?
11
votes
9answers
578 views
“Out of Band” Processing Techiniques for asp.net applications
Jeff has previously blogged about using the cache to perform "out of band" processing on his websites, however I was wondering what other techniques people are using to process these sorts of tasks?
10
votes
2answers
3k views
.NET 4 Task Class Tutorial
.NET 4 has a Class - Task.
It's pretty interesting and I would like to start using it. For example, I would like to create a very simple Task-based files downloader, with the ability to cancel with ...
10
votes
1answer
238 views
Do scheduled tasks load Application.cfc in the same way as web pages?
Do scheduled tasks load the Application.cfc in the same way as web pages? We have a task which runs nightly and needs to use a services cfc loaded into the application. Will the application scope ...
10
votes
4answers
2k views
Is it possible to run a cron job in a web application?
In a java web application (servlets/spring mvc), using tomcat, is it possible to run a cron job type service?
e.g. every 15 minutes, purge the log database.
Can you do this in a way that is ...
10
votes
3answers
2k views
Will a SQL Server Job skip a scheduled run if it is already running?
The title pretty much says it all - if you schedule a SQL Server job to run every X number of minutes, and it does not finish the previous call before the # of minutes is up, will it skip the run ...
9
votes
3answers
713 views
scheduling dynamic jobs in resque scheduler
I'm trying to test out scheduling jobs in future using rails 3 and resque scheduler:
Following is the code I'm using but I'm getting NoMethodError set_schedule.
Resque.set_schedule("1", {
:cron ...
9
votes
8answers
4k views
PHP: running scheduled jobs (cron jobs)
I have a site on my webhotel I would like to run some scheduled tasks on. What methods of achieving this would you recommend?
What I’ve thought out so far is having a script included in the top of ...
8
votes
4answers
9k views
How to check if a service is running via batch file and start it, if it is not running?
I want to write a batch file that performs the following operation:
Check if a Service is running
** If is it running, quit the batch
** If it is not running, start the service
The code ...
8
votes
7answers
4k views
C# - Alternative to System.Timers.Timer, to call a function at a specific time
I want to call a specific function on my C# application at a specific time. At first I thought about using a Timer (System.Time.Timer), but that soon became impossible to use. Why?
Simple. The Timer ...
8
votes
2answers
918 views
An enterprise scheduler for python (like quartz)
I am looking for an enterprise tasks scheduler for python, like quartz is for Java.
Requirements:
Persistent: if the process restarts or the machine restarts, then all the jobs must stay there and ...
8
votes
4answers
4k views
Developing a scheduled task for Windows
I have to develop an application using C#.net that has to be run once a day. It only runs for at most one minute, so developing a Windows service is overkill and a scheduled task is the appropriate ...
7
votes
2answers
960 views
Cooperative multitasking using TPL
We are porting modeling application, which uses IronPython scripts for custom actions in modeling process. The existing application executes each Python script in separate thread and uses cooperative ...
7
votes
1answer
1k views
How to get list of scheduled tasks and last run results in ColdFusion?
We're trying to build a dashboard for our chron jobs -- CF, Java, SQLServer, etc. so that we can see when things were run last, what the result was, and when they're scheduled to run next.
Is there a ...
7
votes
6answers
7k views
How to run a stored procedure every day in SQL Server Express Edition?
How is it possible to run a stored procedure at a particular time every day in SQL Server Express Edition?
Notes:
This is needed to truncate an audit table
An alternative would be to modify the ...
7
votes
5answers
3k views
How do you handle scheduled tasks for your websites running on IIS?
I have a website that's running on a Windows server and I'd like to add some scheduled background tasks that perform various duties. For example, the client would like users to receive emails that ...
6
votes
3answers
2k views
Send emails in background job/scheduled task in asp.net mvc 3
I have an ASP.NET MVC 3 web app hosted on normal hosting, (i.e., no owned or virtual server), and I would like to be able to store e-mails say in a database and have them picked up and sent in a ...
6
votes
5answers
230 views
How to implement a nightly process in .NET?
I have a set of tasks that I would like to execute every night.
These tasks include, in order, querying a database, moving and then renaming some images and updating a database table. My first ...
6
votes
1answer
587 views
How do I schedule a task with Celery that runs on 1st of every month?
How do I schedule a task with celery that runs on 1st of every month?
6
votes
4answers
419 views
Is there a sophisticated Java WorkQueue API?
I am looking for a WorkQueue API offering the following features:
java.util.Queue compatible
offers (optional) Set-semantic
single- and batch-processing
concurrency (of course)
scheduling
different ...
6
votes
6answers
821 views
Ways of scheduling tasks (without writing windows scheduler) in asp.net
I am into shared hosting and they do not allow me to use windows scheduler... So what are the ways of achieving scheduled tasks ie(timed mail) in asp.net... I just saw background process by Jeff ...
6
votes
6answers
3k views
How to call a method daily, at specific time, in C#?
I've searched on SO and found answers about Quartz.net. But it seems to be too big for my project. I want an equivalent solution, but simpler and (at best) in-code (no external library required). How ...
6
votes
5answers
1k views
Recommended method for loading a URL via a scheduled task on Windows
I have a webpage hosted on a Windows box that I need to assure gets loaded at least once/day. My current plan is to create a scheduled task that opens Internet Explorer and hits the URL:
"C:\Program ...
6
votes
8answers
1k views
How can I do Time based / scheduled events in .NET?
I need to offer scheduling of actions/events, in our web site. A crap analogy could be a calendar system, where a person adds a calendar item and when the date/time has been 'hit', then some logic (eg ...
6
votes
10answers
3k views
Windows Service or Scheduled Task, which one do we prefer?
If we need to write a program that works periodically, which way do we prefer?
Writing a windows service or writing a console application which works as scheduled task?
6
votes
6answers
3k views
What is the best way to schedule a sending-email task with Ruby on Rails?
I would like to schedule a daily task : every day at 7 AM, I want an email to be sent (without human intervention).
I'm working on the RoR framework and I'm wondering what is the best way to do that?
...
6
votes
3answers
7k views
Programmatically Creating a Scheduled Task in Windows - 0x8004130f Error
I am having major problems getting a scheduled task to run. The task is created fine using the ITaskScheduler interface provided by Microsoft. The task is set to run only if a user is logged on.
The ...
6
votes
2answers
1k views
Scheduling Windows Mobile apps to run
How do you schedule a Windows Mobile application to periodically start up to perform some background processing. For example, assume I'm writing an email client and want to check for email every ...
5
votes
4answers
136 views
What is best way to have Bounded Queue with ScheduledThreadPoolExecutor?
The Sun Java (1.6) ScheduledThreadPoolExecutor which is an extension of ThreadPoolExecutor internally uses an implementation of DelayQueue which is an unbounded queue. What I need is a ...
5
votes
2answers
171 views
C++, Linux: error: conversion from ‘boost::unique_future<void>’ to non-scalar type ‘boost::shared_future<void>’ requested. how to get around it?
I try to work with boost thread futures. So as shown here we can get shared future from packaged task.
So I try such function on linux:
template <class task_return_t>
void pool_item( ...
5
votes
3answers
243 views
Need suggestion on background worker
I want to develope a delivery application(self hosted WCF service ) which allows scheduling of the emails. User will assign a schedule to email and send it. The WCF service should be able to pick the ...
5
votes
3answers
358 views
c# windows service or just normal program? [closed]
Possible Duplicates:
windows service vs scheduled task
Windows Service Vs Simple Program
I'm trying to create a program that runs periodically (say every 5 minutes), or have the program ...
5
votes
1answer
177 views
C++ queue with dependencies
I am looking for a prototype or implementation for a queueing/scheduling system with dependencies between the individual tasks. To be more specific:
task_0, task_1, task_2, ... task 10 arrive at the ...
5
votes
1answer
345 views
Wix 3.5 Create Scheduled Task
I've got a couple of projects I'm using Wix 3.5 for, along with Paraffin which is going really well, but I'm stuck trying to figure out how to create a Windows Scheduled Task as part of the ...
5
votes
3answers
708 views
How do you schedule execution of a Windows Workflow?
I'd like to move my scheduled tasks into workflows so I can better monitor their execution. Currently I'm using a Window's scheduled task to call a web service that starts the process. Is there a ...
5
votes
3answers
378 views
How can I run a ColdFusion scheduled task at an interval <60 seconds?
I have a CFC method that I would like to run at an interval of 30 seconds. However, the problem is ColdFusion won't let me schedule a task that runs at an interval of 60 seconds or lower. Does anyone ...
5
votes
1answer
775 views
task strategies for handling HardDeadlineExceededError
I've got a number of tasks/servlets that are hitting the HardDeadlineExceededError which is leaving everything hanging in an 'still executing' state.
The work being done can easily exceed the 29 ...
5
votes
3answers
4k views
Quartz Java resuming a job excecutes it many times
For my application i create jobs and schedule them with CronTriggers. Each job has only one trigger and both the job name and the trigger names are the same. No jobs share a trigger.
Now when i ...
5
votes
9answers
251 views
Should a programmer try to list their “Next Actions”?
David Allen's "Getting Things Done" recommends keeping a "Next Action" list to organize your work, where a "Next Action" is the next physical action you will do to make progress towards an objective.
...
5
votes
6answers
296 views
on my local Windows machine, how do i write a script to download a comic strip every day and email it to myself?
on my local Windows machine, how do i write a script to download a comic strip every day and email it to myself?
such as
http://comics.com/peanuts/
Update: i know how to download the image as a ...