Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Current »

The FAIL directive will fail processing of data pipeline when condition is evaluated to true.

Syntax

fail <condition>

The <condition> is a JEXL expression specifying the condition that governs if the record should be sent to the error collector.

Usage Notes

The most common use of the FAIL directive is to fail further processing of the pipeline when the condition is met.

Example

Assume a record that has these three fields:

  • Error Name

  • Error Count

These directives will implement these rules; any records that match any of these conditions will terminate further processing of the pipeline.

fail ErrorCount > 1

  • No labels