public static interface DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder extends ComponentBuilder<org.apache.camel.component.debezium.DebeziumMySqlComponent>
| Modifier and Type | Method and Description |
|---|---|
default DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder |
additionalProperties(Map<String,Object> additionalProperties)
Additional properties for debezium components in case they can't be
set directly on the camel configurations (e.g: setting Kafka Connect
properties needed by Debezium engine, for example setting
KafkaOffsetBackingStore), the properties have to be prefixed with
additionalProperties..
|
default DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder |
basicPropertyBinding(boolean basicPropertyBinding)
Whether the component should use basic property binding (Camel 2.x)
or the newer property binding with additional capabilities.
|
default DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder |
bigintUnsignedHandlingMode(String bigintUnsignedHandlingMode)
Specify how BIGINT UNSIGNED columns should be represented in change
events, including:'precise' uses java.math.BigDecimal to represent
values, which are encoded in the change events using a binary
representation and Kafka Connect's
'org.apache.kafka.connect.data.Decimal' type; 'long' (the default)
represents values using Java's 'long', which may not offer the
precision but will be far easier to use in consumers.
|
default DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder |
binlogBufferSize(int binlogBufferSize)
The size of a look-ahead buffer used by the binlog reader to decide
whether the transaction in progress is going to be committed or
rolled back.
|
default DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder |
bridgeErrorHandler(boolean bridgeErrorHandler)
Allows for bridging the consumer to the Camel routing Error Handler,
which mean any exceptions occurred while the consumer is trying to
pickup incoming messages, or the likes, will now be processed as a
message and handled by the routing Error Handler.
|
default DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder |
columnBlacklist(String columnBlacklist)
Description is not available here, please check Debezium website for
corresponding key 'column.blacklist' description.
|
default DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder |
configuration(org.apache.camel.component.debezium.configuration.MySqlConnectorEmbeddedDebeziumConfiguration configuration)
Allow pre-configured Configurations to be set.
|
default DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder |
connectKeepAlive(boolean connectKeepAlive)
Whether a separate thread should be used to ensure the connection is
kept alive.
|
default DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder |
connectKeepAliveIntervalMs(long connectKeepAliveIntervalMs)
Interval in milliseconds to wait for connection checking if keep
alive thread is used.
|
default DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder |
connectTimeoutMs(int connectTimeoutMs)
Maximum time in milliseconds to wait after trying to connect to the
database before timing out.
|
default DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder |
databaseBlacklist(String databaseBlacklist)
Description is not available here, please check Debezium website for
corresponding key 'database.blacklist' description.
|
default DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder |
databaseHistory(String databaseHistory)
The name of the DatabaseHistory class that should be used to store
and recover database schema changes.
|
default DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder |
databaseHistoryFileFilename(String databaseHistoryFileFilename)
The path to the file that will be used to record the database
history.
|
default DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder |
databaseHistoryKafkaBootstrapServers(String databaseHistoryKafkaBootstrapServers)
A list of host/port pairs that the connector will use for
establishing the initial connection to the Kafka cluster for
retrieving database schema history previously stored by the
connector.
|
default DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder |
databaseHistoryKafkaRecoveryAttempts(int databaseHistoryKafkaRecoveryAttempts)
The number of attempts in a row that no data are returned from Kafka
before recover completes.
|
default DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder |
databaseHistoryKafkaRecoveryPollIntervalMs(int databaseHistoryKafkaRecoveryPollIntervalMs)
The number of milliseconds to wait while polling for persisted data
during recovery.
|
default DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder |
databaseHistoryKafkaTopic(String databaseHistoryKafkaTopic)
The name of the topic for the database schema history.
|
default DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder |
databaseHistorySkipUnparseableDdl(boolean databaseHistorySkipUnparseableDdl)
Controls the action Debezium will take when it meets a DDL statement
in binlog, that it cannot parse.By default the connector will stop
operating but by changing the setting it can ignore the statements
which it cannot parse.
|
default DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder |
databaseHistoryStoreOnlyMonitoredTablesDdl(boolean databaseHistoryStoreOnlyMonitoredTablesDdl)
Controls what DDL will Debezium store in database history.By default
(false) Debezium will store all incoming DDL statements.
|
default DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder |
databaseHostname(String databaseHostname)
Resolvable hostname or IP address of the MySQL database server.
|
default DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder |
databaseInitialStatements(String databaseInitialStatements)
A semicolon separated list of SQL statements to be executed when a
JDBC connection (not binlog reading connection) to the database is
established.
|
default DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder |
databaseJdbcDriver(String databaseJdbcDriver)
JDBC Driver class name used to connect to the MySQL database server.
|
default DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder |
databasePassword(String databasePassword)
Password of the MySQL database user to be used when connecting to the
database.
|
default DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder |
databasePort(int databasePort)
Port of the MySQL database server.
|
default DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder |
databaseServerId(long databaseServerId)
A numeric ID of this database client, which must be unique across all
currently-running database processes in the cluster.
|
default DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder |
databaseServerIdOffset(long databaseServerIdOffset)
Only relevant if parallel snapshotting is configured.
|
default DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder |
databaseServerName(String databaseServerName)
Unique name that identifies the database server and all recorded
offsets, and that is used as a prefix for all schemas and topics.
|
default DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder |
databaseSslKeystore(String databaseSslKeystore)
Location of the Java keystore file containing an application
process's own certificate and private key.
|
default DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder |
databaseSslKeystorePassword(String databaseSslKeystorePassword)
Password to access the private key from the keystore file specified
by 'ssl.keystore' configuration property or the
'javax.net.ssl.keyStore' system or JVM property.
|
default DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder |
databaseSslMode(String databaseSslMode)
Whether to use an encrypted connection to MySQL.
|
default DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder |
databaseSslTruststore(String databaseSslTruststore)
Location of the Java truststore file containing the collection of CA
certificates trusted by this application process (trust store).
|
default DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder |
databaseSslTruststorePassword(String databaseSslTruststorePassword)
Password to unlock the keystore file (store password) specified by
'ssl.trustore' configuration property or the
'javax.net.ssl.trustStore' system or JVM property.
|
default DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder |
databaseUser(String databaseUser)
Name of the MySQL database user to be used when connecting to the
database.
|
default DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder |
databaseWhitelist(String databaseWhitelist)
The databases for which changes are to be captured.
|
default DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder |
decimalHandlingMode(String decimalHandlingMode)
Specify how DECIMAL and NUMERIC columns should be represented in
change events, including:'precise' (the default) uses
java.math.BigDecimal to represent values, which are encoded in the
change events using a binary representation and Kafka Connect's
'org.apache.kafka.connect.data.Decimal' type; 'string' uses string to
represent values; 'double' represents values using Java's 'double',
which may not offer the precision but will be far easier to use in
consumers.
|
default DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder |
enableTimeAdjuster(boolean enableTimeAdjuster)
MySQL allows user to insert year value as either 2-digit or 4-digit.
|
default DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder |
eventDeserializationFailureHandlingMode(String eventDeserializationFailureHandlingMode)
Specify how failures during deserialization of binlog events (i.e.
|
default DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder |
eventProcessingFailureHandlingMode(String eventProcessingFailureHandlingMode)
Specify how failures during processing of events (i.e.
|
default DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder |
gtidNewChannelPosition(String gtidNewChannelPosition)
If set to 'latest', when connector sees new GTID, it will start
consuming gtid channel from the server latest executed gtid position.
|
default DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder |
gtidSourceExcludes(String gtidSourceExcludes)
The source UUIDs used to exclude GTID ranges when determine the
starting position in the MySQL server's binlog.
|
default DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder |
gtidSourceFilterDmlEvents(boolean gtidSourceFilterDmlEvents)
If set to true, we will only produce DML events into Kafka for
transactions that were written on mysql servers with UUIDs matching
the filters defined by the gtid.source.includes or
gtid.source.excludes configuration options, if they are specified.
|
default DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder |
gtidSourceIncludes(String gtidSourceIncludes)
The source UUIDs used to include GTID ranges when determine the
starting position in the MySQL server's binlog.
|
default DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder |
heartbeatIntervalMs(int heartbeatIntervalMs)
Length of an interval in milli-seconds in in which the connector
periodically sends heartbeat messages to a heartbeat topic.
|
default DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder |
heartbeatTopicsPrefix(String heartbeatTopicsPrefix)
The prefix that is used to name heartbeat topics.Defaults to
__debezium-heartbeat.
|
default DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder |
includeQuery(boolean includeQuery)
Whether the connector should include the original SQL query that
generated the change event.
|
default DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder |
includeSchemaChanges(boolean includeSchemaChanges)
Whether the connector should publish changes in the database schema
to a Kafka topic with the same name as the database server ID.
|
default DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder |
inconsistentSchemaHandlingMode(String inconsistentSchemaHandlingMode)
Specify how binlog events that belong to a table missing from
internal schema representation (i.e.
|
default DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder |
internalKeyConverter(String internalKeyConverter)
The Converter class that should be used to serialize and deserialize
key data for offsets.
|
default DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder |
internalValueConverter(String internalValueConverter)
The Converter class that should be used to serialize and deserialize
value data for offsets.
|
default DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder |
maxBatchSize(int maxBatchSize)
Maximum size of each batch of source records.
|
default DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder |
maxQueueSize(int maxQueueSize)
Maximum size of the queue for change events read from the database
log but not yet recorded or forwarded.
|
default DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder |
messageKeyColumns(String messageKeyColumns)
A semicolon-separated list of expressions that match fully-qualified
tables and column(s) to be used as message key.
|
default DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder |
offsetCommitPolicy(String offsetCommitPolicy)
The name of the Java class of the commit policy.
|
default DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder |
offsetCommitTimeoutMs(long offsetCommitTimeoutMs)
Maximum number of milliseconds to wait for records to flush and
partition offset data to be committed to offset storage before
cancelling the process and restoring the offset data to be committed
in a future attempt.
|
default DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder |
offsetFlushIntervalMs(long offsetFlushIntervalMs)
Interval at which to try committing offsets.
|
default DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder |
offsetStorage(String offsetStorage)
The name of the Java class that is responsible for persistence of
connector offsets.
|
default DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder |
offsetStorageFileName(String offsetStorageFileName)
Path to file where offsets are to be stored.
|
default DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder |
offsetStoragePartitions(int offsetStoragePartitions)
The number of partitions used when creating the offset storage topic.
|
default DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder |
offsetStorageReplicationFactor(int offsetStorageReplicationFactor)
Replication factor used when creating the offset storage topic.
|
default DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder |
offsetStorageTopic(String offsetStorageTopic)
The name of the Kafka topic where offsets are to be stored.
|
default DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder |
pollIntervalMs(long pollIntervalMs)
Frequency in milliseconds to wait for new change events to appear
after receiving no events.
|
default DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder |
snapshotDelayMs(long snapshotDelayMs)
The number of milliseconds to delay before a snapshot will begin.
|
default DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder |
snapshotFetchSize(int snapshotFetchSize)
The maximum number of records that should be loaded into memory while
performing a snapshot.
|
default DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder |
snapshotLockingMode(String snapshotLockingMode)
Controls how long the connector holds onto the global read lock while
it is performing a snapshot.
|
default DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder |
snapshotMode(String snapshotMode)
The criteria for running a snapshot upon startup of the connector.
|
default DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder |
snapshotNewTables(String snapshotNewTables)
BETA FEATURE: On connector restart, the connector will check if there
have been any new tables added to the configuration, and snapshot
them.
|
default DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder |
snapshotSelectStatementOverrides(String snapshotSelectStatementOverrides)
This property contains a comma-separated list of fully-qualified
tables (DB_NAME.TABLE_NAME) or (SCHEMA_NAME.TABLE_NAME), depending on
thespecific connectors .
|
default DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder |
sourceStructVersion(String sourceStructVersion)
A version of the format of the publicly visible source part in the
message.
|
default DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder |
tableBlacklist(String tableBlacklist)
Description is not available here, please check Debezium website for
corresponding key 'table.blacklist' description.
|
default DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder |
tableIgnoreBuiltin(boolean tableIgnoreBuiltin)
Flag specifying whether built-in tables should be ignored.
|
default DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder |
tableWhitelist(String tableWhitelist)
The tables for which changes are to be captured.
|
default DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder |
timePrecisionMode(String timePrecisionMode)
Time, date and timestamps can be represented with different kinds of
precisions, including:'adaptive_time_microseconds': the precision of
date and timestamp values is based the database column's precision;
but time fields always use microseconds precision;'connect': always
represents time, date and timestamp values using Kafka Connect's
built-in representations for Time, Date, and Timestamp, which uses
millisecond precision regardless of the database columns' precision.
|
default DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder |
tombstonesOnDelete(boolean tombstonesOnDelete)
Whether delete operations should be represented by a delete event and
a subsquenttombstone event (true) or only by a delete event (false).
|
build, build, doSetProperty, registerdefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder additionalProperties(Map<String,Object> additionalProperties)
java.util.Map type.
Group: commondefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder bridgeErrorHandler(boolean bridgeErrorHandler)
boolean type.
Default: false
Group: consumerdefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder configuration(org.apache.camel.component.debezium.configuration.MySqlConnectorEmbeddedDebeziumConfiguration configuration)
org.apache.camel.component.debezium.configuration.MySqlConnectorEmbeddedDebeziumConfiguration type.
Group: consumerdefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder internalKeyConverter(String internalKeyConverter)
java.lang.String type.
Default: org.apache.kafka.connect.json.JsonConverter
Group: consumerdefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder internalValueConverter(String internalValueConverter)
java.lang.String type.
Default: org.apache.kafka.connect.json.JsonConverter
Group: consumerdefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder offsetCommitPolicy(String offsetCommitPolicy)
java.lang.String type.
Default:
io.debezium.embedded.spi.OffsetCommitPolicy.PeriodicCommitOffsetPolicy
Group: consumerdefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder offsetCommitTimeoutMs(long offsetCommitTimeoutMs)
long type.
Default: 5000
Group: consumerdefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder offsetFlushIntervalMs(long offsetFlushIntervalMs)
long type.
Default: 60000
Group: consumerdefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder offsetStorage(String offsetStorage)
java.lang.String type.
Default: org.apache.kafka.connect.storage.FileOffsetBackingStore
Group: consumerdefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder offsetStorageFileName(String offsetStorageFileName)
java.lang.String type.
Group: consumerdefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder offsetStoragePartitions(int offsetStoragePartitions)
int type.
Group: consumerdefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder offsetStorageReplicationFactor(int offsetStorageReplicationFactor)
int type.
Group: consumerdefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder offsetStorageTopic(String offsetStorageTopic)
java.lang.String type.
Group: consumerdefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder basicPropertyBinding(boolean basicPropertyBinding)
boolean type.
Default: false
Group: advanceddefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder bigintUnsignedHandlingMode(String bigintUnsignedHandlingMode)
java.lang.String type.
Default: long
Group: mysqldefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder binlogBufferSize(int binlogBufferSize)
int type.
Default: 0
Group: mysqldefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder columnBlacklist(String columnBlacklist)
java.lang.String type.
Group: mysqldefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder connectKeepAlive(boolean connectKeepAlive)
boolean type.
Default: true
Group: mysqldefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder connectKeepAliveIntervalMs(long connectKeepAliveIntervalMs)
long type.
Default: 60000
Group: mysqldefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder connectTimeoutMs(int connectTimeoutMs)
int type.
Default: 30000
Group: mysqldefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder databaseBlacklist(String databaseBlacklist)
java.lang.String type.
Group: mysqldefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder databaseHistory(String databaseHistory)
java.lang.String type.
Default: io.debezium.relational.history.FileDatabaseHistory
Group: mysqldefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder databaseHistoryFileFilename(String databaseHistoryFileFilename)
java.lang.String type.
Group: mysqldefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder databaseHistoryKafkaBootstrapServers(String databaseHistoryKafkaBootstrapServers)
java.lang.String type.
Group: mysqldefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder databaseHistoryKafkaRecoveryAttempts(int databaseHistoryKafkaRecoveryAttempts)
int type.
Default: 100
Group: mysqldefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder databaseHistoryKafkaRecoveryPollIntervalMs(int databaseHistoryKafkaRecoveryPollIntervalMs)
int type.
Default: 100
Group: mysqldefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder databaseHistoryKafkaTopic(String databaseHistoryKafkaTopic)
java.lang.String type.
Group: mysqldefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder databaseHistorySkipUnparseableDdl(boolean databaseHistorySkipUnparseableDdl)
boolean type.
Default: false
Group: mysqldefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder databaseHistoryStoreOnlyMonitoredTablesDdl(boolean databaseHistoryStoreOnlyMonitoredTablesDdl)
boolean type.
Default: false
Group: mysqldefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder databaseHostname(String databaseHostname)
java.lang.String type.
Group: mysqldefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder databaseInitialStatements(String databaseInitialStatements)
java.lang.String type.
Group: mysqldefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder databaseJdbcDriver(String databaseJdbcDriver)
java.lang.String type.
Default: class com.mysql.cj.jdbc.Driver
Group: mysqldefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder databasePassword(String databasePassword)
java.lang.String type.
Group: mysqldefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder databasePort(int databasePort)
int type.
Default: 3306
Group: mysqldefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder databaseServerId(long databaseServerId)
long type.
Group: mysqldefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder databaseServerIdOffset(long databaseServerIdOffset)
long type.
Default: 10000
Group: mysqldefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder databaseServerName(String databaseServerName)
java.lang.String type.
Group: mysqldefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder databaseSslKeystore(String databaseSslKeystore)
java.lang.String type.
Group: mysqldefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder databaseSslKeystorePassword(String databaseSslKeystorePassword)
java.lang.String type.
Group: mysqldefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder databaseSslMode(String databaseSslMode)
java.lang.String type.
Default: disabled
Group: mysqldefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder databaseSslTruststore(String databaseSslTruststore)
java.lang.String type.
Group: mysqldefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder databaseSslTruststorePassword(String databaseSslTruststorePassword)
java.lang.String type.
Group: mysqldefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder databaseUser(String databaseUser)
java.lang.String type.
Group: mysqldefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder databaseWhitelist(String databaseWhitelist)
java.lang.String type.
Group: mysqldefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder decimalHandlingMode(String decimalHandlingMode)
java.lang.String type.
Default: precise
Group: mysqldefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder enableTimeAdjuster(boolean enableTimeAdjuster)
boolean type.
Default: true
Group: mysqldefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder eventDeserializationFailureHandlingMode(String eventDeserializationFailureHandlingMode)
java.lang.String type.
Default: fail
Group: mysqldefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder eventProcessingFailureHandlingMode(String eventProcessingFailureHandlingMode)
java.lang.String type.
Default: fail
Group: mysqldefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder gtidNewChannelPosition(String gtidNewChannelPosition)
java.lang.String type.
Default: earliest
Group: mysqldefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder gtidSourceExcludes(String gtidSourceExcludes)
java.lang.String type.
Group: mysqldefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder gtidSourceFilterDmlEvents(boolean gtidSourceFilterDmlEvents)
boolean type.
Default: true
Group: mysqldefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder gtidSourceIncludes(String gtidSourceIncludes)
java.lang.String type.
Group: mysqldefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder heartbeatIntervalMs(int heartbeatIntervalMs)
int type.
Default: 0
Group: mysqldefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder heartbeatTopicsPrefix(String heartbeatTopicsPrefix)
java.lang.String type.
Default: __debezium-heartbeat
Group: mysqldefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder includeQuery(boolean includeQuery)
boolean type.
Default: false
Group: mysqldefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder includeSchemaChanges(boolean includeSchemaChanges)
boolean type.
Default: true
Group: mysqldefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder inconsistentSchemaHandlingMode(String inconsistentSchemaHandlingMode)
java.lang.String type.
Default: fail
Group: mysqldefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder maxBatchSize(int maxBatchSize)
int type.
Default: 2048
Group: mysqldefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder maxQueueSize(int maxQueueSize)
int type.
Default: 8192
Group: mysqldefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder messageKeyColumns(String messageKeyColumns)
java.lang.String type.
Group: mysqldefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder pollIntervalMs(long pollIntervalMs)
long type.
Default: 500
Group: mysqldefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder snapshotDelayMs(long snapshotDelayMs)
long type.
Default: 0
Group: mysqldefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder snapshotFetchSize(int snapshotFetchSize)
int type.
Group: mysqldefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder snapshotLockingMode(String snapshotLockingMode)
java.lang.String type.
Default: minimal
Group: mysqldefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder snapshotMode(String snapshotMode)
java.lang.String type.
Default: initial
Group: mysqldefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder snapshotNewTables(String snapshotNewTables)
java.lang.String type.
Default: off
Group: mysqldefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder snapshotSelectStatementOverrides(String snapshotSelectStatementOverrides)
java.lang.String type.
Group: mysqldefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder sourceStructVersion(String sourceStructVersion)
java.lang.String type.
Default: v2
Group: mysqldefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder tableBlacklist(String tableBlacklist)
java.lang.String type.
Group: mysqldefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder tableIgnoreBuiltin(boolean tableIgnoreBuiltin)
boolean type.
Default: true
Group: mysqldefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder tableWhitelist(String tableWhitelist)
java.lang.String type.
Group: mysqldefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder timePrecisionMode(String timePrecisionMode)
java.lang.String type.
Default: adaptive_time_microseconds
Group: mysqldefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder tombstonesOnDelete(boolean tombstonesOnDelete)
boolean type.
Default: false
Group: mysqlApache Camel