vote up 0 vote down star

There are a few windows service projects in our codebase that follow this model, and I just want to make sure it's not a bug.

In this model, there is at least one static "timer" class, managed by a System.Timers.Timer, that retrieves batches of data to process from the database. A Semaphore is initialized as a static member. After retrieving a batch of work, a new worker thread instance is spawned off to process each row or list item, and the threads are managed by the parent timer class' static semaphore.

internal class BatchTimer
{
  private static Semaphore m_sem = new Semaphore(Settings.Default.ThreadCount, 
     Settings.Default.ThreadCount);
  private static System.Timers.Timer m_timer = new System.Timers.Timer();

  internal static void DoWork(object source, ElapstedEventArgs e)
  { 
    List<WorkRow> work = Work.GetBatch(Settings.Default.ObjectsPerIteration);
    foreach (WorkRow row in work)
    {
      WorkerThread worker = new WorkerThread
      {
        Semaphore = m_sem,
        Work = row
      };    
      Thread thread = new Thread(worker.Run);
      // Release() is called in finally block of WorkerThread.Run.
      m_sem.WaitOne(); 
      thread.Start();
    }
  }
}

The static Semaphore from the timer class is passed to a member of the worker thread class, rather than having the worker thread call Release() on the parent timer class' semaphore. I think it was assumed that it would work since it's a reference type. But my question is, wouldn't this prevent garbage collection?

flag

Why don't you use a threadpool instead of abusing that semaphore? – Ty Oct 27 at 18:02
I think this design originated when using .NET 2.0, when ThreadPool.SetMaxThreads was just as new as the Semaphore class. In the 1.1 implementation of similar services, a custom semaphore was used, and I think it logically led to the use of the .NET semaphore object when the 2.0 upgrade happened. – alord1689 Oct 27 at 20:58
@Ty: After a little more digging I have the answer: The semaphores are used to limit timeouts due to making too many requests to a web service, or to limit Sql Server deadlocks. Sometimes we need to limit the thread count to 1 (meaning we shouldn't have picked a multithreaded design in the first place, but we often don't know until after live release). According to MSDN's documentation for ThreadPool.SetMaxThreads, "You cannot set the number of worker threads or the number of I/O completion threads to a number smaller than the number of processors in the computer." – alord1689 Oct 27 at 21:08

1 Answer

vote up 1 vote down check

BAsically, you have a GCRoot to the worker as long as the thread you called worker.Run on is, well, running. When the Run method ends, the worker is candidate for Garbage Collection (since it's no longer referenced in the main thread, nor in any worker thread).

The worker gets a reference to the mutex, but you would only have a problem if it was the other way round (having a static variable holding a reference to your worker).

So, basically, the GC would take care of your worker.

You may run into trouble if one of your worker blocks. You'd end up having a convoy or, worse, if all your workers are stuck, no work done at all. I would implement a timeout in the worker to make sure it doesn't block the whole process.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.