Hi load server with load balancing, using WCF and MSMQ

后端 未结 3 985
闹比i
闹比i 2021-01-31 13:13

Currently I\'m developing a spatial data processing server. Here are requirements:

  1. Server must be able to receive and handle about 150-200 small messages per sec(g
3条回答
  •  清酒与你
    2021-01-31 13:25

    Just listening in on the conversation really, but am i right to think that MSMQ will actually help with the concurrency problem by buffering messages. So the server reading from the queue will never get flooded? That would change the problem on the component that is processing the messgaes from 'event based' concurrency (like on a webserver) to a much simpler pull mechanism.

    If you're still in a greenfield design stage you might also want to look at CCR & DSS, these could also help with the concurrency. Very impressive stuff, but then again if you only need to store the messages in a DB it's probably not going to help you much.

提交回复
热议问题