I have an issue where my Bridge job flow has an error when processing changes on my workflow.
The Source/trigger Smartsheet is created from a Datashuttle job that converts an uploaded Excel file to a Smartsheet file. This is the trigger file for this workflow. After the upload, there will be 1500 + changes and new rows added at one time to the trigger sheet. The sheet changes are determined by examining the trigger sheet's row against the target sheet's row after looking up and matching a key common to both Smartsheets. If no key match is found, the row from the trigger Smartsheet is added to the target Smartsheet. If there is a match a change is applied.
That means there will be allot of job runs on the workflow as each row is processed as a job run.
I have two Smartsheet triggers set up, one if the source Smartsheet has row changes and one if rows are added to the source Smartsheet. Both will trigger the same job flow.
The Error
An error example: job run 1 will fail at the beginning step of my workflow where I do a search for a string on the target sheet while another job run 2 will error at a step where the target sheet is updated towards the end of the workflow. In the Run Log, when selecting the different jobs, I find that the job errors randomly in different steps of my workflow. All job stops have the same error message:
- "workflow execution failed: Plugin Error INVALID_DATA : failed to execute extension module : Failed to parse module params : An unexpected error has occurred. Please contact the Support team at https://help.smartsheet.com/contact for assistance."
Here's an example of one job error:
Here's an example of another job error
I talked to Smartsheet Support and they explained that the limit to process job runs is 300 per minute. So, this may be the problem.
Has anyone experienced this problem before and is there a way to get around it?