Skip to main content
Ben Nadel at Scotch On The Rocks (SOTR) 2011 (Edinburgh) with: Matt Gifford
Ben Nadel at Scotch On The Rocks (SOTR) 2011 (Edinburgh) with: Matt Gifford ( @coldfumonkeh )

A Big Hole In My Understanding Of ColdFusion Scheduled Tasks

By on
Tags:

Last week, I was reviewing one of our ColdFusion scheduled tasks with Ryan Jeffords when I suddenly had a moment of insight. In a flash, I realized that for years, I have completely misunderstood the way durations were defined at the "daily" level of a scheduled task. What I finally came to understand in that moment was that scheduled tasks use both a date range and a time range to define their execution window.

If you are not familiar with a ColdFusion scheduled task, setting one up in the ColdFusion administrator looks like this:


 
 
 

 
 ColdFusion scheduled tasks allow for both a date range and a time range in their configuration.  
 
 
 

As you can see, the ColdFusion scheduled task setup allows for a date-based duration and a time-based frequency. In this particular setup, I have the frequency set to run daily, every hour, until the end date (which has been omitted - it will run forever).

Now, before last week, this is how I interpreted this particular ColdFusion scheduled task setup:

"This task will start running on May 9, 2011 at 9:00 AM and will execute every hour thereafter until the end of time."

As it turns out, this is completely wrong. In hindsight, my error seems somewhat silly; but for some reason, the meaning of this scheduled task configuration has never been completely obvious to me. Now, post-revelation, this is how I interpret this particular ColdFusion scheduled task setup:

"This task will start running on May 9, 2011 and will run every day until the end of time. On each valid day of execution, the schedule task will start running at 9:00 AM and will run every hour thereafter until the end of that day - at which point, it will stop until 9:00 AM of the next valid day of execution."

Can you see the critical difference in understanding? In the first interpretation, the start time is linked directly to the start date. In the second interpretation, the date range and the time range will execute more independently (within context).


 
 
 

 
 In a ColdFusion scheduled task, date range and time range operate somewhat independantly.  
 
 
 

I don't think I've ever caught this problem before because luckily, it's never been a business-critical misunderstanding. After all, the scheduled task will still execute every day. The problem with the first interpretation, however, is that the scheduled task will not be running at all for the first 9-hours of each day. And, depending on your situation, this may or may not ever throw up a red-flag.

This ColdFusion scheduled task misunderstanding is, I have to admit, a little bit embarrassing. I'm putting it out here in case there are others like me, who never quite connected the dots between date ranges and time ranges.

Reader Comments

354 Comments

Yeah, I can't tell you how many times I've made a daily task and just entered 12:00AM 11:59PM. I'm _very_ happy tasks are getting updates in the next rev of ColdFusion.

15,674 Comments

@Ray,

The funniest part of this is that every time I set up a scheduled task, I always thought to myself, "Ugg - why do they separate the date and the time." ... of course, I just assumed *they* made a bad decision - it never occurred to me that I might not be understanding it :)

2 Comments

Actually, I got confirmation from Adobe that Scheduled Tasks should work the way you were expecting them to work, and not the way they do.

The 9 hour gap, as in your scenario, is not valid behaviour.

At least that's what got reported back to me.

As Ray says, they've long overdue an overhaul, and thankfully it's happening.

15,674 Comments

@Andy,

I have to say, now that I understand *how* they actually work, I'm a bit conflicted. Part of me feels that having a somewhat independent date/time range gives the most amount of flexibility. I'm not so sure that I want them to change.

What might be better is simply to explain it more clearly on the configuration screen?

23 Comments

Yeah, it is very confusing. I can't tell you the number of times people have told me that the "scheduler is broke" when in fact, they just misunderstood what they told it to do.

Glad to see the the scheduler getting some love soon.

7 Comments

Coming from a Cron background this took some getting used to. I've lost count on the number of tasks I configured to start at 00:01 and end at 23:59 just to get half decent repeated tasks working.

