regarding process model?

hi, I have a question,

A process has one script task, a sub process in between the start node and end node. The looping is running from script task to sub process, vice-versa and
the loop is performing infinte times and we came to know that because of this activity the environment has slow down. At that time what we will do to overcome this issue?

  Discussion posts and replies are publicly visible

Parents
  • I agree with Colton, Why are you implementing this kind of loop? can you tell us about your use case?

    Is not good idea having just 1 process running and never stopping because that way you cannot kill it just like that.
    Maybe you really need something scheduled every 1,2, 10 minutes? this you can achieve with a timer event, with time recurrence every X minutes, then you don't really need a loop. Every time it is executed it will create a new instance, that way you can even monitor easily each execution.

    But please tell us about your use case. maybe we can suggest another ways to achieve the same.

    Jose
Reply
  • I agree with Colton, Why are you implementing this kind of loop? can you tell us about your use case?

    Is not good idea having just 1 process running and never stopping because that way you cannot kill it just like that.
    Maybe you really need something scheduled every 1,2, 10 minutes? this you can achieve with a timer event, with time recurrence every X minutes, then you don't really need a loop. Every time it is executed it will create a new instance, that way you can even monitor easily each execution.

    But please tell us about your use case. maybe we can suggest another ways to achieve the same.

    Jose
Children
No Data