This process has been inactive for a time period exceeding defined limits

I have this process model which loops continuously and checks if any new value is inserted. After 1000 instances i started getting above error  in the node highlighted and the Process model gets paused. How can i control this issue and make the process model run continuously ? 

  Discussion posts and replies are publicly visible

Parents Reply
  • 0
    Certified Lead Developer
    in reply to Siddharth Thiagarajan

    Instead I'd suggest having a new parent process that calls the current process, and handles the looping and timer.  Strip down the process you already have such that all it does is one instance of the work.  In the parent, you could make a timer-based loop, and store a counter that counts up to a value less than 1000 (i'd suggest starting smaller than you need, like 10 or 100), and when the process reaches that counter, have it call a new copy of itself via the Start Process Smart Service, then exit.  That way you'll never get close to the MNI / node execution limit of 1000 instances.

Children