To be honest (and this isn't ColdFusion bashing) I wouldn't use the current scheduled task system for anything business critical. The implementation (at least on Windows/JRUN servers) is really quite weak and has locking issues which can result in tasks disappearing.

I'm looking forward to the CF10 changes but until then will continue to use Cron and cURL to do my scheduled task work.

15,674 Comments

@Rob,

I've definitely had some issues with scheduled tasks in the past, unrelated to this problem. I've had weird SSL issues and situations where it would run fine when you tested it, but wouldn't run properly when scheduled.

I've never used Cron though; I am not even sure where that stuff is set up (though I am sure Google could answer that in a matter of secondsS).

81 Comments

I've had issues with inflexible scheduling on ColdFusion. Scheduling tasks to be performed on every Tues, Wed & Thurs at 3am requires 3 different tasks. In a Windows environment, setting using the NT Task Scheduler was almost as painful. We finally started using nnCron as a replacement:
http://www.nncron.ru/

It uses an editable configuration file, so you could even write a ColdFusion GUI to manage tasks. (Check out the documentation so that you can see what else it's capable of.)

7 Comments

@Ben,

Not run into the SSL stuff but can have certainly had issues with locking the neo-cron.xml file which was enough to make me run away very quickly.

Cron on *Nix is pretty simple and with cURL you just "get the URL" in the same way as the scheduled task manager. Try running "crontab -e" from a terminal on OSX.

As you surmised there's lots of documentation for it around the net (not least of which is the man file which is pretty informative) and cURL is simplicity itself to use (albeit with a massive array of options for authentication, SSL etc which can make it quite daunting if you read the official docs.)

I just hope the Adobe guys do something to make the new Scheduled task manager uber reliable - there's no point in having an unattended task manager if you can't trust it to run unattended :)

15,674 Comments

@James,

I've not personally had to deal with tasks distributed on different days; but, I can see how that would be annoying to manage multiple tasks for the same "intent."

@James, @Rob,

I'll take a look at this other cron stuff. It's all new to me.

81 Comments

I also prefer the CRON & CURL combination because it doesn't consume a CF thread or run the risk of timing out when connecting to external hosts. I can also run it on any computer so that it never impacts the CF server. I've had to add extra success/fail flags & notifications to the individual scripts when they are called by CURL.

6 Comments

@Ben

I figured this out a while back with a task that was supposed to be updating weather all day. First time, for me, I already knew one of your posts.

Regards

Ben

29 Comments

I've been a frequent user of scheduled tasks since the 3.x days and the way it works is fine with me. It's very logical once you have that (delayed) mini moment of revelation that Ben did! :-D

It's actually quite flexible and I hope any change in future releases just adds to the functionality and doesn't completely change how it works. I can't actually think how they could improve it anyway, but I look forward to being surprised by someone else's innovation!

15,674 Comments

@Ben,

Ha ha - awesome :)

@Gary,

I'm with you on this - the issue was not with the functionality of the scheduled task; that's actually pretty cool. The issue was more with the gap between understanding and functionality. Like now that I *get* it, I wouldn't want to change it.

Or, at least make the start/end time optional. If they are left out, the system should assume 12AM - 11:59PM.

383 Comments

@Ben,

hey, this may be a really dumb question, but do you know if there is any way to set up a scheduled task, via code, if you do not have access to the ColdFusion administrator. Like, for example, to be able to write an applicaiton that would do it? I'm not asking for evil purposes, an example of a circumstance where this would be desired is this: say you worked for a company, and you worked on specific sections of code for them, but your access to ColdFusion administrator was limited. But you had a task that needed to be run on a regular basis.

The answer, I am sure, is probably no, but I thought I would ask.

10 Comments

As for the issue of running multiple scheduled tasks, I tend to set up a single scheduled task in the CF Administrator which runs every 5 minutes (ish). When that task runs, the page that's called looks at a table of tasks to determine which, if any, should be run. For example, a "cleanup database" routine might run once at 3AM, but a "send queued email" might run every time. That model has, for the most part, worked nicely for me. Just my .02.

15,674 Comments

@Ben Mueller,

I think that's the winning approach. Plus, that way, you don't need multiple developers to have access to the CF Admin in order to be able to set up new tasks (if that's a security concern). I like that approach as well because you can have cross-cutting concern around the tasks like error handling, logging, etc..

4 Comments

Not sure if this is the best place to ask ... but here it is:
Is there a limit for interval value when setting up a schedule job?

I need to schedule a job every 12 weeks which is 7257600 seconds.

Thanks
Mike

15,674 Comments

@Mike,

Hmm, to be honest, I've never had a task that didn't run daily or weekly. Every 12 weeks is a tough one to work with. I could be talking poorly here, but for that, it might be best to store the task details in a database and then just run it every day (and use the database to see if the task should truly be executed).

This is actually how I run most of my tasks these days. I have a centralized task that runs like every 5-15 minutes; then, it hits a database to see what actual tasks should be run.

I'll see if I can write that concept up - I don't think I ever blogged about it before.

354 Comments

@Ben,

Oh sorry - meant Nadel, and the idea of having the task run every day and internal logic then determines if it REALLY needs to run.

Thankfully scheduled tasks are getting Awesome Sauce in Zeus.

4 Comments

Hi there,

Is there a way to write a "dependency" routine where a task would only executed only if previous scheduled tasks is complete.

Is this possible? Maybe a feature request in new CF?

Fixed time schedules are no good if the previous task did not successful execute.

thanks

10 Comments

@Lawrence,

I would personally keep a record of scheduled tasks in a database, including information about when they should execute, when they last executed, and dependencies. I'd think it would be pretty straightforward to write CF code around that.

4 Comments

@Ben,

How do you know that it's completed? Do I just right a routine to do a check of some sort and if that value is what I want then I go on to the next step?

My scenario is this:

1. script A will read all new records from a certain point in time and inserts it into another table (Table X).

2. Script B will update a value in Table X.

3. Script C will delete all records in Table X.

thoughts?

thanks

10 Comments

@Lawrence,

Take it as a given that I don't know your system, nor what you require, so my advice might be no good. However, I'd suggest something like:

Have script A set up to run at 1AM, B at 2AM and C at 3AM. At the completion of each script, update your "scheduledTasks" table with a timestamp indicating completion. So, script A runs and takes one minute, and so you update the "lastUpdatedDateTime" datetime column on the scheduled tasks table with '2011-08-12 1:01:00'.

Then, when it comes time for script B to run, your routine would first make sure that Script A not only successfully completed, but successfully completed the same day.

Is that helpful at all?

4 Comments

@Ben,

I already have scheduled the 3 tasks. I guess I'm struggling with how to update my table with a timestamp to indicate that it's "done". How do I know it's done? should I try and retrieve a http status code somehow after the page loads and then check to see what it is and if it's okay, then enter the timestamp?

L

10 Comments

@Lawrence,

Sorry. How long does it take each scheduled task to execute, approximately? I'm guessing longer than a standard page request?

4 Comments

@Ben,

Depending on the number of records, it actually should not take more than say 3 mins .. actually it only takes about 3 seconds =)

