What Happens When A ColdFusion CFLock Timeout Is Exceeded Without Error?

Posted February 8, 2010 at 9:25 AM by Ben Nadel

Tags: ColdFusion

Last week, when I was working on my jQuery Photo Tagger plugin (for Flickr-style photo annotation), I was using CFLock to create thread-safe cache updates in the ColdFusion aspect of the code. As I was doing that, it occurred to me - I wasn't 100% sure what would happen if the timeout (indicated by the CFLock tag) was exceeded and no error was thrown? In the CFLock tag, you can use the ThrowOnTimeout attribute to determine the action taken by the thread if the a lock cannot be successfully obtained in the allotted time; but, what would that action actually be? Would the paused thread simply enter the CFLock tag body? Or, would it skip it?

 
 
 
 
 
 
 
 
 
 

I decided to get to the bottom of this by creating two tags that would compete for the same named lock. One thread pauses before the CFLock; one thread pauses whilst inside the CFLock. In this way, they get to it at different times and compete head-to-head for ultimate victory!. Here is the first page (a.cfm) which is the one that will have to wait for the CFLock:

a.cfm

  • A: Before the CFLock tag.<br />
  •  
  •  
  • <!---
  • Pause this thread to make sure the other thread gets
  • to the CFLock first.
  • --->
  • <cfthread
  • action="sleep"
  • duration="750"
  • />
  •  
  • <!---
  • Get an exclusive lock (this named lock is shared with
  • the other thread). Notice that we are asking the page
  • NOT to throw an error if the lock cannot be made within
  • the given timeout.
  • --->
  • <cflock
  • name="cflockTimeoutTest"
  • type="exclusive"
  • timeout="1"
  • throwontimeout="false">
  •  
  • A: Inside the CFLock tag.<br />
  •  
  • </cflock>
  •  
  •  
  • A: After the CFLock tag.

Notice that the CFLock tag specifies that no error should be thrown if the lock cannot be gotten. The second page (b.cfm) gets to the CFLock tag first and then pauses, once inside, for a time that is greater than A's specified timeout:

b.cfm

  • B: Before the CFLock tag.<br />
  •  
  •  
  • <!---
  • Get an exclusive lock (this named lock is shared with
  • the other thread).
  • --->
  • <cflock
  • name="cflockTimeoutTest"
  • type="exclusive"
  • timeout="1">
  •  
  • B: Inside the CFLock tag.<br />
  •  
  • <!---
  • Once inside the tag, let's sleep the thread so that
  • the lock will be held for a while (preventing the other
  • page from entering within the given selected timeout).
  • --->
  • <cfthread
  • action="sleep"
  • duration="#(3 * 1000)#"
  • />
  •  
  • </cflock>
  •  
  •  
  • B: After the CFLock tag.

Notice that this page pauses its lock for 3 seconds, which is greater than the one second timeout specified in page A.

