Interface DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder
-
- All Superinterfaces:
ComponentBuilder<org.apache.camel.component.debezium.DebeziumMongodbComponent>
- All Known Implementing Classes:
DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilderImpl
- Enclosing interface:
- DebeziumMongodbComponentBuilderFactory
public static interface DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder extends ComponentBuilder<org.apache.camel.component.debezium.DebeziumMongodbComponent>
Builder for the Debezium MongoDB Connector component.
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder
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 DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder
autowiredEnabled(boolean autowiredEnabled)
Whether autowiring is enabled.default DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder
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 DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder
collectionExcludeList(String collectionExcludeList)
A comma-separated list of regular expressions that match the collection names for which changes are to be excluded.default DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder
collectionIncludeList(String collectionIncludeList)
A comma-separated list of regular expressions that match the collection names for which changes are to be captured.default DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder
configuration(org.apache.camel.component.debezium.configuration.MongoDbConnectorEmbeddedDebeziumConfiguration configuration)
Allow pre-configured Configurations to be set.default DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder
connectBackoffInitialDelayMs(long connectBackoffInitialDelayMs)
The initial delay when trying to reconnect to a primary after a connection cannot be made or when no primary is available.default DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder
connectBackoffMaxDelayMs(long connectBackoffMaxDelayMs)
The maximum delay when trying to reconnect to a primary after a connection cannot be made or when no primary is available.default DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder
connectMaxAttempts(int connectMaxAttempts)
Maximum number of failed connection attempts to a replica set primary before an exception occurs and task is aborted.default DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder
converters(String converters)
Optional list of custom converters that would be used instead of default ones.default DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder
databaseExcludeList(String databaseExcludeList)
A comma-separated list of regular expressions that match the database names for which changes are to be excluded.default DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder
databaseHistoryFileFilename(String databaseHistoryFileFilename)
The path to the file that will be used to record the database history.default DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder
databaseIncludeList(String databaseIncludeList)
A comma-separated list of regular expressions that match the database names for which changes are to be captured.default DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder
eventProcessingFailureHandlingMode(String eventProcessingFailureHandlingMode)
Specify how failures during processing of events (i.e.default DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder
fieldExcludeList(String fieldExcludeList)
A comma-separated list of the fully-qualified names of fields that should be excluded from change event message values.default DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder
fieldRenames(String fieldRenames)
Description is not available here, please check Debezium website for corresponding key 'field.renames' description.default DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder
heartbeatIntervalMs(int heartbeatIntervalMs)
Length of an interval in milli-seconds in in which the connector periodically sends heartbeat messages to a heartbeat topic.default DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder
heartbeatTopicsPrefix(String heartbeatTopicsPrefix)
The prefix that is used to name heartbeat topics.Defaults to __debezium-heartbeat.default DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder
initialSyncMaxThreads(int initialSyncMaxThreads)
Maximum number of threads used to perform an initial sync of the collections in a replica set.default DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder
internalKeyConverter(String internalKeyConverter)
The Converter class that should be used to serialize and deserialize key data for offsets.default DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder
internalValueConverter(String internalValueConverter)
The Converter class that should be used to serialize and deserialize value data for offsets.default DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder
maxBatchSize(int maxBatchSize)
Maximum size of each batch of source records.default DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder
maxQueueSize(int maxQueueSize)
Maximum size of the queue for change events read from the database log but not yet recorded or forwarded.default DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder
mongodbAuthsource(String mongodbAuthsource)
Database containing user credentials.default DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder
mongodbConnectTimeoutMs(int mongodbConnectTimeoutMs)
The connection timeout in milliseconds.default DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder
mongodbHosts(String mongodbHosts)
The hostname and port pairs (in the form 'host' or 'host:port') of the MongoDB server(s) in the replica set.default DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder
mongodbMembersAutoDiscover(boolean mongodbMembersAutoDiscover)
Specifies whether the addresses in 'hosts' are seeds that should be used to discover all members of the cluster or replica set ('true'), or whether the address(es) in 'hosts' should be used as is ('false').default DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder
mongodbName(String mongodbName)
Unique name that identifies the MongoDB replica set or cluster and all recorded offsets, andthat is used as a prefix for all schemas and topics.default DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder
mongodbPassword(String mongodbPassword)
Password to be used when connecting to MongoDB, if necessary.default DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder
mongodbPollIntervalMs(long mongodbPollIntervalMs)
Frequency in milliseconds to look for new, removed, or changed replica sets.default DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder
mongodbServerSelectionTimeoutMs(int mongodbServerSelectionTimeoutMs)
The server selection timeout in milliseconds.default DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder
mongodbSocketTimeoutMs(int mongodbSocketTimeoutMs)
The socket timeout in milliseconds.default DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder
mongodbSslEnabled(boolean mongodbSslEnabled)
Should connector use SSL to connect to MongoDB instances.default DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder
mongodbSslInvalidHostnameAllowed(boolean mongodbSslInvalidHostnameAllowed)
Whether invalid host names are allowed when using SSL.default DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder
mongodbUser(String mongodbUser)
Database user for connecting to MongoDB, if necessary.default DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder
offsetCommitPolicy(String offsetCommitPolicy)
The name of the Java class of the commit policy.default DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder
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 DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder
offsetFlushIntervalMs(long offsetFlushIntervalMs)
Interval at which to try committing offsets.default DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder
offsetStorage(String offsetStorage)
The name of the Java class that is responsible for persistence of connector offsets.default DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder
offsetStorageFileName(String offsetStorageFileName)
Path to file where offsets are to be stored.default DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder
offsetStoragePartitions(int offsetStoragePartitions)
The number of partitions used when creating the offset storage topic.default DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder
offsetStorageReplicationFactor(int offsetStorageReplicationFactor)
Replication factor used when creating the offset storage topic.default DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder
offsetStorageTopic(String offsetStorageTopic)
The name of the Kafka topic where offsets are to be stored.default DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder
pollIntervalMs(long pollIntervalMs)
Frequency in milliseconds to wait for new change events to appear after receiving no events.default DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder
provideTransactionMetadata(boolean provideTransactionMetadata)
Enables transaction metadata extraction together with event counting.default DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder
queryFetchSize(int queryFetchSize)
The maximum number of records that should be loaded into memory while streaming.default DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder
retriableRestartConnectorWaitMs(long retriableRestartConnectorWaitMs)
Time to wait before restarting connector after retriable exception occurs.default DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder
sanitizeFieldNames(boolean sanitizeFieldNames)
Whether field names will be sanitized to Avro naming conventions.default DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder
skippedOperations(String skippedOperations)
The comma-separated list of operations to skip during streaming, defined as: 'i' for inserts; 'u' for updates; 'd' for deletes.default DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder
snapshotDelayMs(long snapshotDelayMs)
The number of milliseconds to delay before a snapshot will begin.default DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder
snapshotFetchSize(int snapshotFetchSize)
The maximum number of records that should be loaded into memory while performing a snapshot.default DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder
snapshotMode(String snapshotMode)
The criteria for running a snapshot upon startup of the connector.default DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder
sourceStructVersion(String sourceStructVersion)
A version of the format of the publicly visible source part in the message.default DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder
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).-
Methods inherited from interface org.apache.camel.builder.component.ComponentBuilder
build, build, doSetProperty, register
-
-
-
-
Method Detail
-
additionalProperties
default DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder 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.. E.g: additionalProperties.transactional.id=12345&additionalProperties.schema.registry.url=http://localhost:8811/avro. The option is a:java.util.Map
type. Group: common
-
bridgeErrorHandler
default DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder 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. By default the consumer will use the org.apache.camel.spi.ExceptionHandler to deal with exceptions, that will be logged at WARN or ERROR level and ignored. The option is a:boolean
type. Default: false Group: consumer
-
configuration
default DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder configuration(org.apache.camel.component.debezium.configuration.MongoDbConnectorEmbeddedDebeziumConfiguration configuration)
Allow pre-configured Configurations to be set. The option is a:org.apache.camel.component.debezium.configuration.MongoDbConnectorEmbeddedDebeziumConfiguration
type. Group: consumer
-
internalKeyConverter
default DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder internalKeyConverter(String internalKeyConverter)
The Converter class that should be used to serialize and deserialize key data for offsets. The default is JSON converter. The option is a:java.lang.String
type. Default: org.apache.kafka.connect.json.JsonConverter Group: consumer
-
internalValueConverter
default DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder internalValueConverter(String internalValueConverter)
The Converter class that should be used to serialize and deserialize value data for offsets. The default is JSON converter. The option is a:java.lang.String
type. Default: org.apache.kafka.connect.json.JsonConverter Group: consumer
-
offsetCommitPolicy
default DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder offsetCommitPolicy(String offsetCommitPolicy)
The name of the Java class of the commit policy. It defines when offsets commit has to be triggered based on the number of events processed and the time elapsed since the last commit. This class must implement the interface 'OffsetCommitPolicy'. The default is a periodic commit policy based upon time intervals. The option is a:java.lang.String
type. Default: io.debezium.embedded.spi.OffsetCommitPolicy.PeriodicCommitOffsetPolicy Group: consumer
-
offsetCommitTimeoutMs
default DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder 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. The default is 5 seconds. The option is a:long
type. Default: 5s Group: consumer
-
offsetFlushIntervalMs
default DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder offsetFlushIntervalMs(long offsetFlushIntervalMs)
Interval at which to try committing offsets. The default is 1 minute. The option is a:long
type. Default: 60s Group: consumer
-
offsetStorage
default DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder offsetStorage(String offsetStorage)
The name of the Java class that is responsible for persistence of connector offsets. The option is a:java.lang.String
type. Default: org.apache.kafka.connect.storage.FileOffsetBackingStore Group: consumer
-
offsetStorageFileName
default DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder offsetStorageFileName(String offsetStorageFileName)
Path to file where offsets are to be stored. Required when offset.storage is set to the FileOffsetBackingStore. The option is a:java.lang.String
type. Group: consumer
-
offsetStoragePartitions
default DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder offsetStoragePartitions(int offsetStoragePartitions)
The number of partitions used when creating the offset storage topic. Required when offset.storage is set to the 'KafkaOffsetBackingStore'. The option is a:int
type. Group: consumer
-
offsetStorageReplicationFactor
default DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder offsetStorageReplicationFactor(int offsetStorageReplicationFactor)
Replication factor used when creating the offset storage topic. Required when offset.storage is set to the KafkaOffsetBackingStore. The option is a:int
type. Group: consumer
-
offsetStorageTopic
default DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder offsetStorageTopic(String offsetStorageTopic)
The name of the Kafka topic where offsets are to be stored. Required when offset.storage is set to the KafkaOffsetBackingStore. The option is a:java.lang.String
type. Group: consumer
-
autowiredEnabled
default DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder autowiredEnabled(boolean autowiredEnabled)
Whether autowiring is enabled. This is used for automatic autowiring options (the option must be marked as autowired) by looking up in the registry to find if there is a single instance of matching type, which then gets configured on the component. This can be used for automatic configuring JDBC data sources, JMS connection factories, AWS Clients, etc. The option is a:boolean
type. Default: true Group: advanced
-
collectionExcludeList
default DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder collectionExcludeList(String collectionExcludeList)
A comma-separated list of regular expressions that match the collection names for which changes are to be excluded. The option is a:java.lang.String
type. Group: mongodb
-
collectionIncludeList
default DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder collectionIncludeList(String collectionIncludeList)
A comma-separated list of regular expressions that match the collection names for which changes are to be captured. The option is a:java.lang.String
type. Group: mongodb
-
connectBackoffInitialDelayMs
default DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder connectBackoffInitialDelayMs(long connectBackoffInitialDelayMs)
The initial delay when trying to reconnect to a primary after a connection cannot be made or when no primary is available. Defaults to 1 second (1000 ms). The option is a:long
type. Default: 1s Group: mongodb
-
connectBackoffMaxDelayMs
default DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder connectBackoffMaxDelayMs(long connectBackoffMaxDelayMs)
The maximum delay when trying to reconnect to a primary after a connection cannot be made or when no primary is available. Defaults to 120 second (120,000 ms). The option is a:long
type. Default: 2m Group: mongodb
-
connectMaxAttempts
default DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder connectMaxAttempts(int connectMaxAttempts)
Maximum number of failed connection attempts to a replica set primary before an exception occurs and task is aborted. Defaults to 16, which with the defaults for 'connect.backoff.initial.delay.ms' and 'connect.backoff.max.delay.ms' results in just over 20 minutes of attempts before failing. The option is a:int
type. Default: 16 Group: mongodb
-
converters
default DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder converters(String converters)
Optional list of custom converters that would be used instead of default ones. The converters are defined using '.type' config option and configured using options '.'. The option is a:java.lang.String
type. Group: mongodb
-
databaseExcludeList
default DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder databaseExcludeList(String databaseExcludeList)
A comma-separated list of regular expressions that match the database names for which changes are to be excluded. The option is a:java.lang.String
type. Group: mongodb
-
databaseHistoryFileFilename
default DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder databaseHistoryFileFilename(String databaseHistoryFileFilename)
The path to the file that will be used to record the database history. The option is a:java.lang.String
type. Group: mongodb
-
databaseIncludeList
default DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder databaseIncludeList(String databaseIncludeList)
A comma-separated list of regular expressions that match the database names for which changes are to be captured. The option is a:java.lang.String
type. Group: mongodb
-
eventProcessingFailureHandlingMode
default DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder eventProcessingFailureHandlingMode(String eventProcessingFailureHandlingMode)
Specify how failures during processing of events (i.e. when encountering a corrupted event) should be handled, including:'fail' (the default) an exception indicating the problematic event and its position is raised, causing the connector to be stopped; 'warn' the problematic event and its position will be logged and the event will be skipped;'ignore' the problematic event will be skipped. The option is a:java.lang.String
type. Default: fail Group: mongodb
-
fieldExcludeList
default DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder fieldExcludeList(String fieldExcludeList)
A comma-separated list of the fully-qualified names of fields that should be excluded from change event message values. The option is a:java.lang.String
type. Group: mongodb
-
fieldRenames
default DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder fieldRenames(String fieldRenames)
Description is not available here, please check Debezium website for corresponding key 'field.renames' description. The option is a:java.lang.String
type. Group: mongodb
-
heartbeatIntervalMs
default DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder heartbeatIntervalMs(int heartbeatIntervalMs)
Length of an interval in milli-seconds in in which the connector periodically sends heartbeat messages to a heartbeat topic. Use 0 to disable heartbeat messages. Disabled by default. The option is a:int
type. Default: 0ms Group: mongodb
-
heartbeatTopicsPrefix
default DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder heartbeatTopicsPrefix(String heartbeatTopicsPrefix)
The prefix that is used to name heartbeat topics.Defaults to __debezium-heartbeat. The option is a:java.lang.String
type. Default: __debezium-heartbeat Group: mongodb
-
initialSyncMaxThreads
default DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder initialSyncMaxThreads(int initialSyncMaxThreads)
Maximum number of threads used to perform an initial sync of the collections in a replica set. Defaults to 1. The option is a:int
type. Default: 1 Group: mongodb
-
maxBatchSize
default DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder maxBatchSize(int maxBatchSize)
Maximum size of each batch of source records. Defaults to 2048. The option is a:int
type. Default: 2048 Group: mongodb
-
maxQueueSize
default DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder maxQueueSize(int maxQueueSize)
Maximum size of the queue for change events read from the database log but not yet recorded or forwarded. Defaults to 8192, and should always be larger than the maximum batch size. The option is a:int
type. Default: 8192 Group: mongodb
-
mongodbAuthsource
default DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder mongodbAuthsource(String mongodbAuthsource)
Database containing user credentials. The option is a:java.lang.String
type. Default: admin Group: mongodb
-
mongodbConnectTimeoutMs
default DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder mongodbConnectTimeoutMs(int mongodbConnectTimeoutMs)
The connection timeout in milliseconds. The option is a:int
type. Default: 10s Group: mongodb
-
mongodbHosts
default DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder mongodbHosts(String mongodbHosts)
The hostname and port pairs (in the form 'host' or 'host:port') of the MongoDB server(s) in the replica set. The option is a:java.lang.String
type. Group: mongodb
-
mongodbMembersAutoDiscover
default DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder mongodbMembersAutoDiscover(boolean mongodbMembersAutoDiscover)
Specifies whether the addresses in 'hosts' are seeds that should be used to discover all members of the cluster or replica set ('true'), or whether the address(es) in 'hosts' should be used as is ('false'). The default is 'true'. The option is a:boolean
type. Default: true Group: mongodb
-
mongodbName
default DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder mongodbName(String mongodbName)
Unique name that identifies the MongoDB replica set or cluster and all recorded offsets, andthat is used as a prefix for all schemas and topics. Each distinct MongoDB installation should have a separate namespace and monitored by at most one Debezium connector. The option is a:java.lang.String
type. Group: mongodb
-
mongodbPassword
default DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder mongodbPassword(String mongodbPassword)
Password to be used when connecting to MongoDB, if necessary. The option is a:java.lang.String
type. Group: mongodb
-
mongodbPollIntervalMs
default DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder mongodbPollIntervalMs(long mongodbPollIntervalMs)
Frequency in milliseconds to look for new, removed, or changed replica sets. Defaults to 30000 milliseconds. The option is a:long
type. Default: 30s Group: mongodb
-
mongodbServerSelectionTimeoutMs
default DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder mongodbServerSelectionTimeoutMs(int mongodbServerSelectionTimeoutMs)
The server selection timeout in milliseconds. The option is a:int
type. Default: 30s Group: mongodb
-
mongodbSocketTimeoutMs
default DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder mongodbSocketTimeoutMs(int mongodbSocketTimeoutMs)
The socket timeout in milliseconds. The option is a:int
type. Default: 0ms Group: mongodb
-
mongodbSslEnabled
default DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder mongodbSslEnabled(boolean mongodbSslEnabled)
Should connector use SSL to connect to MongoDB instances. The option is a:boolean
type. Default: false Group: mongodb
-
mongodbSslInvalidHostnameAllowed
default DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder mongodbSslInvalidHostnameAllowed(boolean mongodbSslInvalidHostnameAllowed)
Whether invalid host names are allowed when using SSL. If true the connection will not prevent man-in-the-middle attacks. The option is a:boolean
type. Default: false Group: mongodb
-
mongodbUser
default DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder mongodbUser(String mongodbUser)
Database user for connecting to MongoDB, if necessary. The option is a:java.lang.String
type. Group: mongodb
-
pollIntervalMs
default DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder pollIntervalMs(long pollIntervalMs)
Frequency in milliseconds to wait for new change events to appear after receiving no events. Defaults to 500ms. The option is a:long
type. Default: 500ms Group: mongodb
-
provideTransactionMetadata
default DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder provideTransactionMetadata(boolean provideTransactionMetadata)
Enables transaction metadata extraction together with event counting. The option is a:boolean
type. Default: false Group: mongodb
-
queryFetchSize
default DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder queryFetchSize(int queryFetchSize)
The maximum number of records that should be loaded into memory while streaming. A value of 0 uses the default JDBC fetch size. The option is a:int
type. Default: 0 Group: mongodb
-
retriableRestartConnectorWaitMs
default DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder retriableRestartConnectorWaitMs(long retriableRestartConnectorWaitMs)
Time to wait before restarting connector after retriable exception occurs. Defaults to 10000ms. The option is a:long
type. Default: 10s Group: mongodb
-
sanitizeFieldNames
default DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder sanitizeFieldNames(boolean sanitizeFieldNames)
Whether field names will be sanitized to Avro naming conventions. The option is a:boolean
type. Default: false Group: mongodb
-
skippedOperations
default DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder skippedOperations(String skippedOperations)
The comma-separated list of operations to skip during streaming, defined as: 'i' for inserts; 'u' for updates; 'd' for deletes. By default, no operations will be skipped. The option is a:java.lang.String
type. Group: mongodb
-
snapshotDelayMs
default DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder snapshotDelayMs(long snapshotDelayMs)
The number of milliseconds to delay before a snapshot will begin. The option is a:long
type. Default: 0ms Group: mongodb
-
snapshotFetchSize
default DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder snapshotFetchSize(int snapshotFetchSize)
The maximum number of records that should be loaded into memory while performing a snapshot. The option is a:int
type. Group: mongodb
-
snapshotMode
default DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder snapshotMode(String snapshotMode)
The criteria for running a snapshot upon startup of the connector. Options include: 'initial' (the default) to specify the connector should always perform an initial sync when required; 'never' to specify the connector should never perform an initial sync. The option is a:java.lang.String
type. Default: initial Group: mongodb
-
sourceStructVersion
default DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder sourceStructVersion(String sourceStructVersion)
A version of the format of the publicly visible source part in the message. The option is a:java.lang.String
type. Default: v2 Group: mongodb
-
tombstonesOnDelete
default DebeziumMongodbComponentBuilderFactory.DebeziumMongodbComponentBuilder 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). Emitting the tombstone event (the default behavior) allows Kafka to completely delete all events pertaining to the given key once the source record got deleted. The option is a:boolean
type. Default: false Group: mongodb
-
-