Workflow max number of activities

rosi58
Kilo Contributor

Hi,

I'm a unsure about what the workflow property 'Max activity count' stands for.

Is it the max number of activities in all currently executing contexts of a workflow,

or is it the max number of activities in a single executing context of a workflow?

1 ACCEPTED SOLUTION

Chuck Tomasi
Tera Patron

It's the number activities in a single context. If you have a looping workflow (with rollback to or similar activities) you can potentially create an infinite loop. This counter prevents the WF from running away uncontrolled. In some situations, where you have a complex workflow, you may need to bump the number up (e.g. 500)



I do not recommend setting it to an extremely high number like 100,000 or you could run in to performance problems with a runaway context.


View solution in original post

6 REPLIES 6

Aravinda YS
Tera Contributor

See this answered thred.
Maximum activity count in Workflow



~Hit like/Helpful/answered, if it helped on your issue.


Aravinda


Chuck Tomasi
Tera Patron

It's the number activities in a single context. If you have a looping workflow (with rollback to or similar activities) you can potentially create an infinite loop. This counter prevents the WF from running away uncontrolled. In some situations, where you have a complex workflow, you may need to bump the number up (e.g. 500)



I do not recommend setting it to an extremely high number like 100,000 or you could run in to performance problems with a runaway context.


You might also find this helpful.



Set the maximum number of workflow activities


Thank you Chuck,



This is what I needed to know.