I am running a power automate cloud flow. The action (Run Office Script) from Excel online is failing (bad gateway) when trying to run an office script that uses to convert CSV data into an excel table.
When execution with just a few records from the csv file (100 records) to action finishes fine. But I am now trying the full load of csv records that need to be converted, which is about 7,820 records.
I downloaded the Action input to verify, and it seems it has all the data needed, which in JSON format is about 11,077kb in size.
The action output error is the following:
"body": {
"error": {
"code": 502,
"source": "flow-apim-unitedstates-002-eastus-01.azure-apim.net",
"clientRequestId": "419dfdbf-09df-401b-9030-7e7b05cc26ce",
"message": "BadGateway",
"innerError": {
"StatusCode": 500,
"Message": "Oops! Something went wrong.\r\nclientRequestId: 419dfdbf-09df-401b-9030-7e7b05cc26ce",
"RequestId": "419dfdbf-09df-401b-9030-7e7b05cc26ce"
}
}
}
Is this error because of the large size of data that needs to be processed? Can I adjust any configuration to increase processing capacity?