Error handling

Types of warnings

2min

Within a , you can have numerous modules and item mappings. Together, they create your . Each of these elements can create an event that might need your attention -- a warning.

A warning can also be the result of handling an error with the Break error handlerļ»æ. With the warning informs you that the Break error handler created an incomplete executionļ»æ of your .

The main difference between a warning and an error is, that a warning doesn't disable the scheduling of your and warnings don't count into the number of consecutive errorsļ»æ.

When a module returns a warning, highlights the module with the "Warning" sign. To check the error type, click the thought bubble above the module.

Document image
ļ»æ
Document image
ļ»æ

When you use error handling, you will see a warning when the error handler activates. In the example, the Break error handlerļ»æ handled the BundleValidationErrorļ»æ. The error handler activation turned the original error into a warning.

ExecutionInterruptedError

A module outputs the ExecutionInterruptedError when the runs for more than 40 minutes (5 minutes for the Free subscription). The module that is currently processing data outputs the warning.

When a module outputs the ExecutionInterruptedError the ends with a warning. The doesn't process the remaining bundles. will keep scheduling further runs.

To fix the ExecutionInterruptedError, consider strategies to optimize your :

  • Split your . You can use the combination of the following modules:

    For example, if you are processing a lot of bundles in a with 20 modules and the ends with the ExecutionInterruptedError, you can split the into two with 10 modules each.

  • Set the search modules' Limit to a lower number to reduce the amount of data processed by the .
  • Check the API documentation of the apps you use in the . If the appā€™s API has a suitable endpoint that supports batch requests, you can use the JSON aggregator and the HTTP app to send your data in batches. In addition, you save on operation usage.

OutOfSpaceError

Data store modules output the OutOfSpaceError when cannot store any more data in the data store. You also get the OutOfSpaceError when you fill your incomplete execution storage.

If a module outputs the OutOfSpaceError with no error handling, the ends with a warning. The doesn't process the remaining bundles. will keep scheduling further runs.

To fix the OutOfSpaceError in a , you can use a backup data store with the Resume error handlerļ»æ. You should also check the data in the data store or your incomplete execution storage. You can also review the pricing.