We are building a wrapper around a real time stock market data feed to service multiple client applications. Here is the basic architecture:
- MarketReader: Subscribes to the market data events and receives updates through real time events. Writes this information to a specified system port.
- Publisher: Reads the data from the port and writes it into a queue.
- Subscriber/Dispatcher: Reads the queue. When it finds new items, it dispatches them to client programs.
The problem is that the program is currently taking a heavy chunk of the server CPU when this service is started. Even before real time market data starts coming in - the CPU usage goes to 50%. It seems there is a major flaw in the design somewhere. I'm sharing the basic code of subscriber where we feel the problem lies. We would like to understand what would be the best approach to fix the subscriber, without loosing the real time nature of the system:
/// <summary>
/// Perform Activity on the Thread
/// </summary>
public void DoWork()
{
while (true)
{
_pauseEvent.WaitOne(Timeout.Infinite);
if (_shutdownEvent.WaitOne( 0 ))
break;
_messageProcessor.ReadQueue();
}
}