Class OracleErrorHandler

java.lang.Object
io.debezium.pipeline.ErrorHandler
io.debezium.connector.oracle.OracleErrorHandler

public class OracleErrorHandler extends ErrorHandler
Error handle for Oracle.
Author:
Chris Cranford
  • Field Details

    • RETRIABLE_ERROR_CODES

      @Immutable private static final Set<String> RETRIABLE_ERROR_CODES
      Contents of this set should only be ORA-xxxxx errors; The error check uses starts-with semantics
    • RETRIABLE_ERROR_MESSAGES

      @Immutable private static final Set<String> RETRIABLE_ERROR_MESSAGES
      Contents of this set should be any type of error message text; The error check uses case-insensitive contains semantics
    • RETRIABLE_ORA600_ERROR_MESSAGES

      @Immutable private static final Set<String> RETRIABLE_ORA600_ERROR_MESSAGES
      Contents of this set will be applied if and only if the error is ORA-00600. These are special cases where an internal error was thrown and we need to evaluate the argument contents.
  • Constructor Details

  • Method Details