Author |
Message
|
PEPERO |
Posted: Tue Mar 11, 2014 11:40 pm Post subject: Web Services performance |
|
|
Disciple
Joined: 30 May 2011 Posts: 177
|
Hi all;
Suppose that there are a number of financial and non financial services in an environment. From the performance point of view, is it a good idea to accum all the financial services defined into multiple operations within a single financial service or it's better to isolate each into a separate web service?
Consider the total number of services is 15 and all of them use a similar binding and their own input/output messages. |
|
Back to top |
|
 |
Vitor |
Posted: Wed Mar 12, 2014 5:09 am Post subject: |
|
|
 Grand High Poobah
Joined: 11 Nov 2005 Posts: 26093 Location: Texas, USA
|
It doesn't matter if they're financial or non-financial; it's about the SLA associated with the flows. It's always a good idea to separate low SLA from high SLA. _________________ Honesty is the best policy.
Insanity is the best defence. |
|
Back to top |
|
 |
PEPERO |
Posted: Wed Mar 12, 2014 8:08 am Post subject: |
|
|
Disciple
Joined: 30 May 2011 Posts: 177
|
Thanks for your response.
So i guess you mean for the high SLA, its not a good practice to accum all of the services into a single web service within different operations. |
|
Back to top |
|
 |
Vitor |
Posted: Wed Mar 12, 2014 8:23 am Post subject: |
|
|
 Grand High Poobah
Joined: 11 Nov 2005 Posts: 26093 Location: Texas, USA
|
PEPERO wrote: |
So i guess you mean for the high SLA, its not a good practice to accum all of the services into a single web service within different operations. |
It's good practice to ensure operations with a tight SLA are not conflicting for resources with other opertaions. If they're all lumped in together it self evidently makes it harder to allocate more resources to such operations, either with additional instances or by multiple deploys to many execution groups.
You'll need to decide how much the need to ensure priority outweighs the additonal maintenance effort to decide how granualr you go _________________ Honesty is the best policy.
Insanity is the best defence. |
|
Back to top |
|
 |
PEPERO |
Posted: Wed Mar 12, 2014 8:49 am Post subject: |
|
|
Disciple
Joined: 30 May 2011 Posts: 177
|
Thanks . I got a proper view of the issue. |
|
Back to top |
|
 |
|