
Hi All,
I have issue. I have flow with SharePoint List.
Now, I am to do stress test for add 5 items in SharePoint List with parallel submission. 3 items success update to new status. 2 items, flow runs for a long time and takes an estimated 2-3 minutes to flow ran successfully.
But, when I see JSON showing error:
Error:
Hi @krfajar
Are you inserting the information all in the same SharePoint list correct?
I think you're running into a race condition where somewhere SharePoint is trying to do something but is locked and creates some sort of deadlock. It could be, for example, the ID generation where it has to ensure that the ID is unique.
I would recommend using parallel actions only when you're doing actions that are not related and can be done at the same time for performance reasons. If you want to bulk insert data, especially in the same list, to avoid issues, I would recommend doing it sequentially.
If I have answered your question, please mark your post as Solved.
If you like my response, please give it a Thumbs Up.
​
Cheers
Manuel