If there is work to do, whay not do it? Unless there are further contraints on you system, it would seem reasonable to filter all the input until the queue is empty, as John suggests. The other pipeline threads will be doing much the same, so they should all get their work done.
If your issue is that the work done by your 'filtering operation' is quite small and so you want to process them in chunks to mitigate excessive context switches maybee you could either:
1) Use fewer threads by passing the required 'filtering operation' in with the packet, ie. as a method of the packet. Fewer threads could then do a broader range of jobs, so increasing the load on each thread and reducing context-switch/packet. It would be kinda useful if any thread could do any filter operation, but I realise that this is not always possible.
2) Load a number of packet objects onto a list/queue/stack and push this construct onto the thread queue.
Another couple of points for consideration:
Beware of 'monitor-pulse' and 'event-signal' producer-consumer queues. I have seen many attempts at this which are seriously flawed, expecially with multiple producers and multiple CPU. Problems arise when consuming because the act of checking the queue for empty and the act of waiting on the monitor/event are not one atomic operation. I've yet to be convinced that such a queue can be made to work reliably at all in the general case. It may well be fine if there is only one producer/consumer, so you may be OK, but bear this in mind if strange things happen when your app is loaded up. 'Computer Science 117' producer-consumer queues use semaphores for producers/consumers to wait on and to count the queue entries atomically. Your queue entries are a 'pool of resources' to which 'access control' needs to be applied, ie. exactly what MSDN says that a semaphore provides.
Load management. You are using bounded queues, which is fine. Another possibility that can either provide better overall performance, or worse, (again - this is a suggestion that may be useful or not, depending on the details of your app), is to restrict the total number of packets available in your system by creating a pool of them at startup, (pool could be another P-C queue with all the packets pushed on). This scheme throttles all the producers when the pool becomes empty - they have to wait until the consumers release 'used' packets back to the pool, and you don't need bounded queues.
Rgds,
Martin
public void Enqueue(UInt64 key, T item)
{
while (queue.Count >= MaximumSize)
Thread.Sleep(TimeSpan.Zero);
lock (queue)
{
queue.Add(key, item);
if (queue.Count > PeakSize)
PeakSize = queue.Count;
Monitor.Pulse(queue);
}
}
public T Dequeue()
{
lock (queue)
{
while (!flushed && queue.Count < MinimumSize)
Monitor.Wait(queue);
var item = queue.First();
T value = item.Value;
queue.Remove(item.Key);
return value;
}
}
ThreadPoolaccomplish the same thing? – Robert Harvey♦ Jun 5 '11 at 22:11