
Announcements
I'm looking for tips and tricks to speed up UI Flow execution. My observation is that my application is mostly just waiting between send key events, which makes the end-to-end execution of the flow unnecessarily slow.
Hi @bouillons
Majority of the flow works based on a trigger to invoke. Generally the trigger invokes within a minute or so. Some cases it may take longer than expected. The other type of flow is http request flows which is invoked by user. This is more like a on-demand invoke which can be invoked from your application or from a JScript etc. There is no way to speed up the UI flow execution. It's all depends on what type of action you are using. Say for example if your looking to get a bunch of records it may take more time than a get record action method. Again if you are iterating the records in a loop it may take long time to process. There are different types of filtering methods you can implement in flow. Some cases you can use Microsoft Graph API calls compared to using the standard connector. So it all depends on your requirement where you can normalise your flow steps which may result in better performance.
Thanks