Class JdbcOffsetBackingStoreConfig

java.lang.Object
io.debezium.storage.jdbc.JdbcCommonConfig
io.debezium.storage.jdbc.offset.JdbcOffsetBackingStoreConfig

public class JdbcOffsetBackingStoreConfig extends JdbcCommonConfig
Configuration options specific for JDBC offset storage.
Author:
Jiri Pechanec
  • Field Details

    • OFFSET_STORAGE_PREFIX

      public static final String OFFSET_STORAGE_PREFIX
      See Also:
    • PROP_PREFIX

      public static final String PROP_PREFIX
      See Also:
    • DEFAULT_TABLE_NAME

      public static final String DEFAULT_TABLE_NAME
      See Also:
    • PROP_TABLE_NAME

      public static final Field PROP_TABLE_NAME
    • DEFAULT_TABLE_DDL

      public static final String DEFAULT_TABLE_DDL
      JDBC Offset storage CREATE TABLE syntax.
      See Also:
    • PROP_TABLE_DDL

      public static final Field PROP_TABLE_DDL
      The JDBC table that will store offset information. id - UUID offset_key - Offset Key offset_val - Offset value record_insert_ts - Timestamp when the record was inserted record_insert_seq - Sequence number of record
    • DEFAULT_TABLE_SELECT

      public static final String DEFAULT_TABLE_SELECT
      See Also:
    • DEFAULT_TABLE_DELETE

      public static final String DEFAULT_TABLE_DELETE
      See Also:
    • DEFAULT_TABLE_INSERT

      public static final String DEFAULT_TABLE_INSERT
      See Also:
    • PROP_TABLE_SELECT

      public static final Field PROP_TABLE_SELECT
    • PROP_TABLE_DELETE

      public static final Field PROP_TABLE_DELETE
    • PROP_TABLE_INSERT

      public static final Field PROP_TABLE_INSERT
    • tableCreate

      private String tableCreate
    • tableSelect

      private String tableSelect
    • tableDelete

      private String tableDelete
    • tableInsert

      private String tableInsert
    • tableName

      private String tableName
  • Constructor Details

    • JdbcOffsetBackingStoreConfig

      public JdbcOffsetBackingStoreConfig(Configuration config)
  • Method Details