Which is more efficient: one flow or multiple flows?

Hi there! I have a question about efficiency… If I have some logical conditions and actions that could either be split into one or multiple Flows, which would be preferred, from a platform perspective (more efficient, less prone to errors…)?

Hi @rickydazla ,

Thanks for the question - it’s a great one! It’s recommended to have multiple related conditions in one workflow using a decision tree (if no, continue to the next condition). This is because if there are multiple separate workflows with the same trigger and conditions (or similar conditions), they will execute at different times and also could overwrite the actions of a previous one.

1 Like

Great answer! I figured as much, so i have packed a lot (i mean a lot) of actions and conditions using one trigger. So how big can your tree go before it becomes too big? Any limitations?

It will handle around 100 actions without much problem, but beyond that and it may be slower to load.

1 Like

I see. Thanks Paul