Tagged Questions

12
votes
6answers
420 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
326 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 ...
3
votes
2answers
3k views

Permissions required to create/modify tasks in Windows Task Scheduler

I need to create and modify tasks in Windows Task Scheduler on Windows Server 2003 from an ASP.NET web application. The Network Service that the web app runs under is unable to make the changes. It ...
2
votes
1answer
99 views

How can I setup a system to tell me if a cron job is NOT running fine?

This is more of an "general architecture" problem. If you have a cron job (or even a Windows scheduled task) running periodically, its somewhat simple to have it send you an email / text message that ...
2
votes
1answer
710 views

Scheduling with gearman vs. cron?

I have noticed a lot of people discussing Gearman and it's scheduling features making it enable to distribute work onto other servers. However, I have not yet seen a comparison to native cronjobs. ...
2
votes
2answers
1k views

Regularly invoking an interactive process (WatiN tests) via Task Scheduler

I'm using a suite of WatiN tests driving IE to do some periodic sanity checking for the purposes of monitoring a site. The suite works fine when I invoke it interactively and/or when I configure the ...
1
vote
2answers
337 views

sos Job scheduler

i am using sos job scheduler which support many language.i accept the shell script to write jobs but i am not a shell script writer.i want to implement a following points in job scheduler: execute a ...
0
votes
2answers
314 views

Celery - schedule periodic tasks starting at a specific time

Edit : I'm accepted @bakennedy answer confirming my original thoughts, that is: 'Yes, but not out of the box'. A good combo for this seems Celery + APSCheduler. Original question : What is the best ...
0
votes
0answers
105 views

Windows Task Scheduler running application but cannot send email

In my windows task scheduler, I have scheduled a task to run a c# console application executable on a daily basis. This application sends some data to the database and then sends an email. When I run ...
0
votes
0answers
574 views

Task Scheduler: Run whether user is logged in or not: not working

I have a Task scheduled to run in Windows server 2008 (start up notepad). It seems to work fine when "Run whether user is logged in or not" is not selected. however when I select it the the task no ...
0
votes
1answer
485 views

Windows scheduled task

I have created a Windows 7 scheduled task: schtasks /create /tn MyTask /tr C:\temp\test\MyScript.bat /sc MINUTE Problem is that this task seems to get executed by Windows but I think it can not ...
0
votes
1answer
349 views

Possible to only initiate scheduled task if shortcut/button clicked?

I've created 2 tasks in Task Scheduler on my Vista PC start uTorrent at 2am then close uTorrent (and shutdown PC) at 7am. However i'd like to only like this task to run if I've clicked a shortcut - ...