I then put these two pages head-to-head in a Frameset (I won't bother showing the code for that) to see what would happen. When I ran the two pages at the same time, I got the following output from A:

A: Before the CFLock tag.
A: After the CFLock tag.

... and the following output from B:

B: Before the CFLock tag.
B: Inside the CFLock tag.
B: After the CFLock tag.

As you can see, when page A failed to get a lock in the specified timeout, it simply skipped over the CFLock tag altogether. This is good; this is the outcome that I was hoping for (and one that I have coded against) and it's nice to see that it is what actually happens. At least I don't have to go back and fix my code.

So, why would one not want to throw an error if a lock was not obtained? I think this is definitely a rare case, but one that I have used a few times. Typically, I will use this if I am inserting / mutating large amounts of database records containing very non-critical information. In such a case, I might not care if periods of intense performance fail to insert a few rows here and there.

Another place where I actually use this a lot is within a scheduled task. If I have a scheduled task that might take a while to run, I will typically wrap the entire task in a named CFLock tag with a timeout of one second. This way, if the scheduled task tries to execute while the previous instance is still running, the scheduled task will simply skip over itself.

After you've written a bunch of code under a given assumption, it's always a bit scary to realize that you've never tested to confirm the behavior you were expecting. When it comes to CFLock, it's nice to see that when a thread cannot obtain a lock in the given timeout, it skips over the tag altogether.




Reader Comments

Feb 18, 2010 at 11:44 PM // reply »
134 Comments

I'd never thought to use a named lock to guarantee that frequently running scheduled tasks wait for themselves! Genius.

I can't believe that the minimum timeout you can use is 1 second. That's like 10 minutes in Internet years.


Feb 19, 2010 at 2:48 PM // reply »
10,638 Comments

@David,

Thanks my man - it's a method I've found very useful for long running tasks.


Jul 1, 2010 at 5:52 PM // reply »
3 Comments

Why would you NOT want it to execute the code in the CFLOCK tag? If you don't care if it is executed, then don't include the code on the page.

Also, can you explain this to me? "In such a case, I might not care if periods of intense performance fail to insert a few rows here and there."

When would there be an instance when you didn't care if it failed to insert a few rows here and there? That seems to raise a red flag on data integrity.


Aug 1, 2010 at 10:38 PM // reply »
10,638 Comments

@Sdtacoma,

This kind of technique is actually great for scheduled tasks that might hand or potentially overlap in a way that is not appreciated:

http://www.bennadel.com/blog/1844-Making-Sure-Scheduled-Tasks-Don-t-Overlap-In-ColdFusion.htm


Post A Comment

Comment Etiquette: Please do not post spam. Please keep the comments on-topic. Please do not post unrelated questions or large chunks of code. And, above all, please be nice to each other - we're trying to have a good conversation here.

Please review the following issues:

Author Name:


Author Email:

Author Website:

Comment:

Supported HTML tags for formatting: <strong>bold</strong>   <em>italic</em>   <code>code</code>







  • Help Wanted - Find Your Next ColdFusion Job
InVision App - Prototyping Made Beautiful With Prototyping Tools Ben Nadel's Company - Epicenter Consulting Recent Blog Comments
Feb 3, 2012 at 10:49 PM
How I Got Node.js Running On A Linux Micro Instance Using Amazon EC2
Wow this was really helpful! Only thing I would add is you need to update your .bash_profile after you edit the secure_path. This is what I did: $ . ~/.bash_profile Otherwise, NPM won't be found. ... read »
Feb 3, 2012 at 10:14 PM
Pushing Base64-Encoded Images Over HTML5 WebSockets With Pusher And ColdFusion
@Ben, Just wanted to let you know that pusher are soon to start limiting sizes on messages. This was the detail that came through in the Feb dispatch: "However, we will soon be limiting the s ... read »
Feb 3, 2012 at 5:05 PM
Regular Expressions Make CSV Parsing In ColdFusion So Much Easier (And Faster)
I tried using your RegEx in my C# program, but it was matching an extra empty-string at the end and so I would end up with an extra field that doesn't exist, so I changed it to this: (^|,)("(?: ... read »
Feb 3, 2012 at 3:47 PM
ColdFusion Supports HTTP Verbs PUT And DELETE (As Well As GET And POST)
Josh Cyr posted this on Twitter just a little bit ago. Thought it was appropriate. http://stackoverflow.com/questions/1619152/how-to-create-rest-urls-without-verbs/1619677#1619677 ... read »
Feb 3, 2012 at 2:28 PM
Changing The Execution Context Of Your Self-Executing Function Blocks In JavaScript
@Michael, You definitely make a good point (and extra points for quoting movies - I love movies). When you use a return() statement to define the object's public API, it does provide a consistent a ... read »
Feb 3, 2012 at 2:04 PM
Changing The Execution Context Of Your Self-Executing Function Blocks In JavaScript
To quote Jurassic Park: "Just because you can doesn't mean you should". I completely, utterly disagree with the thought that this is more readable. Consider the current module pattern: if ... read »
Feb 3, 2012 at 1:10 PM
REST API Design Rulebook By Mark Masse
@Jordan, Yeah, WRML was created by Mark Masse (author of the book). I also found it to be a bit convoluted. I suppose it is intended to allow the Client to be able to programmaticaly respond to cha ... read »
Feb 3, 2012 at 1:08 PM
ColdFusion Supports HTTP Verbs PUT And DELETE (As Well As GET And POST)
@Jason, To be honest, I don't have good answers for that kinds of stuff. And, to the point, that is specifically why I *really* liked the REST API Design Rulebook by Mark Masse - he just cuts throu ... read »