How to avoid MNI

Hi All,

Is is best practice to use MNI's in appian , if we need to avoid this could suggest me the ways to so ?

Thanks,

Bhargavi

  Discussion posts and replies are publicly visible

Parents Reply
  • Yeah keep in mind that an XOR loop is actually worse than using MNI. Part of the reason MNI is often not recommended is that it  requires Appian to store execution information for each time the node executes. If you end up with a node running 500 times, this can end up being quite a bit of data. However, using an XOR loop is worse because now you have to run your node 500 times AND run the XOR gateway 500 times. So generally the recommendation is try a!forEach() first - if you can't use that, use MNI, and use an XOR looping flow as a last resort.

Children
No Data