You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Logic App is obscenely slow to run due to the way it chunks the requests.
You can significantly improve performance by composing the SCIM user component and appending it to a single array that contains all SCIM users. This ForEach should run in parallel.
Then, chunk(variable('allusers'),50) so you have an array of arrays which contain no more than 50 users each. Then, ForEach chunk, compose the starting part of the SCIM request, 50 user array, and ending part of the SCIM request.
The Logic App is obscenely slow to run due to the way it chunks the requests.
You can significantly improve performance by composing the SCIM user component and appending it to a single array that contains all SCIM users. This ForEach should run in parallel.
Then, chunk(variable('allusers'),50) so you have an array of arrays which contain no more than 50 users each. Then, ForEach chunk, compose the starting part of the SCIM request, 50 user array, and ending part of the SCIM request.
@{variables('SCIMBulkPayload')}@{items('For_each')}@{variables('SCIMBulkPayloadEnd')}
The second ForEach should run sequentiall, and contain the POST action.
The text was updated successfully, but these errors were encountered: