Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

We are building a wrapper around a real time stock market data feed to service multiple client applications. Here is the basic architecture:

  1. MarketReader: Subscribes to the market data events and receives updates through real time events. Writes this information to a specified system port.
  2. Publisher: Reads the data from the port and writes it into a queue.
  3. 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();
    }
}
share|improve this question
2  
Clearly you are burning core on at least one core. The snippet is entirely insufficient to diagnose the cause. Use the .NET BlockingCollection class to avoid re-inventing this wheel. – Hans Passant Nov 5 '12 at 13:21
@HansPassant Looked at the BlockingCollection documentation. That definitely looks helpful. Thanks. – Aziz Nov 5 '12 at 13:45
As Hans said, the little snippet is nowhere near enough. What is _pauseEvent? Is it a ManualResetEvent? If it is then I doubt it. If all we have to go on is this then chances are it is _messageProcessor.ReadQueue(). Do you own the messageProcessor code? – uriDium Nov 5 '12 at 14:14
@uriDium - What doe you mean by "If it is then I doubt it"? Yes we own the code and _pauseEvent is a ManualResetEvent. As per my previous comment to Hans, the BlockingCollection should solve the issue, however will confirm this after testing. – Aziz Nov 5 '12 at 15:42
@Aziz. I meant that waiting on a ManualResetEvent shouldn't cause the CPU to burn. From my understanding the thread should be switched out and put into waiting until it is rescheduled. It should only be rescheduled by another thread resetting the ResetEvent. I can only guess that ReadQueue does some sort while(true) loop or some cont polling. I was thinking that you might be able to fix it without throwing out all the code. BlockingCollections are really great but you will be introducing some risk into your project if you are going to do massive redevelopment. Maybe you can track down the bug. – uriDium Nov 6 '12 at 11:58

closed as not a real question by Hans Passant, dove, Edwin de Koning, BNL, bmargulies Nov 6 '12 at 13:34

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

Browse other questions tagged or ask your own question.