Uses of Interface
org.apache.camel.builder.endpoint.dsl.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder
Packages that use DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder
-
Uses of DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder in org.apache.camel.builder.endpoint
Methods in org.apache.camel.builder.endpoint that return DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilderModifier and TypeMethodDescriptionStaticEndpointBuilders.debeziumMysql(String path) Debezium MySQL Connector (camel-debezium-mysql) Capture changes from a MySQL database.StaticEndpointBuilders.debeziumMysql(String componentName, String path) Debezium MySQL Connector (camel-debezium-mysql) Capture changes from a MySQL database. -
Uses of DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder in org.apache.camel.builder.endpoint.dsl
Methods in org.apache.camel.builder.endpoint.dsl that return DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilderModifier and TypeMethodDescriptionDebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.additionalProperties(String key, Object value) 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..DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.additionalProperties(Map values) 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..DebeziumMySqlEndpointBuilderFactory.AdvancedDebeziumMySqlEndpointBuilder.basic()DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.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.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.binaryHandlingMode(String binaryHandlingMode) Specify how binary (blob, binary, etc.) columns should be represented in change events, including: 'bytes' represents binary data as byte array (default); 'base64' represents binary data as base64-encoded string; 'base64-url-safe' represents binary data as base64-url-safe-encoded string; 'hex' represents binary data as hex-encoded (base16) string.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.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.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.binlogBufferSize(String 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.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.columnExcludeList(String columnExcludeList) Regular expressions matching columns to exclude from change events.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.columnIncludeList(String columnIncludeList) Regular expressions matching columns to include in change events.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.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.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.connectKeepAlive(boolean connectKeepAlive) Whether a separate thread should be used to ensure the connection is kept alive.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.connectKeepAlive(String connectKeepAlive) Whether a separate thread should be used to ensure the connection is kept alive.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.connectKeepAliveIntervalMs(long connectKeepAliveIntervalMs) Interval for connection checking if keep alive thread is used, given in milliseconds Defaults to 1 minute (60,000 ms).DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.connectKeepAliveIntervalMs(String connectKeepAliveIntervalMs) Interval for connection checking if keep alive thread is used, given in milliseconds Defaults to 1 minute (60,000 ms).DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.connectTimeoutMs(int connectTimeoutMs) Maximum time to wait after trying to connect to the database before timing out, given in milliseconds.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.connectTimeoutMs(String connectTimeoutMs) Maximum time to wait after trying to connect to the database before timing out, given in milliseconds.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.converters(String converters) Optional list of custom converters that would be used instead of default ones.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.customMetricTags(String customMetricTags) The custom metric tags will accept key-value pairs to customize the MBean object name which should be appended the end of regular name, each key would represent a tag for the MBean object name, and the corresponding value would be the value of that tag the key is.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.databaseExcludeList(String databaseExcludeList) A comma-separated list of regular expressions that match database names to be excluded from monitoring.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.databaseHostname(String databaseHostname) Resolvable hostname or IP address of the database server.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.databaseIncludeList(String databaseIncludeList) The databases for which changes are to be captured.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.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.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.databaseJdbcDriver(String databaseJdbcDriver) JDBC Driver class name used to connect to the MySQL database server.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.databasePassword(String databasePassword) Password of the database user to be used when connecting to the database.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.databasePort(int databasePort) Port of the database server.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.databasePort(String databasePort) Port of the database server.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.databaseServerId(long databaseServerId) A numeric ID of this database client, which must be unique across all currently-running database processes in the cluster.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.databaseServerId(String databaseServerId) A numeric ID of this database client, which must be unique across all currently-running database processes in the cluster.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.databaseServerIdOffset(long databaseServerIdOffset) Only relevant if parallel snapshotting is configured.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.databaseServerIdOffset(String databaseServerIdOffset) Only relevant if parallel snapshotting is configured.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.databaseSslKeystore(String databaseSslKeystore) The location of the key store file.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.databaseSslKeystorePassword(String databaseSslKeystorePassword) The password for the key store file.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.databaseSslMode(String databaseSslMode) Whether to use an encrypted connection to MySQL.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.databaseSslTruststore(String databaseSslTruststore) The location of the trust store file for the server certificate verification.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.databaseSslTruststorePassword(String databaseSslTruststorePassword) The password for the trust store file.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.databaseUser(String databaseUser) Name of the database user to be used when connecting to the database.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.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.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlBuilders.debeziumMysql(String path) Debezium MySQL Connector (camel-debezium-mysql) Capture changes from a MySQL database.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlBuilders.debeziumMysql(String componentName, String path) Debezium MySQL Connector (camel-debezium-mysql) Capture changes from a MySQL database.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.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.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.enableTimeAdjuster(boolean enableTimeAdjuster) MySQL allows user to insert year value as either 2-digit or 4-digit.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.enableTimeAdjuster(String enableTimeAdjuster) MySQL allows user to insert year value as either 2-digit or 4-digit.DebeziumMySqlEndpointBuilderFactory.endpointBuilder(String componentName, String path) DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.errorsMaxRetries(int errorsMaxRetries) The maximum number of retries on connection errors before failing (-1 = no limit, 0 = disabled, 0 = num of retries).DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.errorsMaxRetries(String errorsMaxRetries) The maximum number of retries on connection errors before failing (-1 = no limit, 0 = disabled, 0 = num of retries).DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.eventDeserializationFailureHandlingMode(String eventDeserializationFailureHandlingMode) Specify how failures during deserialization of binlog events (i.e.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.eventProcessingFailureHandlingMode(String eventProcessingFailureHandlingMode) Specify how failures during processing of events (i.e.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.gtidSourceExcludes(String gtidSourceExcludes) The source UUIDs used to exclude GTID ranges when determine the starting position in the MySQL server's binlog.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.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.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.gtidSourceFilterDmlEvents(String 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.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.gtidSourceIncludes(String gtidSourceIncludes) The source UUIDs used to include GTID ranges when determine the starting position in the MySQL server's binlog.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.heartbeatActionQuery(String heartbeatActionQuery) The query executed with every heartbeat.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.heartbeatIntervalMs(int heartbeatIntervalMs) Length of an interval in milli-seconds in in which the connector periodically sends heartbeat messages to a heartbeat topic.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.heartbeatIntervalMs(String heartbeatIntervalMs) Length of an interval in milli-seconds in in which the connector periodically sends heartbeat messages to a heartbeat topic.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.heartbeatTopicsPrefix(String heartbeatTopicsPrefix) The prefix that is used to name heartbeat topics.Defaults to __debezium-heartbeat.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.includeQuery(boolean includeQuery) Whether the connector should include the original SQL query that generated the change event.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.includeQuery(String includeQuery) Whether the connector should include the original SQL query that generated the change event.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.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.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.includeSchemaChanges(String includeSchemaChanges) Whether the connector should publish changes in the database schema to a Kafka topic with the same name as the database server ID.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.includeSchemaComments(boolean includeSchemaComments) Whether the connector parse table and column's comment to metadata object.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.includeSchemaComments(String includeSchemaComments) Whether the connector parse table and column's comment to metadata object.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.inconsistentSchemaHandlingMode(String inconsistentSchemaHandlingMode) Specify how binlog events that belong to a table missing from internal schema representation (i.e.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.incrementalSnapshotAllowSchemaChanges(boolean incrementalSnapshotAllowSchemaChanges) Detect schema change during an incremental snapshot and re-select a current chunk to avoid locking DDLs.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.incrementalSnapshotAllowSchemaChanges(String incrementalSnapshotAllowSchemaChanges) Detect schema change during an incremental snapshot and re-select a current chunk to avoid locking DDLs.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.incrementalSnapshotChunkSize(int incrementalSnapshotChunkSize) The maximum size of chunk (number of documents/rows) for incremental snapshotting.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.incrementalSnapshotChunkSize(String incrementalSnapshotChunkSize) The maximum size of chunk (number of documents/rows) for incremental snapshotting.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.internalKeyConverter(String internalKeyConverter) The Converter class that should be used to serialize and deserialize key data for offsets.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.internalValueConverter(String internalValueConverter) The Converter class that should be used to serialize and deserialize value data for offsets.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.maxBatchSize(int maxBatchSize) Maximum size of each batch of source records.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.maxBatchSize(String maxBatchSize) Maximum size of each batch of source records.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.maxQueueSize(int maxQueueSize) Maximum size of the queue for change events read from the database log but not yet recorded or forwarded.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.maxQueueSize(String maxQueueSize) Maximum size of the queue for change events read from the database log but not yet recorded or forwarded.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.maxQueueSizeInBytes(long maxQueueSizeInBytes) Maximum size of the queue in bytes for change events read from the database log but not yet recorded or forwarded.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.maxQueueSizeInBytes(String maxQueueSizeInBytes) Maximum size of the queue in bytes for change events read from the database log but not yet recorded or forwarded.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.messageKeyColumns(String messageKeyColumns) A semicolon-separated list of expressions that match fully-qualified tables and column(s) to be used as message key.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.minRowCountToStreamResults(int minRowCountToStreamResults) The number of rows a table must contain to stream results rather than pull all into memory during snapshots.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.minRowCountToStreamResults(String minRowCountToStreamResults) The number of rows a table must contain to stream results rather than pull all into memory during snapshots.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.notificationEnabledChannels(String notificationEnabledChannels) List of notification channels names that are enabled.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.notificationSinkTopicName(String notificationSinkTopicName) The name of the topic for the notifications.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.offsetCommitPolicy(String offsetCommitPolicy) The name of the Java class of the commit policy.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.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.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.offsetCommitTimeoutMs(String 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.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.offsetFlushIntervalMs(long offsetFlushIntervalMs) Interval at which to try committing offsets.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.offsetFlushIntervalMs(String offsetFlushIntervalMs) Interval at which to try committing offsets.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.offsetStorage(String offsetStorage) The name of the Java class that is responsible for persistence of connector offsets.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.offsetStorageFileName(String offsetStorageFileName) Path to file where offsets are to be stored.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.offsetStoragePartitions(int offsetStoragePartitions) The number of partitions used when creating the offset storage topic.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.offsetStoragePartitions(String offsetStoragePartitions) The number of partitions used when creating the offset storage topic.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.offsetStorageReplicationFactor(int offsetStorageReplicationFactor) Replication factor used when creating the offset storage topic.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.offsetStorageReplicationFactor(String offsetStorageReplicationFactor) Replication factor used when creating the offset storage topic.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.offsetStorageTopic(String offsetStorageTopic) The name of the Kafka topic where offsets are to be stored.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.pollIntervalMs(long pollIntervalMs) Time to wait for new change events to appear after receiving no events, given in milliseconds.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.pollIntervalMs(String pollIntervalMs) Time to wait for new change events to appear after receiving no events, given in milliseconds.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.provideTransactionMetadata(boolean provideTransactionMetadata) Enables transaction metadata extraction together with event counting.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.provideTransactionMetadata(String provideTransactionMetadata) Enables transaction metadata extraction together with event counting.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.queryFetchSize(int queryFetchSize) The maximum number of records that should be loaded into memory while streaming.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.queryFetchSize(String queryFetchSize) The maximum number of records that should be loaded into memory while streaming.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.retriableRestartConnectorWaitMs(long retriableRestartConnectorWaitMs) Time to wait before restarting connector after retriable exception occurs.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.retriableRestartConnectorWaitMs(String retriableRestartConnectorWaitMs) Time to wait before restarting connector after retriable exception occurs.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.schemaHistoryInternal(String schemaHistoryInternal) The name of the SchemaHistory class that should be used to store and recover database schema changes.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.schemaHistoryInternalFileFilename(String schemaHistoryInternalFileFilename) The path to the file that will be used to record the database schema history.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.schemaHistoryInternalSkipUnparseableDdl(boolean schemaHistoryInternalSkipUnparseableDdl) 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.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.schemaHistoryInternalSkipUnparseableDdl(String schemaHistoryInternalSkipUnparseableDdl) 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.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.schemaHistoryInternalStoreOnlyCapturedDatabasesDdl(boolean schemaHistoryInternalStoreOnlyCapturedDatabasesDdl) Controls what DDL will Debezium store in database schema history.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.schemaHistoryInternalStoreOnlyCapturedDatabasesDdl(String schemaHistoryInternalStoreOnlyCapturedDatabasesDdl) Controls what DDL will Debezium store in database schema history.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.schemaHistoryInternalStoreOnlyCapturedTablesDdl(boolean schemaHistoryInternalStoreOnlyCapturedTablesDdl) Controls what DDL will Debezium store in database schema history.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.schemaHistoryInternalStoreOnlyCapturedTablesDdl(String schemaHistoryInternalStoreOnlyCapturedTablesDdl) Controls what DDL will Debezium store in database schema history.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.schemaNameAdjustmentMode(String schemaNameAdjustmentMode) Specify how schema names should be adjusted for compatibility with the message converter used by the connector, including: 'avro' replaces the characters that cannot be used in the Avro type name with underscore; 'avro_unicode' replaces the underscore or characters that cannot be used in the Avro type name with corresponding unicode like _uxxxx.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.signalDataCollection(String signalDataCollection) The name of the data collection that is used to send signals/commands to Debezium.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.signalEnabledChannels(String signalEnabledChannels) List of channels names that are enabled.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.signalPollIntervalMs(long signalPollIntervalMs) Interval for looking for new signals in registered channels, given in milliseconds.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.signalPollIntervalMs(String signalPollIntervalMs) Interval for looking for new signals in registered channels, given in milliseconds.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.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, 't' for truncates, and 'none' to indicate nothing skipped.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.snapshotDelayMs(long snapshotDelayMs) A delay period before a snapshot will begin, given in milliseconds.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.snapshotDelayMs(String snapshotDelayMs) A delay period before a snapshot will begin, given in milliseconds.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.snapshotFetchSize(int snapshotFetchSize) The maximum number of records that should be loaded into memory while performing a snapshot.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.snapshotFetchSize(String snapshotFetchSize) The maximum number of records that should be loaded into memory while performing a snapshot.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.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.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.snapshotLockingMode(String snapshotLockingMode) Controls how long the connector holds onto the global read lock while it is performing a snapshot.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.snapshotLockTimeoutMs(long snapshotLockTimeoutMs) The maximum number of millis to wait for table locks at the beginning of a snapshot.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.snapshotLockTimeoutMs(String snapshotLockTimeoutMs) The maximum number of millis to wait for table locks at the beginning of a snapshot.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.snapshotMaxThreads(int snapshotMaxThreads) The maximum number of threads used to perform the snapshot.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.snapshotMaxThreads(String snapshotMaxThreads) The maximum number of threads used to perform the snapshot.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.snapshotMode(String snapshotMode) The criteria for running a snapshot upon startup of the connector.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.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.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.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 the specific connectors.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.snapshotTablesOrderByRowCount(String snapshotTablesOrderByRowCount) Controls the order in which tables are processed in the initial snapshot.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.sourceinfoStructMaker(String sourceinfoStructMaker) The name of the SourceInfoStructMaker class that returns SourceInfo schema and struct.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.tableExcludeList(String tableExcludeList) A comma-separated list of regular expressions that match the fully-qualified names of tables to be excluded from monitoring.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.tableIgnoreBuiltin(boolean tableIgnoreBuiltin) Flag specifying whether built-in tables should be ignored.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.tableIgnoreBuiltin(String tableIgnoreBuiltin) Flag specifying whether built-in tables should be ignored.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.tableIncludeList(String tableIncludeList) The tables for which changes are to be captured.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.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.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.tombstonesOnDelete(boolean tombstonesOnDelete) Whether delete operations should be represented by a delete event and a subsequent tombstone event (true) or only by a delete event (false).DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.tombstonesOnDelete(String tombstonesOnDelete) Whether delete operations should be represented by a delete event and a subsequent tombstone event (true) or only by a delete event (false).DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.topicNamingStrategy(String topicNamingStrategy) The name of the TopicNamingStrategy class that should be used to determine the topic name for data change, schema change, transaction, heartbeat event etc.DebeziumMySqlEndpointBuilderFactory.DebeziumMySqlEndpointBuilder.topicPrefix(String topicPrefix) Topic prefix that identifies and provides a namespace for the particular database server/cluster is capturing changes.