App Connect

App Connect

Join this online user group to communicate across IBM product users and experts by sharing advice and best practices with peers and staying up to date regarding product enhancements.


#Applicationintegration
#App Connect
#AppConnect
#Integration
#Automation
 View Only
  • 1.  Why is having consecutive compute nodes bad practice?

    Posted 08/17/17 07:23 PM

    Why is having consecutive compute nodes bad practice?



  • 2.  RE: Why is having consecutive compute nodes bad practice?

    Posted 08/18/17 03:14 AM

    The overhead in parsing the data/payload can be very high, so it is better to parse it in one conmpute node rather than repeating the parsing in several consecutive nodes. 



  • 3.  RE: Why is having consecutive compute nodes bad practice?

    Posted 08/18/17 06:58 PM

    Thanks both. By the way, great webcast Francois!



  • 4.  RE: Why is having consecutive compute nodes bad practice?

    Posted 08/18/17 03:27 AM

    Because you copy the entire message from the input tree to the output tree for each compute node, adding a performance overhead to the entire message flow. This is important if your message flow will be used in a high-volume scenario only.

    You can avoid this by using database nodes, which does not use input and output trees, but rather allows you manipulate the message tree directly

    Rgds. Anders Heuch