10 Comments

@Lawrence,

Sorry for the delay. On vacation.

I'd suggest updating a database record immediately before you start the routine to set a status like "task in progress". Then, execute the task. When the task is done, update the status to "complete". If your task takes only three seconds to complete, you should be able to do all of that in one routine.

16 Comments

I don't know if this is documented, but it appears that a scheduled task with no end date is actually limited to about eight weeks in the developer edition. I deduced this from a task that would no longer work until I manually deleted and programatically added it again.

15,674 Comments

@Chris, @Ray,

Very strange! I can't say I've ever really had a scheduled task run for any significant period of time in development. I typically just trigger those beasts manually to make sure they work (and then set up the scheduled tasks in production). Good catch!

354 Comments

You know, it just goes to show you, even with a system that was 100% Perfect, if you have a scheduled task, you should probably have some way of verifying it, or making it 'vocal' so you know it actually run. I don't necessarily mean you need an email for a task running every 5 minutes, but, the slower a task, the easier it may be to forget about it.

16 Comments

A couple of other things...

If manually entering a task (using Administrator), you need to enter the correct format for your locale. However, if programmatically entering a task (using cfschedule), and you enter the wrong format, it will be automatically reformatted.

In addition, the minimum frequency you can enter in Administrator is one (1) minute and one (1) second. However, if using cfschedule, you can enter 60 seconds, or even 30 seconds, and it works, although, Administrator > Debugging & Logging > Scheduled Tasks, incorrectly displays: Daily every 1 min(s)... (Duh).

I commented on the cfschedule page about this on 25 September 2011

1 Comments

Hi Ben

I am facing a weird situation here. Whenever I run a scheduled task manually, the last run column do not update the date and still shows the last run as the date when scheduled task ran before manual run.

Is this a config issue?

1 Comments

Hi,
I want a CFSCHEDULE to run and schedule a website say (at 12:00 PM I want some examplemail.com to open). It must be opened in Browser automatically if the Computer is ON. I was creating a Small CFSCHEDULE from backend code and succeeded creating a Schedule in CFIDE. But was unable to open a Website at respective time.

For example: if I want Gmail.com to open at 12:00 PM What is the code that I want to. Here is the my code below :
<cfschedule action = "update" operation="httprequest"
task = "Form Manager"
url = "http://localhost:8500/Projects/TestScheduler/Schedulertest.cfm"
startDate = "8/19/2013"
startTime = "07:16 PM"
interval = "3600">
<cflocation url="https://google.com">

8 Comments

I know this is an old thread but for those wanting to run a task on given days of the week and don't want to build your own database based system, you can add <cfif not listfind('2,4,6',dayofweek(now())><cfabort></cfif> to the top of the code. Schedule it to run every day.

Although insignificant, the load would be much less than DB queries and the logic wrapped around that.

I use the DB method in cases where it make sense as well.

1 Comments

I also realize this is an older thread, but thought maybe someone might have insight.

We have an older CF7 Ent server running on Win2003 Enterprise Server. The only real function of the server is to act as a scheduling server for a number of automated tasks.

This server has run perfectly (albeit slow) since 2007. Just recently it started to fail, so I made a drive image and moved it over to a newer hardware box. In order to do this I had to repair windows to get it to function on the new setup.

Everything boots now, and CF runs, but all the tasks are consistently running 5 hours too early. I have checked the server time, and the time zone, and it is all proper. When I run a "now()" script on a test page on the server, it comes back showing the proper time. The times in the scheduled tasks are the same as before.

as an example, one script is setup to run recurring DAILY at 1:30 AM, it actually ran today at 8:30 PM

Any ideas why the scheduler would be functioning on a different timeclock than the rest of the server - is there something I can check in any CF server settings files?

Thanks.

I believe in love. I believe in compassion. I believe in human rights. I believe that we can afford to give more of these gifts to the world around us because it costs us nothing to be decent and kind and understanding. And, I want you to know that when you land on this site, you are accepted for who you are, no matter how you identify, what truths you live, or whatever kind of goofy shit makes you feel alive! Rock on with your bad self!
Ben Nadel