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 |
autowiredEnabled(boolean autowiredEnabled)
Whether autowiring is enabled.
|
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)
Regular expressions matching columns to exclude from change events
(deprecated, use column.exclude.list instead).
|
default DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder |
columnExcludeList(String columnExcludeList)
Regular expressions matching columns to exclude from change events.
|
default DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder |
columnIncludeList(String columnIncludeList)
Regular expressions matching columns to include in change events.
|
default DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder |
columnPropagateSourceType(String columnPropagateSourceType)
A comma-separated list of regular expressions matching
fully-qualified names of columns that adds the columns original type
and original length as parameters to the corresponding field schemas
in the emitted change records.
|
default DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder |
columnWhitelist(String columnWhitelist)
Regular expressions matching columns to include in change events
(deprecated, use column.include.list instead).
|
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 for connection checking if keep alive thread is used, given
in milliseconds Defaults to 1 minute (60,000 ms).
|
default DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder |
connectTimeoutMs(int connectTimeoutMs)
Maximum time to wait after trying to connect to the database before
timing out, given in milliseconds.
|
default DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder |
converters(String converters)
Optional list of custom converters that would be used instead of
default ones.
|
default DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder |
databaseExcludeList(String databaseExcludeList)
A comma-separated list of regular expressions that match database
names to be excluded from monitoring.
|
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 |
databaseHistoryStoreOnlyCapturedTablesDdl(boolean databaseHistoryStoreOnlyCapturedTablesDdl)
Controls what DDL will Debezium store in database history.
|
default DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder |
databaseHistoryStoreOnlyMonitoredTablesDdl(boolean databaseHistoryStoreOnlyMonitoredTablesDdl)
Controls what DDL will Debezium store in database history.
|
default DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder |
databaseHostname(String databaseHostname)
Resolvable hostname or IP address of the database server.
|
default DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder |
databaseIncludeList(String databaseIncludeList)
The databases for which changes are to be captured.
|
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 database user to be used when connecting to the
database.
|
default DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder |
databasePort(int databasePort)
Port of the 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 database user to be used when connecting to the database.
|
default DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder |
datatypePropagateSourceType(String datatypePropagateSourceType)
A comma-separated list of regular expressions matching the
database-specific data type names that adds the data type's original
type and original length as parameters to the corresponding field
schemas in the emitted change records.
|
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 |
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 |
incrementalSnapshotChunkSize(int incrementalSnapshotChunkSize)
The maximum size of chunk for incremental snapshotting.
|
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 |
maxQueueSizeInBytes(long maxQueueSizeInBytes)
Maximum size of the queue in bytes 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)
Time to wait for new change events to appear after receiving no
events, given in milliseconds.
|
default DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder |
provideTransactionMetadata(boolean provideTransactionMetadata)
Enables transaction metadata extraction together with event counting.
|
default DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder |
queryFetchSize(int queryFetchSize)
The maximum number of records that should be loaded into memory while
streaming.
|
default DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder |
retriableRestartConnectorWaitMs(long retriableRestartConnectorWaitMs)
Time to wait before restarting connector after retriable exception
occurs.
|
default DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder |
sanitizeFieldNames(boolean sanitizeFieldNames)
Whether field names will be sanitized to Avro naming conventions.
|
default DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder |
signalDataCollection(String signalDataCollection)
The name of the data collection that is used to send signals/commands
to Debezium.
|
default DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder |
skippedOperations(String skippedOperations)
The comma-separated list of operations to skip during streaming,
defined as: 'c' for inserts/create; 'u' for updates; 'd' for deletes.
|
default DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder |
snapshotDelayMs(long snapshotDelayMs)
A delay period before a snapshot will begin, given in milliseconds.
|
default DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder |
snapshotFetchSize(int snapshotFetchSize)
The maximum number of records that should be loaded into memory while
performing a snapshot.
|
default DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder |
snapshotIncludeCollectionList(String snapshotIncludeCollectionList)
this setting must be set to specify a list of tables/collections
whose snapshot must be taken on creating or restarting the connector.
|
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 |
snapshotLockTimeoutMs(long snapshotLockTimeoutMs)
The maximum number of millis to wait for table locks at the beginning
of a snapshot.
|
default DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder |
snapshotMaxThreads(int snapshotMaxThreads)
The maximum number of threads used to perform the 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)
A comma-separated list of regular expressions that match the
fully-qualified names of tables to be excluded from monitoring
(deprecated, use table.exclude.list instead).
|
default DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder |
tableExcludeList(String tableExcludeList)
A comma-separated list of regular expressions that match the
fully-qualified names of tables to be excluded from monitoring.
|
default DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder |
tableIgnoreBuiltin(boolean tableIgnoreBuiltin)
Flag specifying whether built-in tables should be ignored.
|
default DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder |
tableIncludeList(String tableIncludeList)
The tables for which changes are to be captured.
|
default DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder |
tableWhitelist(String tableWhitelist)
The tables for which changes are to be captured (deprecated, use
table.include.list instead).
|
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)
additionalProperties - the value to setdefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder bridgeErrorHandler(boolean bridgeErrorHandler)
bridgeErrorHandler - the value to setdefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder configuration(org.apache.camel.component.debezium.configuration.MySqlConnectorEmbeddedDebeziumConfiguration configuration)
configuration - the value to setdefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder internalKeyConverter(String internalKeyConverter)
internalKeyConverter - the value to setdefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder internalValueConverter(String internalValueConverter)
internalValueConverter - the value to setdefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder offsetCommitPolicy(String offsetCommitPolicy)
offsetCommitPolicy - the value to setdefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder offsetCommitTimeoutMs(long offsetCommitTimeoutMs)
offsetCommitTimeoutMs - the value to setdefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder offsetFlushIntervalMs(long offsetFlushIntervalMs)
offsetFlushIntervalMs - the value to setdefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder offsetStorage(String offsetStorage)
offsetStorage - the value to setdefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder offsetStorageFileName(String offsetStorageFileName)
offsetStorageFileName - the value to setdefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder offsetStoragePartitions(int offsetStoragePartitions)
offsetStoragePartitions - the value to setdefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder offsetStorageReplicationFactor(int offsetStorageReplicationFactor)
offsetStorageReplicationFactor - the value to setdefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder offsetStorageTopic(String offsetStorageTopic)
offsetStorageTopic - the value to setdefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder autowiredEnabled(boolean autowiredEnabled)
autowiredEnabled - the value to setdefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder bigintUnsignedHandlingMode(String bigintUnsignedHandlingMode)
bigintUnsignedHandlingMode - the value to setdefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder binlogBufferSize(int binlogBufferSize)
binlogBufferSize - the value to setdefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder columnBlacklist(String columnBlacklist)
columnBlacklist - the value to setdefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder columnExcludeList(String columnExcludeList)
columnExcludeList - the value to setdefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder columnIncludeList(String columnIncludeList)
columnIncludeList - the value to setdefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder columnPropagateSourceType(String columnPropagateSourceType)
columnPropagateSourceType - the value to setdefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder columnWhitelist(String columnWhitelist)
columnWhitelist - the value to setdefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder connectKeepAlive(boolean connectKeepAlive)
connectKeepAlive - the value to setdefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder connectKeepAliveIntervalMs(long connectKeepAliveIntervalMs)
connectKeepAliveIntervalMs - the value to setdefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder connectTimeoutMs(int connectTimeoutMs)
connectTimeoutMs - the value to setdefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder converters(String converters)
converters - the value to setdefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder databaseExcludeList(String databaseExcludeList)
databaseExcludeList - the value to setdefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder databaseHistory(String databaseHistory)
databaseHistory - the value to setdefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder databaseHistoryFileFilename(String databaseHistoryFileFilename)
databaseHistoryFileFilename - the value to setdefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder databaseHistoryKafkaBootstrapServers(String databaseHistoryKafkaBootstrapServers)
databaseHistoryKafkaBootstrapServers - the value to setdefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder databaseHistoryKafkaRecoveryAttempts(int databaseHistoryKafkaRecoveryAttempts)
databaseHistoryKafkaRecoveryAttempts - the value to setdefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder databaseHistoryKafkaRecoveryPollIntervalMs(int databaseHistoryKafkaRecoveryPollIntervalMs)
databaseHistoryKafkaRecoveryPollIntervalMs - the value to setdefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder databaseHistoryKafkaTopic(String databaseHistoryKafkaTopic)
databaseHistoryKafkaTopic - the value to setdefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder databaseHistorySkipUnparseableDdl(boolean databaseHistorySkipUnparseableDdl)
databaseHistorySkipUnparseableDdl - the value to setdefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder databaseHistoryStoreOnlyCapturedTablesDdl(boolean databaseHistoryStoreOnlyCapturedTablesDdl)
databaseHistoryStoreOnlyCapturedTablesDdl - the value to setdefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder databaseHistoryStoreOnlyMonitoredTablesDdl(boolean databaseHistoryStoreOnlyMonitoredTablesDdl)
databaseHistoryStoreOnlyMonitoredTablesDdl - the value to setdefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder databaseHostname(String databaseHostname)
databaseHostname - the value to setdefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder databaseIncludeList(String databaseIncludeList)
databaseIncludeList - the value to setdefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder databaseInitialStatements(String databaseInitialStatements)
databaseInitialStatements - the value to setdefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder databaseJdbcDriver(String databaseJdbcDriver)
databaseJdbcDriver - the value to setdefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder databasePassword(String databasePassword)
databasePassword - the value to setdefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder databasePort(int databasePort)
databasePort - the value to setdefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder databaseServerId(long databaseServerId)
databaseServerId - the value to setdefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder databaseServerIdOffset(long databaseServerIdOffset)
databaseServerIdOffset - the value to setdefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder databaseServerName(String databaseServerName)
databaseServerName - the value to setdefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder databaseSslKeystore(String databaseSslKeystore)
databaseSslKeystore - the value to setdefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder databaseSslKeystorePassword(String databaseSslKeystorePassword)
databaseSslKeystorePassword - the value to setdefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder databaseSslMode(String databaseSslMode)
databaseSslMode - the value to setdefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder databaseSslTruststore(String databaseSslTruststore)
databaseSslTruststore - the value to setdefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder databaseSslTruststorePassword(String databaseSslTruststorePassword)
databaseSslTruststorePassword - the value to setdefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder databaseUser(String databaseUser)
databaseUser - the value to setdefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder datatypePropagateSourceType(String datatypePropagateSourceType)
datatypePropagateSourceType - the value to setdefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder decimalHandlingMode(String decimalHandlingMode)
decimalHandlingMode - the value to setdefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder enableTimeAdjuster(boolean enableTimeAdjuster)
enableTimeAdjuster - the value to setdefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder eventDeserializationFailureHandlingMode(String eventDeserializationFailureHandlingMode)
eventDeserializationFailureHandlingMode - the value to setdefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder eventProcessingFailureHandlingMode(String eventProcessingFailureHandlingMode)
eventProcessingFailureHandlingMode - the value to setdefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder gtidSourceExcludes(String gtidSourceExcludes)
gtidSourceExcludes - the value to setdefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder gtidSourceFilterDmlEvents(boolean gtidSourceFilterDmlEvents)
gtidSourceFilterDmlEvents - the value to setdefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder gtidSourceIncludes(String gtidSourceIncludes)
gtidSourceIncludes - the value to setdefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder heartbeatIntervalMs(int heartbeatIntervalMs)
heartbeatIntervalMs - the value to setdefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder heartbeatTopicsPrefix(String heartbeatTopicsPrefix)
heartbeatTopicsPrefix - the value to setdefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder includeQuery(boolean includeQuery)
includeQuery - the value to setdefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder includeSchemaChanges(boolean includeSchemaChanges)
includeSchemaChanges - the value to setdefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder inconsistentSchemaHandlingMode(String inconsistentSchemaHandlingMode)
inconsistentSchemaHandlingMode - the value to setdefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder incrementalSnapshotChunkSize(int incrementalSnapshotChunkSize)
incrementalSnapshotChunkSize - the value to setdefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder maxBatchSize(int maxBatchSize)
maxBatchSize - the value to setdefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder maxQueueSize(int maxQueueSize)
maxQueueSize - the value to setdefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder maxQueueSizeInBytes(long maxQueueSizeInBytes)
maxQueueSizeInBytes - the value to setdefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder messageKeyColumns(String messageKeyColumns)
messageKeyColumns - the value to setdefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder pollIntervalMs(long pollIntervalMs)
pollIntervalMs - the value to setdefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder provideTransactionMetadata(boolean provideTransactionMetadata)
provideTransactionMetadata - the value to setdefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder queryFetchSize(int queryFetchSize)
queryFetchSize - the value to setdefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder retriableRestartConnectorWaitMs(long retriableRestartConnectorWaitMs)
retriableRestartConnectorWaitMs - the value to setdefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder sanitizeFieldNames(boolean sanitizeFieldNames)
sanitizeFieldNames - the value to setdefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder signalDataCollection(String signalDataCollection)
signalDataCollection - the value to setdefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder skippedOperations(String skippedOperations)
skippedOperations - the value to setdefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder snapshotDelayMs(long snapshotDelayMs)
snapshotDelayMs - the value to setdefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder snapshotFetchSize(int snapshotFetchSize)
snapshotFetchSize - the value to setdefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder snapshotIncludeCollectionList(String snapshotIncludeCollectionList)
snapshotIncludeCollectionList - the value to setdefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder snapshotLockingMode(String snapshotLockingMode)
snapshotLockingMode - the value to setdefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder snapshotLockTimeoutMs(long snapshotLockTimeoutMs)
snapshotLockTimeoutMs - the value to setdefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder snapshotMaxThreads(int snapshotMaxThreads)
snapshotMaxThreads - the value to setdefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder snapshotMode(String snapshotMode)
snapshotMode - the value to setdefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder snapshotNewTables(String snapshotNewTables)
snapshotNewTables - the value to setdefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder snapshotSelectStatementOverrides(String snapshotSelectStatementOverrides)
snapshotSelectStatementOverrides - the value to setdefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder sourceStructVersion(String sourceStructVersion)
sourceStructVersion - the value to setdefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder tableBlacklist(String tableBlacklist)
tableBlacklist - the value to setdefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder tableExcludeList(String tableExcludeList)
tableExcludeList - the value to setdefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder tableIgnoreBuiltin(boolean tableIgnoreBuiltin)
tableIgnoreBuiltin - the value to setdefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder tableIncludeList(String tableIncludeList)
tableIncludeList - the value to setdefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder tableWhitelist(String tableWhitelist)
tableWhitelist - the value to setdefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder timePrecisionMode(String timePrecisionMode)
timePrecisionMode - the value to setdefault DebeziumMysqlComponentBuilderFactory.DebeziumMysqlComponentBuilder tombstonesOnDelete(boolean tombstonesOnDelete)
tombstonesOnDelete - the value to setApache Camel