Do we have threading concept in BizTalk MessageBox

Home Page Forums BizTalk 2004 – BizTalk 2010 Do we have threading concept in BizTalk MessageBox

Viewing 1 reply thread
  • Author
    Posts
    • #20752

      Hi,

      I am working with BizTalk and I have a question that while operating with BizTalk MessageBox, when number of message comes in and while excuting a message with one orchestration do we have any concept of processing another message with in the waiting time of the first message.

      Its similar to multi processing or threading concept.

      Thank you in advance

    • #20754

      BizTalk will process multiple orchestrations concurrently.  I believe it uses multiple threads and can take advantage of multi-proc servers.  However, each orchestration has it’s own data structures, so you don’t need to worry about race conditions or locking objects.  The best advice I can give is to make your orchestrations as granular as possible so you can take advantage of multi-proc and multi-server environments.  If you write one big orchestration, it will probably be stuck on one proc in one thread, but if you break it into a bunch of smaller ones they can be distributed.

Viewing 1 reply thread
  • The forum ‘BizTalk 2004 – BizTalk 2010’ is closed to new topics and replies.