JobFailureSeverity

public enum JobFailureSeverity

Describes the severity of a failure of a job (esp. consitency checks).

  • ERROR - a failure throws an error and the transaction will not succeed.

  • WARN - a failure produces a warning but the transaction may succeed anyway.

  • IGNORE - the job may fail silently. Jobs can also decide to not run at all if that is not necessary in this case.

    Jobs where this doesn’t make sense at all may also ignore the severity. It is rather a convenient way to configure jobs where this makes sense than a definitive normative property of a job.

Author:

Timm Fitschen

Enum Constants

ERROR

public static final JobFailureSeverity ERROR

IGNORE

public static final JobFailureSeverity IGNORE

WARN

public static final JobFailureSeverity WARN