Moved

Moved. See https://slott56.github.io. All new content goes to the new site. This is a legacy, and will likely be dropped five years after the last post in Jan 2023.

Wednesday, May 6, 2009

Multi-threaded apps and module globals

Learned about module globals the hard way.


The mod_wsgi daemon by default spawns 15 threads.  This is important, but not obvious.


During load testing, we had intermittent weird errors.  We were seeing an odd inconsistency in replies.  My experience in creating military software in the ’80’s leads me to put loop-back self-tests everywhere.  One of our loopbacks wasn’t looping back properly.


The symptom looked like a single value being overwritten.  After a design review, it appears that one information source -- a module global -- wasn’t working well.


Module globals -- like other Singletons -- are a seductive trap.   The issue is that a multi-threaded application will have one copy of the module.  The one copy may not be thread safe.  


The problem is that  thread-safety requires some fairly detailed analysis. Simple unit testing isn’t quite enough.  But the process of designing for testability is helpful.  Isolation and encapsulation are important for testability as well as locating thread-safety issues.

No comments:

Post a Comment

Note: Only a member of this blog may post a comment.