Hello everybody,
I am using an Azure Logic app to convert a CSV file to JSON to transform the data into a SharePoint Online list.
I am using this exact same approach as described here: https://sergeluca.wordpress.com/2018/10/28/microsoft-flow-advanced-tutorial-creating-a-csv-converter-from-scratch/
It works, but it is so incredibly slow.
I am using a CSV file that has 2.481 rows and 12 columns.
The Logic app takes 6 hours to complete the first For each and to populate the JSON array.
I need to apply Concurrency control and put it to 1 for this For each loop, otherwise Logic app mixes up the wrong values making the JSON array invaluable.
I am quite a newbie to this CSV -> JSON space, and I was looking into tips and tricks on how to increase the processing speed. I did find this article https://social.msdn.microsoft.com/Forums/en-US/acae74f9-4f07-419f-8a03-464b5ca69522/how-to-convert-flat-file-to-json-in-logic-apps?forum=azurelogicapps
I really have 0 experience with Azure Functions or whatever.
I am still wondering, what would be the best approach in my scenario?
I hope someone could point me in a direction.
All help is appreciated.
Thanks!