End Node Vs terminate Node

Certified Lead Developer

What is the main difference between end node and terminate node from process/architect perspective like archive, data management/ engine?

PS: we all know the implementation that if terminate node execute then it will close any in progress node in a process unlike end node.

  Discussion posts and replies are publicly visible

Parents Reply
  • The only difference is that processes that use terminate will usually end up finishing sooner (or at least are less likely to hang around unfinished), so it could have an indirect effect on your memory usage.

    In general I'd recommend using terminate nodes on most process models (unless you explicitly have a reason not to) just to make it less likely that you end up with a bunch of abandoned process models. Terminates are also easier for troubleshooting, because if you end up creating multiple active flows as part of starting / restarting nodes, then you don't need to ensure that all of your active flows finish.

Children