The CreatorCon Call for Content is officially open! Get started here.

Flow / Subflow trigger exception and limit

Yuvan Raj Kuma1
Tera Contributor
Is it advisable to trigger a flow/subflow more than 20,000 times in a single shot? Will it create any performance issues? Note : that flow/subflow also has 3-4 actions in it.
2 ACCEPTED SOLUTIONS

Anand Kumar P
Giga Patron

Hi @Yuvan Raj Kuma1 ,

 

It can lead to performance issues as it would consume a significant amount of system resources.

 

It can lead to data inconsistency if the flow or subflow is manipulating data.It may cause timeouts or other unexpected errors.

 

Instead Use batch processing to process the records in smaller chunks. - Optimize the flow or subflow to reduce the number of actions or simplify the logic.  Use asynchronous processing to allow the system to handle other tasks concurrently.

 

Mark it as helpful and solution proposed if it serves your purpose.
Thanks,
Anand

View solution in original post

Sumanth16
Kilo Patron

Hi @Yuvan Raj Kuma1 ,

 

https://support.servicenow.com/kb?id=kb_article_view&sysparm_article=KB0830765

 

If I could help you with your Query then, please hit the Thumb Icon and mark it as Correct !!

 

Thanks & Regards,

Sumanth Meda

View solution in original post

3 REPLIES 3

Anand Kumar P
Giga Patron

Hi @Yuvan Raj Kuma1 ,

 

It can lead to performance issues as it would consume a significant amount of system resources.

 

It can lead to data inconsistency if the flow or subflow is manipulating data.It may cause timeouts or other unexpected errors.

 

Instead Use batch processing to process the records in smaller chunks. - Optimize the flow or subflow to reduce the number of actions or simplify the logic.  Use asynchronous processing to allow the system to handle other tasks concurrently.

 

Mark it as helpful and solution proposed if it serves your purpose.
Thanks,
Anand

Sumanth16
Kilo Patron

Hi @Yuvan Raj Kuma1 ,

 

https://support.servicenow.com/kb?id=kb_article_view&sysparm_article=KB0830765

 

If I could help you with your Query then, please hit the Thumb Icon and mark it as Correct !!

 

Thanks & Regards,

Sumanth Meda

Yuvan Raj Kuma1
Tera Contributor

Thank You @Anand Kumar P  & @Sumanth16  both of your answers helped me!!!