|
Home > Archive > BizTalk Server Orchestration > April 2005 > Performance issue with multiple correlation sets
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
Performance issue with multiple correlation sets
|
|
| abhijeet.raje@gmail.com 2005-04-05, 5:50 pm |
| Hi,
I want to know that will there be any performance issue if I
initialise two correlation set while sending message out of
orchestration instead of single correlation set.
Example
I send a message out of orchestration and will wait for some response
file.
If response file is "Y" then I will terminate main orchestration
Else response file is "N" then will wait for the parent message
with some correction.
Question:
Should I initialise the correlation set for receiving second file only
if I receive response file with "N" or I can initialise correlation
straight way without considering response.
I want to know what will be the performance issues in second approach.
Abhijeet
| |
| A b h i j e e t 2005-04-11, 7:50 am |
| Yossi???? Any comment???
| |
| Yossi Dahan 2005-04-11, 7:50 am |
| Sorry, missed that one :-)
When you initiate a correlation you basically add a temporary subscription
to the message box (a slightly simplified description, but will do I guess)
which will last until the orchestration receives the message(s) expected.
The list of subscriptions (and correlations) is evaluated every time a
message enters the messagebox in order to determine if the message matches
this correlation.
therefore there is an obvious impact on performance for correlation, and not
only for this orchestration.
This is not a major impact as the subscription mechanism is efficient, but
if there are many instances of the orchestration at one time (then there are
many correlations open, and subscriptions on the messagebox) and/or if it
takes time for the second message to come in you should feel the impact.
Hope this helps
Yossi Dahan
"A b h i j e e t" <abhijeet.raje@gmail.com> wrote in message
news:3b8f003d.0504110042.2ff7a952@posting.google.com...
> Yossi???? Any comment???
|
|
|
|
|