High risk process Model with one integration call

Hi
We have a scenario where we have to Post a comment  json at every step in our work flow. calls count will be very high,
When I generate a Health check which is in High risk which is taking 25.2% of all CPU time, 22.9% of all operations, 8332 mins of CPU time, 108948293 operation count.

we are not doing any other operations in that PM just call integration.

Any suggestions to minimize this CPU time or how to improve performance? 

  Discussion posts and replies are publicly visible

Parents
  • What is the service at the end of the integration doing? Is it processing your message in real-time and forcing you to wait until the message is processed completely, or can it accept/store your message unprocessed and process it offline? The first scenario will keep your node active until the processing is complete or it times out which increases the burden on your server.

Reply
  • What is the service at the end of the integration doing? Is it processing your message in real-time and forcing you to wait until the message is processed completely, or can it accept/store your message unprocessed and process it offline? The first scenario will keep your node active until the processing is complete or it times out which increases the burden on your server.

Children