| </dependency></code></pre> </div> </div> </div> </div> <div class="sect1"> <h2 id="_uri_format"><a class="anchor" href="#_uri_format"></a>URI format</h2> <div class="sectionbody"> <div class="listingblock"> <div class="content"> <pre>debezium-oracle:name[?options]</pre> </div> </div> </div> </div> <div class="sect1"> <h2 id="_configuring_options"><a class="anchor" href="#_configuring_options"></a>Configuring Options</h2> <div class="sectionbody"> <div class="paragraph"> <p>Camel components are configured on two separate levels:</p> </div> <div class="ulist"> <ul> <li> <p>component level</p> </li> <li> <p>endpoint level</p> </li> </ul> </div> <div class="sect2"> <h3 id="_configuring_component_options"><a class="anchor" href="#_configuring_component_options"></a>Configuring Component Options</h3> <div class="paragraph"> <p>At the component level, you set general and shared configurations that are, then, inherited by the endpoints. It is the highest configuration level.</p> </div> <div class="paragraph"> <p>For example, a component may have security settings, credentials for authentication, urls for network connection and so forth.</p> </div> <div class="paragraph"> <p>Some components only have a few options, and others may have many. Because components typically have pre-configured defaults that are commonly used, then you may often only need to configure a few options on a component; or none at all.</p> </div> <div class="paragraph"> <p>You can configure components using:</p> </div> <div class="ulist"> <ul> <li> <p>the <a href="../../manual/component-dsl.html" class="xref page">Component DSL</a>.</p> </li> <li> <p>in a configuration file (<code>application.properties</code>, <code>*.yaml</code> files, etc).</p> </li> <li> <p>directly in the Java code.</p> </li> </ul> </div> </div> <div class="sect2"> <h3 id="_configuring_endpoint_options"><a class="anchor" href="#_configuring_endpoint_options"></a>Configuring Endpoint Options</h3> <div class="paragraph"> <p>You usually spend more time setting up endpoints because they have many options. These options help you customize what you want the endpoint to do. The options are also categorized into whether the endpoint is used as a consumer (<em>from</em>), as a producer (<em>to</em>), or both.</p> </div> <div class="paragraph"> <p>Configuring endpoints is most often done directly in the endpoint URI as <em>path</em> and <em>query</em> parameters. You can also use the <a href="../../manual/Endpoint-dsl.html" class="xref page">Endpoint DSL</a> and <a href="../../manual/dataformat-dsl.html" class="xref page">DataFormat DSL</a> as a <em>type safe</em> way of configuring endpoints and data formats in Java.</p> </div> <div class="paragraph"> <p>A good practice when configuring options is to use <a href="../../manual/using-propertyplaceholder.html" class="xref page">Property Placeholders</a>.</p> </div> <div class="paragraph"> <p>Property placeholders provide a few benefits:</p> </div> <div class="ulist"> <ul> <li> <p>They help prevent using hardcoded urls, port numbers, sensitive information, and other settings.</p> </li> <li> <p>They allow externalizing the configuration from the code.</p> </li> <li> <p>They help the code to become more flexible and reusable.</p> </li> </ul> </div> <div class="paragraph"> <p>The following two sections list all the options, firstly for the component followed by the endpoint.</p> </div> </div> </div> </div> <div class="sect1"> <h2 id="_component_options"><a class="anchor" href="#_component_options"></a>Component Options</h2> <div class="sectionbody"> <div class="paragraph"> <p>The Debezium Oracle Connector component supports 129 options, which are listed below.</p> </div> <div class="table-wrapper"><table class="tableblock frame-all grid-all stretch"> <colgroup> <col> <col> <col> <col> </colgroup> <thead> <tr> <th class="tableblock halign-left valign-top">Name</th> <th class="tableblock halign-left valign-top">Description</th> <th class="tableblock halign-center valign-top">Default</th> <th class="tableblock halign-left valign-top">Type</th> </tr> </thead> <tbody> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_additionalProperties"></a> <a href="#_component_option_additionalProperties" class="anchor"></a><strong>additionalProperties</strong> (common)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>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. This is a multi-value option with prefix: additionalProperties.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Map</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_bridgeErrorHandler"></a> <a href="#_component_option_bridgeErrorHandler" class="anchor"></a><strong>bridgeErrorHandler</strong> (consumer)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>Allows for bridging the consumer to the Camel routing Error Handler, which mean any exceptions (if possible) occurred while the Camel consumer is trying to pickup incoming messages, or the likes, will now be processed as a message and handled by the routing Error Handler. Important: This is only possible if the 3rd party component allows Camel to be alerted if an exception was thrown. Some components handle this internally only, and therefore bridgeErrorHandler is not possible. In other situations we may improve the Camel component to hook into the 3rd party component and make this possible for future releases. 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.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">false</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">boolean</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_configuration"></a> <a href="#_component_option_configuration" class="anchor"></a><strong>configuration</strong> (consumer)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>Allow pre-configured Configurations to be set.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">OracleConnectorEmbeddedDebeziumConfiguration</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_internalKeyConverter"></a> <a href="#_component_option_internalKeyConverter" class="anchor"></a><strong>internalKeyConverter</strong> (consumer)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>The Converter class that should be used to serialize and deserialize key data for offsets. The default is JSON converter.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">org.apache.kafka.connect.json.JsonConverter</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_internalValueConverter"></a> <a href="#_component_option_internalValueConverter" class="anchor"></a><strong>internalValueConverter</strong> (consumer)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>The Converter class that should be used to serialize and deserialize value data for offsets. The default is JSON converter.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">org.apache.kafka.connect.json.JsonConverter</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_offsetCommitPolicy"></a> <a href="#_component_option_offsetCommitPolicy" class="anchor"></a><strong>offsetCommitPolicy</strong> (consumer)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>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.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_offsetCommitTimeoutMs"></a> <a href="#_component_option_offsetCommitTimeoutMs" class="anchor"></a><strong>offsetCommitTimeoutMs</strong> (consumer)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>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.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">5000</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">long</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_offsetFlushIntervalMs"></a> <a href="#_component_option_offsetFlushIntervalMs" class="anchor"></a><strong>offsetFlushIntervalMs</strong> (consumer)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>Interval at which to try committing offsets. The default is 1 minute.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">60000</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">long</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_offsetStorage"></a> <a href="#_component_option_offsetStorage" class="anchor"></a><strong>offsetStorage</strong> (consumer)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>The name of the Java class that is responsible for persistence of connector offsets.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">org.apache.kafka.connect.storage.FileOffsetBackingStore</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_offsetStorageFileName"></a> <a href="#_component_option_offsetStorageFileName" class="anchor"></a><strong>offsetStorageFileName</strong> (consumer)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>Path to file where offsets are to be stored. Required when offset.storage is set to the FileOffsetBackingStore.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_offsetStoragePartitions"></a> <a href="#_component_option_offsetStoragePartitions" class="anchor"></a><strong>offsetStoragePartitions</strong> (consumer)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>The number of partitions used when creating the offset storage topic. Required when offset.storage is set to the 'KafkaOffsetBackingStore'.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">int</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_offsetStorageReplicationFactor"></a> <a href="#_component_option_offsetStorageReplicationFactor" class="anchor"></a><strong>offsetStorageReplicationFactor</strong> (consumer)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>Replication factor used when creating the offset storage topic. Required when offset.storage is set to the KafkaOffsetBackingStore.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">int</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_offsetStorageTopic"></a> <a href="#_component_option_offsetStorageTopic" class="anchor"></a><strong>offsetStorageTopic</strong> (consumer)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>The name of the Kafka topic where offsets are to be stored. Required when offset.storage is set to the KafkaOffsetBackingStore.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_autowiredEnabled"></a> <a href="#_component_option_autowiredEnabled" class="anchor"></a><strong>autowiredEnabled</strong> (advanced)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>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.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">true</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">boolean</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_archiveDestinationName"></a> <a href="#_component_option_archiveDestinationName" class="anchor"></a><strong>archiveDestinationName</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>Sets the specific archive log destination as the source for reading archive logs.When not set, the connector will automatically select the first LOCAL and VALID destination.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_archiveLogHours"></a> <a href="#_component_option_archiveLogHours" class="anchor"></a><strong>archiveLogHours</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>The number of hours in the past from SYSDATE to mine archive logs. Using 0 mines all available archive logs.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">0</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">long</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_binaryHandlingMode"></a> <a href="#_component_option_binaryHandlingMode" class="anchor"></a><strong>binaryHandlingMode</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>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.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">bytes</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_columnExcludeList"></a> <a href="#_component_option_columnExcludeList" class="anchor"></a><strong>columnExcludeList</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>Regular expressions matching columns to exclude from change events.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_columnIncludeList"></a> <a href="#_component_option_columnIncludeList" class="anchor"></a><strong>columnIncludeList</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>Regular expressions matching columns to include in change events.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_columnPropagateSourceType"></a> <a href="#_component_option_columnPropagateSourceType" class="anchor"></a><strong>columnPropagateSourceType</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>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.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_converters"></a> <a href="#_component_option_converters" class="anchor"></a><strong>converters</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>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 '.'.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_customMetricTags"></a> <a href="#_component_option_customMetricTags" class="anchor"></a><strong>customMetricTags</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>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. For example: k1=v1,k2=v2.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_databaseConnectionAdapter"></a> <a href="#_component_option_databaseConnectionAdapter" class="anchor"></a><strong>databaseConnectionAdapter</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>The adapter to use when capturing changes from the database. Options include: 'logminer': (the default) to capture changes using native Oracle LogMiner; 'xstream' to capture changes using Oracle XStreams.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">LogMiner</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_databaseDbname"></a> <a href="#_component_option_databaseDbname" class="anchor"></a><strong>databaseDbname</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>The name of the database from which the connector should capture changes.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_databaseHostname"></a> <a href="#_component_option_databaseHostname" class="anchor"></a><strong>databaseHostname</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>Resolvable hostname or IP address of the database server.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_databaseOutServerName"></a> <a href="#_component_option_databaseOutServerName" class="anchor"></a><strong>databaseOutServerName</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>Name of the XStream Out server to connect to.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_databasePassword"></a> <a href="#_component_option_databasePassword" class="anchor"></a><strong>databasePassword</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p><strong>Required</strong> Password of the database user to be used when connecting to the database.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_databasePdbName"></a> <a href="#_component_option_databasePdbName" class="anchor"></a><strong>databasePdbName</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>Name of the pluggable database when working with a multi-tenant set-up. The CDB name must be given via database.dbname in this case.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_databasePort"></a> <a href="#_component_option_databasePort" class="anchor"></a><strong>databasePort</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>Port of the database server.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">1528</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">int</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_databaseQueryTimeoutMs"></a> <a href="#_component_option_databaseQueryTimeoutMs" class="anchor"></a><strong>databaseQueryTimeoutMs</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>Time to wait for a query to execute, given in milliseconds. Defaults to 600 seconds (600,000 ms); zero means there is no limit.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">10m</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">int</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_databaseUrl"></a> <a href="#_component_option_databaseUrl" class="anchor"></a><strong>databaseUrl</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>Complete JDBC URL as an alternative to specifying hostname, port and database provided as a way to support alternative connection scenarios.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_databaseUser"></a> <a href="#_component_option_databaseUser" class="anchor"></a><strong>databaseUser</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>Name of the database user to be used when connecting to the database.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_datatypePropagateSourceType"></a> <a href="#_component_option_datatypePropagateSourceType" class="anchor"></a><strong>datatypePropagateSourceType</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>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.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_decimalHandlingMode"></a> <a href="#_component_option_decimalHandlingMode" class="anchor"></a><strong>decimalHandlingMode</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>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.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">precise</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_errorsMaxRetries"></a> <a href="#_component_option_errorsMaxRetries" class="anchor"></a><strong>errorsMaxRetries</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>The maximum number of retries on connection errors before failing (-1 = no limit, 0 = disabled, 0 = num of retries).</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">-1</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">int</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_eventProcessingFailureHandlingMode"></a> <a href="#_component_option_eventProcessingFailureHandlingMode" class="anchor"></a><strong>eventProcessingFailureHandlingMode</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>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.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">fail</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_heartbeatActionQuery"></a> <a href="#_component_option_heartbeatActionQuery" class="anchor"></a><strong>heartbeatActionQuery</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>The query executed with every heartbeat.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_heartbeatIntervalMs"></a> <a href="#_component_option_heartbeatIntervalMs" class="anchor"></a><strong>heartbeatIntervalMs</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>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.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">0ms</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">int</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_heartbeatTopicsPrefix"></a> <a href="#_component_option_heartbeatTopicsPrefix" class="anchor"></a><strong>heartbeatTopicsPrefix</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>The prefix that is used to name heartbeat topics.Defaults to __debezium-heartbeat.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">__debezium-heartbeat</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_includeSchemaChanges"></a> <a href="#_component_option_includeSchemaChanges" class="anchor"></a><strong>includeSchemaChanges</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>Whether the connector should publish changes in the database schema to a Kafka topic with the same name as the database server ID. Each schema change will be recorded using a key that contains the database name and whose value include logical description of the new schema and optionally the DDL statement(s). The default is 'true'. This is independent of how the connector internally records database schema history.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">true</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">boolean</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_includeSchemaComments"></a> <a href="#_component_option_includeSchemaComments" class="anchor"></a><strong>includeSchemaComments</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>Whether the connector parse table and column’s comment to metadata object. Note: Enable this option will bring the implications on memory usage. The number and size of ColumnImpl objects is what largely impacts how much memory is consumed by the Debezium connectors, and adding a String to each of them can potentially be quite heavy. The default is 'false'.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">false</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">boolean</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_incrementalSnapshotWatermarkingStrategy"></a> <a href="#_component_option_incrementalSnapshotWatermarkingStrategy" class="anchor"></a><strong>incrementalSnapshotWatermarkingStrategy</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>Specify the strategy used for watermarking during an incremental snapshot: 'insert_insert' both open and close signal is written into signal data collection (default); 'insert_delete' only open signal is written on signal data collection, the close will delete the relative open signal;.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">INSERT_INSERT</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_intervalHandlingMode"></a> <a href="#_component_option_intervalHandlingMode" class="anchor"></a><strong>intervalHandlingMode</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>Specify how INTERVAL columns should be represented in change events, including: 'string' represents values as an exact ISO formatted string; 'numeric' (default) represents values using the inexact conversion into microseconds.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">numeric</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_lobEnabled"></a> <a href="#_component_option_lobEnabled" class="anchor"></a><strong>lobEnabled</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>When set to 'false', the default, LOB fields will not be captured nor emitted. When set to 'true', the connector will capture LOB fields and emit changes for those fields like any other column type.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">false</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">boolean</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_logMiningArchiveLogOnlyMode"></a> <a href="#_component_option_logMiningArchiveLogOnlyMode" class="anchor"></a><strong>logMiningArchiveLogOnlyMode</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>When set to 'false', the default, the connector will mine both archive log and redo logs to emit change events. When set to 'true', the connector will only mine archive logs. There are circumstances where its advantageous to only mine archive logs and accept latency in event emission due to frequent revolving redo logs.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">false</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">boolean</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_logMiningArchiveLogOnlyScnPollIntervalMs"></a> <a href="#_component_option_logMiningArchiveLogOnlyScnPollIntervalMs" class="anchor"></a><strong>logMiningArchiveLogOnlyScnPollIntervalMs</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>The interval in milliseconds to wait between polls checking to see if the SCN is in the archive logs.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">10s</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">long</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_logMiningBatchSizeDefault"></a> <a href="#_component_option_logMiningBatchSizeDefault" class="anchor"></a><strong>logMiningBatchSizeDefault</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>The starting SCN interval size that the connector will use for reading data from redo/archive logs.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">20000</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">long</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_logMiningBatchSizeIncrement"></a> <a href="#_component_option_logMiningBatchSizeIncrement" class="anchor"></a><strong>logMiningBatchSizeIncrement</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>Active batch size will be also increased/decreased by this amount for tuning connector throughput when needed.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">20000</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">long</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_logMiningBatchSizeMax"></a> <a href="#_component_option_logMiningBatchSizeMax" class="anchor"></a><strong>logMiningBatchSizeMax</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>The maximum SCN interval size that this connector will use when reading from redo/archive logs.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">100000</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">long</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_logMiningBatchSizeMin"></a> <a href="#_component_option_logMiningBatchSizeMin" class="anchor"></a><strong>logMiningBatchSizeMin</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>The minimum SCN interval size that this connector will try to read from redo/archive logs.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">1000</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">long</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_logMiningBufferDropOnStop"></a> <a href="#_component_option_logMiningBufferDropOnStop" class="anchor"></a><strong>logMiningBufferDropOnStop</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>When set to true the underlying buffer cache is not retained when the connector is stopped. When set to false (the default), the buffer cache is retained across restarts.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">false</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">boolean</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_logMiningBufferEhcacheEventsConfig"></a> <a href="#_component_option_logMiningBufferEhcacheEventsConfig" class="anchor"></a><strong>logMiningBufferEhcacheEventsConfig</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>Specifies the inner body the Ehcache tag for the events cache, but should not include the nor the attributes as these are managed by Debezium.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_logMiningBufferEhcacheGlobalConfig"></a> <a href="#_component_option_logMiningBufferEhcacheGlobalConfig" class="anchor"></a><strong>logMiningBufferEhcacheGlobalConfig</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>Specifies any Ehcache global configurations such as services or persistence. This cannot include nor tags as these are managed by Debezium.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_logMiningBufferEhcacheProcessedtransactionsConfig"></a> <a href="#_component_option_logMiningBufferEhcacheProcessedtransactionsConfig" class="anchor"></a><strong>logMiningBufferEhcacheProcessedtransactionsConfig</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>Specifies the inner body the Ehcache tag for the processed transaction cache, but should not include the nor the attributes as these are managed by Debezium.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_logMiningBufferEhcacheSchemachangesConfig"></a> <a href="#_component_option_logMiningBufferEhcacheSchemachangesConfig" class="anchor"></a><strong>logMiningBufferEhcacheSchemachangesConfig</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>Specifies the inner body the Ehcache tag for the schema changes cache, but should not include the nor the attributes as these are managed by Debezium.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_logMiningBufferEhcacheTransactionsConfig"></a> <a href="#_component_option_logMiningBufferEhcacheTransactionsConfig" class="anchor"></a><strong>logMiningBufferEhcacheTransactionsConfig</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>Specifies the inner body the Ehcache tag for the transaction cache, but should not include the nor the attributes as these are managed by Debezium.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_logMiningBufferInfinispanCacheEvents"></a> <a href="#_component_option_logMiningBufferInfinispanCacheEvents" class="anchor"></a><strong>logMiningBufferInfinispanCacheEvents</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>Specifies the XML configuration for the Infinispan 'events' cache.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_logMiningBufferInfinispanCacheGlobal"></a> <a href="#_component_option_logMiningBufferInfinispanCacheGlobal" class="anchor"></a><strong>logMiningBufferInfinispanCacheGlobal</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>Specifies the XML configuration for the Infinispan 'global' configuration.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_logMiningBufferInfinispanCacheProcessedTransactions"></a> <a href="#_component_option_logMiningBufferInfinispanCacheProcessedTransactions" class="anchor"></a><strong>logMiningBufferInfinispanCacheProcessedTransactions</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>Specifies the XML configuration for the Infinispan 'processed-transactions' cache.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_logMiningBufferInfinispanCacheSchemaChanges"></a> <a href="#_component_option_logMiningBufferInfinispanCacheSchemaChanges" class="anchor"></a><strong>logMiningBufferInfinispanCacheSchemaChanges</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>Specifies the XML configuration for the Infinispan 'schema-changes' cache.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_logMiningBufferInfinispanCacheTransactions"></a> <a href="#_component_option_logMiningBufferInfinispanCacheTransactions" class="anchor"></a><strong>logMiningBufferInfinispanCacheTransactions</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>Specifies the XML configuration for the Infinispan 'transactions' cache.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_logMiningBufferTransactionEventsThreshold"></a> <a href="#_component_option_logMiningBufferTransactionEventsThreshold" class="anchor"></a><strong>logMiningBufferTransactionEventsThreshold</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>The number of events a transaction can include before the transaction is discarded. This is useful for managing buffer memory and/or space when dealing with very large transactions. Defaults to 0, meaning that no threshold is applied and transactions can have unlimited events.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">0</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">long</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_logMiningBufferType"></a> <a href="#_component_option_logMiningBufferType" class="anchor"></a><strong>logMiningBufferType</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>The buffer type controls how the connector manages buffering transaction data. memory - Uses the JVM process' heap to buffer all transaction data. infinispan_embedded - This option uses an embedded Infinispan cache to buffer transaction data and persist it to disk. infinispan_remote - This option uses a remote Infinispan cluster to buffer transaction data and persist it to disk. ehcache - Use ehcache in embedded mode to buffer transaction data and persist it to disk.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">memory</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_logMiningFlushTableName"></a> <a href="#_component_option_logMiningFlushTableName" class="anchor"></a><strong>logMiningFlushTableName</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>The name of the flush table used by the connector, defaults to LOG_MINING_FLUSH.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">LOG_MINING_FLUSH</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_logMiningIncludeRedoSql"></a> <a href="#_component_option_logMiningIncludeRedoSql" class="anchor"></a><strong>logMiningIncludeRedoSql</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>When enabled, the transaction log REDO SQL will be included in the source information block.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">false</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">boolean</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_logMiningQueryFilterMode"></a> <a href="#_component_option_logMiningQueryFilterMode" class="anchor"></a><strong>logMiningQueryFilterMode</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>Specifies how the filter configuration is applied to the LogMiner database query. none - The query does not apply any schema or table filters, all filtering is at runtime by the connector. in - The query uses SQL in-clause expressions to specify the schema or table filters. regex - The query uses Oracle REGEXP_LIKE expressions to specify the schema or table filters.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">none</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_logMiningRestartConnection"></a> <a href="#_component_option_logMiningRestartConnection" class="anchor"></a><strong>logMiningRestartConnection</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>Debezium opens a database connection and keeps that connection open throughout the entire streaming phase. In some situations, this can lead to excessive SGA memory usage. By setting this option to 'true' (the default is 'false'), the connector will close and re-open a database connection after every detected log switch or if the log.mining.session.max.ms has been reached.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">false</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">boolean</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_logMiningScnGapDetectionGapSizeMin"></a> <a href="#_component_option_logMiningScnGapDetectionGapSizeMin" class="anchor"></a><strong>logMiningScnGapDetectionGapSizeMin</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>Used for SCN gap detection, if the difference between current SCN and previous end SCN is bigger than this value, and the time difference of current SCN and previous end SCN is smaller than log.mining.scn.gap.detection.time.interval.max.ms, consider it a SCN gap.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">1000000</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">long</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_logMiningScnGapDetectionTimeIntervalMaxMs"></a> <a href="#_component_option_logMiningScnGapDetectionTimeIntervalMaxMs" class="anchor"></a><strong>logMiningScnGapDetectionTimeIntervalMaxMs</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>Used for SCN gap detection, if the difference between current SCN and previous end SCN is bigger than log.mining.scn.gap.detection.gap.size.min, and the time difference of current SCN and previous end SCN is smaller than this value, consider it a SCN gap.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">20s</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">long</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_logMiningSessionMaxMs"></a> <a href="#_component_option_logMiningSessionMaxMs" class="anchor"></a><strong>logMiningSessionMaxMs</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>The maximum number of milliseconds that a LogMiner session lives for before being restarted. Defaults to 0 (indefinite until a log switch occurs).</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">0ms</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">long</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_logMiningSleepTimeDefaultMs"></a> <a href="#_component_option_logMiningSleepTimeDefaultMs" class="anchor"></a><strong>logMiningSleepTimeDefaultMs</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>The amount of time that the connector will sleep after reading data from redo/archive logs and before starting reading data again. Value is in milliseconds.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">1s</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">long</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_logMiningSleepTimeIncrementMs"></a> <a href="#_component_option_logMiningSleepTimeIncrementMs" class="anchor"></a><strong>logMiningSleepTimeIncrementMs</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>The maximum amount of time that the connector will use to tune the optimal sleep time when reading data from LogMiner. Value is in milliseconds.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">200ms</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">long</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_logMiningSleepTimeMaxMs"></a> <a href="#_component_option_logMiningSleepTimeMaxMs" class="anchor"></a><strong>logMiningSleepTimeMaxMs</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>The maximum amount of time that the connector will sleep after reading data from redo/archive logs and before starting reading data again. Value is in milliseconds.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">3s</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">long</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_logMiningSleepTimeMinMs"></a> <a href="#_component_option_logMiningSleepTimeMinMs" class="anchor"></a><strong>logMiningSleepTimeMinMs</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>The minimum amount of time that the connector will sleep after reading data from redo/archive logs and before starting reading data again. Value is in milliseconds.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">0ms</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">long</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_logMiningStrategy"></a> <a href="#_component_option_logMiningStrategy" class="anchor"></a><strong>logMiningStrategy</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>There are strategies: Online catalog with faster mining but no captured DDL. Another - with data dictionary loaded into REDO LOG files.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">online_catalog</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_logMiningTransactionRetentionMs"></a> <a href="#_component_option_logMiningTransactionRetentionMs" class="anchor"></a><strong>logMiningTransactionRetentionMs</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>Duration in milliseconds to keep long running transactions in transaction buffer between log mining sessions. By default, all transactions are retained.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">0ms</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">long</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_logMiningUsernameExcludeList"></a> <a href="#_component_option_logMiningUsernameExcludeList" class="anchor"></a><strong>logMiningUsernameExcludeList</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>Comma separated list of usernames to exclude from LogMiner query.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_logMiningUsernameIncludeList"></a> <a href="#_component_option_logMiningUsernameIncludeList" class="anchor"></a><strong>logMiningUsernameIncludeList</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>Comma separated list of usernames to include from LogMiner query.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_maxBatchSize"></a> <a href="#_component_option_maxBatchSize" class="anchor"></a><strong>maxBatchSize</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>Maximum size of each batch of source records. Defaults to 2048.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">2048</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">int</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_maxQueueSize"></a> <a href="#_component_option_maxQueueSize" class="anchor"></a><strong>maxQueueSize</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>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.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">8192</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">int</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_maxQueueSizeInBytes"></a> <a href="#_component_option_maxQueueSizeInBytes" class="anchor"></a><strong>maxQueueSizeInBytes</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>Maximum size of the queue in bytes for change events read from the database log but not yet recorded or forwarded. Defaults to 0. Mean the feature is not enabled.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">0</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">long</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_messageKeyColumns"></a> <a href="#_component_option_messageKeyColumns" class="anchor"></a><strong>messageKeyColumns</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>A semicolon-separated list of expressions that match fully-qualified tables and column(s) to be used as message key. Each expression must match the pattern ':', where the table names could be defined as (DB_NAME.TABLE_NAME) or (SCHEMA_NAME.TABLE_NAME), depending on the specific connector, and the key columns are a comma-separated list of columns representing the custom key. For any table without an explicit key configuration the table’s primary key column(s) will be used as message key. Example: dbserver1.inventory.orderlines:orderId,orderLineId;dbserver1.inventory.orders:id.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_notificationEnabledChannels"></a> <a href="#_component_option_notificationEnabledChannels" class="anchor"></a><strong>notificationEnabledChannels</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>List of notification channels names that are enabled.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_notificationSinkTopicName"></a> <a href="#_component_option_notificationSinkTopicName" class="anchor"></a><strong>notificationSinkTopicName</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>The name of the topic for the notifications. This is required in case 'sink' is in the list of enabled channels.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_openlogreplicatorHost"></a> <a href="#_component_option_openlogreplicatorHost" class="anchor"></a><strong>openlogreplicatorHost</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>The hostname of the OpenLogReplicator network service.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_openlogreplicatorPort"></a> <a href="#_component_option_openlogreplicatorPort" class="anchor"></a><strong>openlogreplicatorPort</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>The port of the OpenLogReplicator network service.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">int</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_openlogreplicatorSource"></a> <a href="#_component_option_openlogreplicatorSource" class="anchor"></a><strong>openlogreplicatorSource</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>The configured logical source name in the OpenLogReplicator configuration that is to stream changes.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_pollIntervalMs"></a> <a href="#_component_option_pollIntervalMs" class="anchor"></a><strong>pollIntervalMs</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>Time to wait for new change events to appear after receiving no events, given in milliseconds. Defaults to 500 ms.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">500ms</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">long</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_postProcessors"></a> <a href="#_component_option_postProcessors" class="anchor"></a><strong>postProcessors</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>Optional list of post processors. The processors are defined using '.type' config option and configured using options ''.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_provideTransactionMetadata"></a> <a href="#_component_option_provideTransactionMetadata" class="anchor"></a><strong>provideTransactionMetadata</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>Enables transaction metadata extraction together with event counting.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">false</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">boolean</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_queryFetchSize"></a> <a href="#_component_option_queryFetchSize" class="anchor"></a><strong>queryFetchSize</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>The maximum number of records that should be loaded into memory while streaming. A value of '0' uses the default JDBC fetch size, defaults to '2000'.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">10000</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">int</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_racNodes"></a> <a href="#_component_option_racNodes" class="anchor"></a><strong>racNodes</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>A comma-separated list of RAC node hostnames or ip addresses.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_retriableRestartConnectorWaitMs"></a> <a href="#_component_option_retriableRestartConnectorWaitMs" class="anchor"></a><strong>retriableRestartConnectorWaitMs</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>Time to wait before restarting connector after retriable exception occurs. Defaults to 10000ms.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">10s</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">long</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_schemaHistoryInternal"></a> <a href="#_component_option_schemaHistoryInternal" class="anchor"></a><strong>schemaHistoryInternal</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>The name of the SchemaHistory class that should be used to store and recover database schema changes. The configuration properties for the history are prefixed with the 'schema.history.internal.' string.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">io.debezium.storage.kafka.history.KafkaSchemaHistory</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_schemaHistoryInternalFileFilename"></a> <a href="#_component_option_schemaHistoryInternalFileFilename" class="anchor"></a><strong>schemaHistoryInternalFileFilename</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>The path to the file that will be used to record the database schema history.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_schemaHistoryInternalSkipUnparseableDdl"></a> <a href="#_component_option_schemaHistoryInternalSkipUnparseableDdl" class="anchor"></a><strong>schemaHistoryInternalSkipUnparseableDdl</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>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. If skipping is enabled then Debezium can miss metadata changes.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">false</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">boolean</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_schemaHistoryInternalStoreOnlyCapturedDatabasesDdl"></a> <a href="#_component_option_schemaHistoryInternalStoreOnlyCapturedDatabasesDdl" class="anchor"></a><strong>schemaHistoryInternalStoreOnlyCapturedDatabasesDdl</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>Controls what DDL will Debezium store in database schema history. By default (false) Debezium will store all incoming DDL statements. If set to true, then only DDL that manipulates a table from captured schema/database will be stored.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">false</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">boolean</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_schemaHistoryInternalStoreOnlyCapturedTablesDdl"></a> <a href="#_component_option_schemaHistoryInternalStoreOnlyCapturedTablesDdl" class="anchor"></a><strong>schemaHistoryInternalStoreOnlyCapturedTablesDdl</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>Controls what DDL will Debezium store in database schema history. By default (false) Debezium will store all incoming DDL statements. If set to true, then only DDL that manipulates a captured table will be stored.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">false</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">boolean</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_schemaNameAdjustmentMode"></a> <a href="#_component_option_schemaNameAdjustmentMode" class="anchor"></a><strong>schemaNameAdjustmentMode</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>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. Note: _ is an escape sequence like backslash in Java;'none' does not apply any adjustment (default).</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">none</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_signalDataCollection"></a> <a href="#_component_option_signalDataCollection" class="anchor"></a><strong>signalDataCollection</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>The name of the data collection that is used to send signals/commands to Debezium. Signaling is disabled when not set.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_signalEnabledChannels"></a> <a href="#_component_option_signalEnabledChannels" class="anchor"></a><strong>signalEnabledChannels</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>List of channels names that are enabled. Source channel is enabled by default.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">source</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_signalPollIntervalMs"></a> <a href="#_component_option_signalPollIntervalMs" class="anchor"></a><strong>signalPollIntervalMs</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>Interval for looking for new signals in registered channels, given in milliseconds. Defaults to 5 seconds.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">5s</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">long</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_skippedOperations"></a> <a href="#_component_option_skippedOperations" class="anchor"></a><strong>skippedOperations</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>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. By default, only truncate operations will be skipped.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">t</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_snapshotDatabaseErrorsMaxRetries"></a> <a href="#_component_option_snapshotDatabaseErrorsMaxRetries" class="anchor"></a><strong>snapshotDatabaseErrorsMaxRetries</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>The number of attempts to retry database errors during snapshots before failing.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">0</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">int</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_snapshotDelayMs"></a> <a href="#_component_option_snapshotDelayMs" class="anchor"></a><strong>snapshotDelayMs</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>A delay period before a snapshot will begin, given in milliseconds. Defaults to 0 ms.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">0ms</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">long</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_snapshotFetchSize"></a> <a href="#_component_option_snapshotFetchSize" class="anchor"></a><strong>snapshotFetchSize</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>The maximum number of records that should be loaded into memory while performing a snapshot.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">int</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_snapshotIncludeCollectionList"></a> <a href="#_component_option_snapshotIncludeCollectionList" class="anchor"></a><strong>snapshotIncludeCollectionList</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>This setting must be set to specify a list of tables/collections whose snapshot must be taken on creating or restarting the connector.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_snapshotLockingMode"></a> <a href="#_component_option_snapshotLockingMode" class="anchor"></a><strong>snapshotLockingMode</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>Controls how the connector holds locks on tables while performing the schema snapshot. The default is 'shared', which means the connector will hold a table lock that prevents exclusive table access for just the initial portion of the snapshot while the database schemas and other metadata are being read. The remaining work in a snapshot involves selecting all rows from each table, and this is done using a flashback query that requires no locks. However, in some cases it may be desirable to avoid locks entirely which can be done by specifying 'none'. This mode is only safe to use if no schema changes are happening while the snapshot is taken.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">shared</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_snapshotLockTimeoutMs"></a> <a href="#_component_option_snapshotLockTimeoutMs" class="anchor"></a><strong>snapshotLockTimeoutMs</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>The maximum number of millis to wait for table locks at the beginning of a snapshot. If locks cannot be acquired in this time frame, the snapshot will be aborted. Defaults to 10 seconds.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">10s</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">long</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_snapshotMaxThreads"></a> <a href="#_component_option_snapshotMaxThreads" class="anchor"></a><strong>snapshotMaxThreads</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>The maximum number of threads used to perform the snapshot. Defaults to 1.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">1</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">int</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_snapshotMode"></a> <a href="#_component_option_snapshotMode" class="anchor"></a><strong>snapshotMode</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>The criteria for running a snapshot upon startup of the connector. Select one of the following snapshot options: 'always': The connector runs a snapshot every time that it starts. After the snapshot completes, the connector begins to stream changes from the redo logs.; 'initial' (default): If the connector does not detect any offsets for the logical server name, it runs a snapshot that captures the current full state of the configured tables. After the snapshot completes, the connector begins to stream changes from the redo logs. 'initial_only': The connector performs a snapshot as it does for the 'initial' option, but after the connector completes the snapshot, it stops, and does not stream changes from the redo logs.; 'schema_only': If the connector does not detect any offsets for the logical server name, it runs a snapshot that captures only the schema (table structures), but not any table data. After the snapshot completes, the connector begins to stream changes from the redo logs.; 'schema_only_recovery': The connector performs a snapshot that captures only the database schema history. The connector then transitions to streaming from the redo logs. Use this setting to restore a corrupted or lost database schema history topic. Do not use if the database schema was modified after the connector stopped.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">initial</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_snapshotModeConfigurationBasedSnapshotData"></a> <a href="#_component_option_snapshotModeConfigurationBasedSnapshotData" class="anchor"></a><strong>snapshotModeConfigurationBasedSnapshotData</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>When 'snapshot.mode' is set as configuration_based, this setting permits to specify whenever the data should be snapshotted or not.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">false</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">boolean</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_snapshotModeConfigurationBasedSnapshotOnDataError"></a> <a href="#_component_option_snapshotModeConfigurationBasedSnapshotOnDataError" class="anchor"></a><strong>snapshotModeConfigurationBasedSnapshotOnDataError</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>When 'snapshot.mode' is set as configuration_based, this setting permits to specify whenever the data should be snapshotted or not in case of error.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">false</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">boolean</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_snapshotModeConfigurationBasedSnapshotOnSchemaError"></a> <a href="#_component_option_snapshotModeConfigurationBasedSnapshotOnSchemaError" class="anchor"></a><strong>snapshotModeConfigurationBasedSnapshotOnSchemaError</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>When 'snapshot.mode' is set as configuration_based, this setting permits to specify whenever the schema should be snapshotted or not in case of error.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">false</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">boolean</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_snapshotModeConfigurationBasedSnapshotSchema"></a> <a href="#_component_option_snapshotModeConfigurationBasedSnapshotSchema" class="anchor"></a><strong>snapshotModeConfigurationBasedSnapshotSchema</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>When 'snapshot.mode' is set as configuration_based, this setting permits to specify whenever the schema should be snapshotted or not.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">false</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">boolean</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_snapshotModeConfigurationBasedStartStream"></a> <a href="#_component_option_snapshotModeConfigurationBasedStartStream" class="anchor"></a><strong>snapshotModeConfigurationBasedStartStream</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>When 'snapshot.mode' is set as configuration_based, this setting permits to specify whenever the stream should start or not after snapshot.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">false</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">boolean</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_snapshotModeCustomName"></a> <a href="#_component_option_snapshotModeCustomName" class="anchor"></a><strong>snapshotModeCustomName</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>When 'snapshot.mode' is set as custom, this setting must be set to specify a the name of the custom implementation provided in the 'name()' method. The implementations must implement the 'Snapshotter' interface and is called on each app boot to determine whether to do a snapshot.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_snapshotSelectStatementOverrides"></a> <a href="#_component_option_snapshotSelectStatementOverrides" class="anchor"></a><strong>snapshotSelectStatementOverrides</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>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. Select statements for the individual tables are specified in further configuration properties, one for each table, identified by the id 'snapshot.select.statement.overrides.DB_NAME.TABLE_NAME' or 'snapshot.select.statement.overrides.SCHEMA_NAME.TABLE_NAME', respectively. The value of those properties is the select statement to use when retrieving data from the specific table during snapshotting. A possible use case for large append-only tables is setting a specific point where to start (resume) snapshotting, in case a previous snapshotting was interrupted.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_snapshotTablesOrderByRowCount"></a> <a href="#_component_option_snapshotTablesOrderByRowCount" class="anchor"></a><strong>snapshotTablesOrderByRowCount</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>Controls the order in which tables are processed in the initial snapshot. A descending value will order the tables by row count descending. A ascending value will order the tables by row count ascending. A value of disabled (the default) will disable ordering by row count.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">disabled</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_sourceinfoStructMaker"></a> <a href="#_component_option_sourceinfoStructMaker" class="anchor"></a><strong>sourceinfoStructMaker</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>The name of the SourceInfoStructMaker class that returns SourceInfo schema and struct.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">io.debezium.connector.oracle.OracleSourceInfoStructMaker</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_streamingDelayMs"></a> <a href="#_component_option_streamingDelayMs" class="anchor"></a><strong>streamingDelayMs</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>A delay period after the snapshot is completed and the streaming begins, given in milliseconds. Defaults to 0 ms.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">0ms</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">long</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_tableExcludeList"></a> <a href="#_component_option_tableExcludeList" class="anchor"></a><strong>tableExcludeList</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>A comma-separated list of regular expressions that match the fully-qualified names of tables to be excluded from monitoring.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_tableIncludeList"></a> <a href="#_component_option_tableIncludeList" class="anchor"></a><strong>tableIncludeList</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>The tables for which changes are to be captured.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_timePrecisionMode"></a> <a href="#_component_option_timePrecisionMode" class="anchor"></a><strong>timePrecisionMode</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>Time, date, and timestamps can be represented with different kinds of precisions, including: 'adaptive' (the default) bases the precision of time, date, and timestamp values on the database column’s precision; 'adaptive_time_microseconds' like 'adaptive' mode, 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.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">adaptive</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_tombstonesOnDelete"></a> <a href="#_component_option_tombstonesOnDelete" class="anchor"></a><strong>tombstonesOnDelete</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>Whether delete operations should be represented by a delete event and a subsequent tombstone 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.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">false</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">boolean</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_topicNamingStrategy"></a> <a href="#_component_option_topicNamingStrategy" class="anchor"></a><strong>topicNamingStrategy</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>The name of the TopicNamingStrategy class that should be used to determine the topic name for data change, schema change, transaction, heartbeat event etc.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">io.debezium.schema.SchemaTopicNamingStrategy</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_topicPrefix"></a> <a href="#_component_option_topicPrefix" class="anchor"></a><strong>topicPrefix</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p><strong>Required</strong> Topic prefix that identifies and provides a namespace for the particular database server/cluster is capturing changes. The topic prefix should be unique across all other connectors, since it is used as a prefix for all Kafka topic names that receive events emitted by this connector. Only alphanumeric characters, hyphens, dots and underscores must be accepted.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_transactionMetadataFactory"></a> <a href="#_component_option_transactionMetadataFactory" class="anchor"></a><strong>transactionMetadataFactory</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>Class to make transaction context & transaction struct/schemas.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">io.debezium.pipeline.txmetadata.DefaultTransactionMetadataFactory</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_component_option_unavailableValuePlaceholder"></a> <a href="#_component_option_unavailableValuePlaceholder" class="anchor"></a><strong>unavailableValuePlaceholder</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>Specify the constant that will be provided by Debezium to indicate that the original value is unavailable and not provided by the database.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">__debezium_unavailable_value</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> </tbody> </table></div> </div> </div> <div class="sect1"> <h2 id="_endpoint_options"><a class="anchor" href="#_endpoint_options"></a>Endpoint Options</h2> <div class="sectionbody"> <div class="paragraph"> <p>The Debezium Oracle Connector endpoint is configured using URI syntax:</p> </div> <div class="listingblock"> <div class="content"> <pre>debezium-oracle:name</pre> </div> </div> <div class="paragraph"> <p>With the following <em>path</em> and <em>query</em> parameters:</p> </div> <div class="sect2"> <h3 id="_path_parameters_1_parameters"><a class="anchor" href="#_path_parameters_1_parameters"></a>Path Parameters (1 parameters)</h3> <div class="table-wrapper"><table class="tableblock frame-all grid-all stretch"> <colgroup> <col> <col> <col> <col> </colgroup> <thead> <tr> <th class="tableblock halign-left valign-top">Name</th> <th class="tableblock halign-left valign-top">Description</th> <th class="tableblock halign-center valign-top">Default</th> <th class="tableblock halign-left valign-top">Type</th> </tr> </thead> <tbody> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_path_option_name"></a> <a href="#_endpoint_path_option_name" class="anchor"></a><strong>name</strong> (consumer)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p><strong>Required</strong> Unique name for the connector. Attempting to register again with the same name will fail.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> </tbody> </table></div> </div> <div class="sect2"> <h3 id="_query_parameters"><a class="anchor" href="#_query_parameters"></a>Query Parameters (129 parameters)</h3> <div class="table-wrapper"><table class="tableblock frame-all grid-all stretch"> <colgroup> <col> <col> <col> <col> </colgroup> <thead> <tr> <th class="tableblock halign-left valign-top">Name</th> <th class="tableblock halign-left valign-top">Description</th> <th class="tableblock halign-center valign-top">Default</th> <th class="tableblock halign-left valign-top">Type</th> </tr> </thead> <tbody> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_additionalProperties"></a> <a href="#_endpoint_query_option_additionalProperties" class="anchor"></a><strong>additionalProperties</strong> (common)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>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. This is a multi-value option with prefix: additionalProperties.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Map</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_internalKeyConverter"></a> <a href="#_endpoint_query_option_internalKeyConverter" class="anchor"></a><strong>internalKeyConverter</strong> (consumer)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>The Converter class that should be used to serialize and deserialize key data for offsets. The default is JSON converter.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">org.apache.kafka.connect.json.JsonConverter</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_internalValueConverter"></a> <a href="#_endpoint_query_option_internalValueConverter" class="anchor"></a><strong>internalValueConverter</strong> (consumer)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>The Converter class that should be used to serialize and deserialize value data for offsets. The default is JSON converter.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">org.apache.kafka.connect.json.JsonConverter</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_offsetCommitPolicy"></a> <a href="#_endpoint_query_option_offsetCommitPolicy" class="anchor"></a><strong>offsetCommitPolicy</strong> (consumer)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>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.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_offsetCommitTimeoutMs"></a> <a href="#_endpoint_query_option_offsetCommitTimeoutMs" class="anchor"></a><strong>offsetCommitTimeoutMs</strong> (consumer)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>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.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">5000</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">long</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_offsetFlushIntervalMs"></a> <a href="#_endpoint_query_option_offsetFlushIntervalMs" class="anchor"></a><strong>offsetFlushIntervalMs</strong> (consumer)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>Interval at which to try committing offsets. The default is 1 minute.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">60000</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">long</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_offsetStorage"></a> <a href="#_endpoint_query_option_offsetStorage" class="anchor"></a><strong>offsetStorage</strong> (consumer)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>The name of the Java class that is responsible for persistence of connector offsets.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">org.apache.kafka.connect.storage.FileOffsetBackingStore</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_offsetStorageFileName"></a> <a href="#_endpoint_query_option_offsetStorageFileName" class="anchor"></a><strong>offsetStorageFileName</strong> (consumer)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>Path to file where offsets are to be stored. Required when offset.storage is set to the FileOffsetBackingStore.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_offsetStoragePartitions"></a> <a href="#_endpoint_query_option_offsetStoragePartitions" class="anchor"></a><strong>offsetStoragePartitions</strong> (consumer)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>The number of partitions used when creating the offset storage topic. Required when offset.storage is set to the 'KafkaOffsetBackingStore'.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">int</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_offsetStorageReplicationFactor"></a> <a href="#_endpoint_query_option_offsetStorageReplicationFactor" class="anchor"></a><strong>offsetStorageReplicationFactor</strong> (consumer)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>Replication factor used when creating the offset storage topic. Required when offset.storage is set to the KafkaOffsetBackingStore.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">int</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_offsetStorageTopic"></a> <a href="#_endpoint_query_option_offsetStorageTopic" class="anchor"></a><strong>offsetStorageTopic</strong> (consumer)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>The name of the Kafka topic where offsets are to be stored. Required when offset.storage is set to the KafkaOffsetBackingStore.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_bridgeErrorHandler"></a> <a href="#_endpoint_query_option_bridgeErrorHandler" class="anchor"></a><strong>bridgeErrorHandler</strong> (consumer (advanced))</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>Allows for bridging the consumer to the Camel routing Error Handler, which mean any exceptions (if possible) occurred while the Camel consumer is trying to pickup incoming messages, or the likes, will now be processed as a message and handled by the routing Error Handler. Important: This is only possible if the 3rd party component allows Camel to be alerted if an exception was thrown. Some components handle this internally only, and therefore bridgeErrorHandler is not possible. In other situations we may improve the Camel component to hook into the 3rd party component and make this possible for future releases. 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.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">false</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">boolean</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_exceptionHandler"></a> <a href="#_endpoint_query_option_exceptionHandler" class="anchor"></a><strong>exceptionHandler</strong> (consumer (advanced))</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>To let the consumer use a custom ExceptionHandler. Notice if the option bridgeErrorHandler is enabled then this option is not in use. By default the consumer will deal with exceptions, that will be logged at WARN or ERROR level and ignored.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">ExceptionHandler</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_exchangePattern"></a> <a href="#_endpoint_query_option_exchangePattern" class="anchor"></a><strong>exchangePattern</strong> (consumer (advanced))</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>Sets the exchange pattern when the consumer creates an exchange.</p> </div> <div class="paragraph"> <p>Enum values:</p> </div> <div class="ulist"> <ul> <li> <p>InOnly</p> </li> <li> <p>InOut</p> </li> </ul> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">ExchangePattern</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_archiveDestinationName"></a> <a href="#_endpoint_query_option_archiveDestinationName" class="anchor"></a><strong>archiveDestinationName</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>Sets the specific archive log destination as the source for reading archive logs.When not set, the connector will automatically select the first LOCAL and VALID destination.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_archiveLogHours"></a> <a href="#_endpoint_query_option_archiveLogHours" class="anchor"></a><strong>archiveLogHours</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>The number of hours in the past from SYSDATE to mine archive logs. Using 0 mines all available archive logs.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">0</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">long</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_binaryHandlingMode"></a> <a href="#_endpoint_query_option_binaryHandlingMode" class="anchor"></a><strong>binaryHandlingMode</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>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.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">bytes</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_columnExcludeList"></a> <a href="#_endpoint_query_option_columnExcludeList" class="anchor"></a><strong>columnExcludeList</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>Regular expressions matching columns to exclude from change events.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_columnIncludeList"></a> <a href="#_endpoint_query_option_columnIncludeList" class="anchor"></a><strong>columnIncludeList</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>Regular expressions matching columns to include in change events.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_columnPropagateSourceType"></a> <a href="#_endpoint_query_option_columnPropagateSourceType" class="anchor"></a><strong>columnPropagateSourceType</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>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.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_converters"></a> <a href="#_endpoint_query_option_converters" class="anchor"></a><strong>converters</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>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 '.'.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_customMetricTags"></a> <a href="#_endpoint_query_option_customMetricTags" class="anchor"></a><strong>customMetricTags</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>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. For example: k1=v1,k2=v2.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_databaseConnectionAdapter"></a> <a href="#_endpoint_query_option_databaseConnectionAdapter" class="anchor"></a><strong>databaseConnectionAdapter</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>The adapter to use when capturing changes from the database. Options include: 'logminer': (the default) to capture changes using native Oracle LogMiner; 'xstream' to capture changes using Oracle XStreams.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">LogMiner</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_databaseDbname"></a> <a href="#_endpoint_query_option_databaseDbname" class="anchor"></a><strong>databaseDbname</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>The name of the database from which the connector should capture changes.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_databaseHostname"></a> <a href="#_endpoint_query_option_databaseHostname" class="anchor"></a><strong>databaseHostname</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>Resolvable hostname or IP address of the database server.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_databaseOutServerName"></a> <a href="#_endpoint_query_option_databaseOutServerName" class="anchor"></a><strong>databaseOutServerName</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>Name of the XStream Out server to connect to.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_databasePassword"></a> <a href="#_endpoint_query_option_databasePassword" class="anchor"></a><strong>databasePassword</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p><strong>Required</strong> Password of the database user to be used when connecting to the database.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_databasePdbName"></a> <a href="#_endpoint_query_option_databasePdbName" class="anchor"></a><strong>databasePdbName</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>Name of the pluggable database when working with a multi-tenant set-up. The CDB name must be given via database.dbname in this case.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_databasePort"></a> <a href="#_endpoint_query_option_databasePort" class="anchor"></a><strong>databasePort</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>Port of the database server.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">1528</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">int</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_databaseQueryTimeoutMs"></a> <a href="#_endpoint_query_option_databaseQueryTimeoutMs" class="anchor"></a><strong>databaseQueryTimeoutMs</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>Time to wait for a query to execute, given in milliseconds. Defaults to 600 seconds (600,000 ms); zero means there is no limit.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">10m</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">int</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_databaseUrl"></a> <a href="#_endpoint_query_option_databaseUrl" class="anchor"></a><strong>databaseUrl</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>Complete JDBC URL as an alternative to specifying hostname, port and database provided as a way to support alternative connection scenarios.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_databaseUser"></a> <a href="#_endpoint_query_option_databaseUser" class="anchor"></a><strong>databaseUser</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>Name of the database user to be used when connecting to the database.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_datatypePropagateSourceType"></a> <a href="#_endpoint_query_option_datatypePropagateSourceType" class="anchor"></a><strong>datatypePropagateSourceType</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>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.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_decimalHandlingMode"></a> <a href="#_endpoint_query_option_decimalHandlingMode" class="anchor"></a><strong>decimalHandlingMode</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>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.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">precise</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_errorsMaxRetries"></a> <a href="#_endpoint_query_option_errorsMaxRetries" class="anchor"></a><strong>errorsMaxRetries</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>The maximum number of retries on connection errors before failing (-1 = no limit, 0 = disabled, 0 = num of retries).</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">-1</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">int</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_eventProcessingFailureHandlingMode"></a> <a href="#_endpoint_query_option_eventProcessingFailureHandlingMode" class="anchor"></a><strong>eventProcessingFailureHandlingMode</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>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.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">fail</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_heartbeatActionQuery"></a> <a href="#_endpoint_query_option_heartbeatActionQuery" class="anchor"></a><strong>heartbeatActionQuery</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>The query executed with every heartbeat.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_heartbeatIntervalMs"></a> <a href="#_endpoint_query_option_heartbeatIntervalMs" class="anchor"></a><strong>heartbeatIntervalMs</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>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.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">0ms</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">int</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_heartbeatTopicsPrefix"></a> <a href="#_endpoint_query_option_heartbeatTopicsPrefix" class="anchor"></a><strong>heartbeatTopicsPrefix</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>The prefix that is used to name heartbeat topics.Defaults to __debezium-heartbeat.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">__debezium-heartbeat</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_includeSchemaChanges"></a> <a href="#_endpoint_query_option_includeSchemaChanges" class="anchor"></a><strong>includeSchemaChanges</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>Whether the connector should publish changes in the database schema to a Kafka topic with the same name as the database server ID. Each schema change will be recorded using a key that contains the database name and whose value include logical description of the new schema and optionally the DDL statement(s). The default is 'true'. This is independent of how the connector internally records database schema history.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">true</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">boolean</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_includeSchemaComments"></a> <a href="#_endpoint_query_option_includeSchemaComments" class="anchor"></a><strong>includeSchemaComments</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>Whether the connector parse table and column’s comment to metadata object. Note: Enable this option will bring the implications on memory usage. The number and size of ColumnImpl objects is what largely impacts how much memory is consumed by the Debezium connectors, and adding a String to each of them can potentially be quite heavy. The default is 'false'.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">false</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">boolean</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_incrementalSnapshotWatermarkingStrategy"></a> <a href="#_endpoint_query_option_incrementalSnapshotWatermarkingStrategy" class="anchor"></a><strong>incrementalSnapshotWatermarkingStrategy</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>Specify the strategy used for watermarking during an incremental snapshot: 'insert_insert' both open and close signal is written into signal data collection (default); 'insert_delete' only open signal is written on signal data collection, the close will delete the relative open signal;.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">INSERT_INSERT</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_intervalHandlingMode"></a> <a href="#_endpoint_query_option_intervalHandlingMode" class="anchor"></a><strong>intervalHandlingMode</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>Specify how INTERVAL columns should be represented in change events, including: 'string' represents values as an exact ISO formatted string; 'numeric' (default) represents values using the inexact conversion into microseconds.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">numeric</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_lobEnabled"></a> <a href="#_endpoint_query_option_lobEnabled" class="anchor"></a><strong>lobEnabled</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>When set to 'false', the default, LOB fields will not be captured nor emitted. When set to 'true', the connector will capture LOB fields and emit changes for those fields like any other column type.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">false</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">boolean</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_logMiningArchiveLogOnlyMode"></a> <a href="#_endpoint_query_option_logMiningArchiveLogOnlyMode" class="anchor"></a><strong>logMiningArchiveLogOnlyMode</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>When set to 'false', the default, the connector will mine both archive log and redo logs to emit change events. When set to 'true', the connector will only mine archive logs. There are circumstances where its advantageous to only mine archive logs and accept latency in event emission due to frequent revolving redo logs.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">false</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">boolean</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_logMiningArchiveLogOnlyScnPollIntervalMs"></a> <a href="#_endpoint_query_option_logMiningArchiveLogOnlyScnPollIntervalMs" class="anchor"></a><strong>logMiningArchiveLogOnlyScnPollIntervalMs</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>The interval in milliseconds to wait between polls checking to see if the SCN is in the archive logs.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">10s</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">long</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_logMiningBatchSizeDefault"></a> <a href="#_endpoint_query_option_logMiningBatchSizeDefault" class="anchor"></a><strong>logMiningBatchSizeDefault</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>The starting SCN interval size that the connector will use for reading data from redo/archive logs.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">20000</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">long</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_logMiningBatchSizeIncrement"></a> <a href="#_endpoint_query_option_logMiningBatchSizeIncrement" class="anchor"></a><strong>logMiningBatchSizeIncrement</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>Active batch size will be also increased/decreased by this amount for tuning connector throughput when needed.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">20000</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">long</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_logMiningBatchSizeMax"></a> <a href="#_endpoint_query_option_logMiningBatchSizeMax" class="anchor"></a><strong>logMiningBatchSizeMax</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>The maximum SCN interval size that this connector will use when reading from redo/archive logs.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">100000</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">long</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_logMiningBatchSizeMin"></a> <a href="#_endpoint_query_option_logMiningBatchSizeMin" class="anchor"></a><strong>logMiningBatchSizeMin</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>The minimum SCN interval size that this connector will try to read from redo/archive logs.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">1000</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">long</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_logMiningBufferDropOnStop"></a> <a href="#_endpoint_query_option_logMiningBufferDropOnStop" class="anchor"></a><strong>logMiningBufferDropOnStop</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>When set to true the underlying buffer cache is not retained when the connector is stopped. When set to false (the default), the buffer cache is retained across restarts.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">false</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">boolean</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_logMiningBufferEhcacheEventsConfig"></a> <a href="#_endpoint_query_option_logMiningBufferEhcacheEventsConfig" class="anchor"></a><strong>logMiningBufferEhcacheEventsConfig</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>Specifies the inner body the Ehcache tag for the events cache, but should not include the nor the attributes as these are managed by Debezium.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_logMiningBufferEhcacheGlobalConfig"></a> <a href="#_endpoint_query_option_logMiningBufferEhcacheGlobalConfig" class="anchor"></a><strong>logMiningBufferEhcacheGlobalConfig</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>Specifies any Ehcache global configurations such as services or persistence. This cannot include nor tags as these are managed by Debezium.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_logMiningBufferEhcacheProcessedtransactionsConfig"></a> <a href="#_endpoint_query_option_logMiningBufferEhcacheProcessedtransactionsConfig" class="anchor"></a><strong>logMiningBufferEhcacheProcessedtransactionsConfig</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>Specifies the inner body the Ehcache tag for the processed transaction cache, but should not include the nor the attributes as these are managed by Debezium.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_logMiningBufferEhcacheSchemachangesConfig"></a> <a href="#_endpoint_query_option_logMiningBufferEhcacheSchemachangesConfig" class="anchor"></a><strong>logMiningBufferEhcacheSchemachangesConfig</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>Specifies the inner body the Ehcache tag for the schema changes cache, but should not include the nor the attributes as these are managed by Debezium.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_logMiningBufferEhcacheTransactionsConfig"></a> <a href="#_endpoint_query_option_logMiningBufferEhcacheTransactionsConfig" class="anchor"></a><strong>logMiningBufferEhcacheTransactionsConfig</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>Specifies the inner body the Ehcache tag for the transaction cache, but should not include the nor the attributes as these are managed by Debezium.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_logMiningBufferInfinispanCacheEvents"></a> <a href="#_endpoint_query_option_logMiningBufferInfinispanCacheEvents" class="anchor"></a><strong>logMiningBufferInfinispanCacheEvents</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>Specifies the XML configuration for the Infinispan 'events' cache.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_logMiningBufferInfinispanCacheGlobal"></a> <a href="#_endpoint_query_option_logMiningBufferInfinispanCacheGlobal" class="anchor"></a><strong>logMiningBufferInfinispanCacheGlobal</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>Specifies the XML configuration for the Infinispan 'global' configuration.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_logMiningBufferInfinispanCacheProcessedTransactions"></a> <a href="#_endpoint_query_option_logMiningBufferInfinispanCacheProcessedTransactions" class="anchor"></a><strong>logMiningBufferInfinispanCacheProcessedTransactions</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>Specifies the XML configuration for the Infinispan 'processed-transactions' cache.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_logMiningBufferInfinispanCacheSchemaChanges"></a> <a href="#_endpoint_query_option_logMiningBufferInfinispanCacheSchemaChanges" class="anchor"></a><strong>logMiningBufferInfinispanCacheSchemaChanges</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>Specifies the XML configuration for the Infinispan 'schema-changes' cache.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_logMiningBufferInfinispanCacheTransactions"></a> <a href="#_endpoint_query_option_logMiningBufferInfinispanCacheTransactions" class="anchor"></a><strong>logMiningBufferInfinispanCacheTransactions</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>Specifies the XML configuration for the Infinispan 'transactions' cache.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_logMiningBufferTransactionEventsThreshold"></a> <a href="#_endpoint_query_option_logMiningBufferTransactionEventsThreshold" class="anchor"></a><strong>logMiningBufferTransactionEventsThreshold</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>The number of events a transaction can include before the transaction is discarded. This is useful for managing buffer memory and/or space when dealing with very large transactions. Defaults to 0, meaning that no threshold is applied and transactions can have unlimited events.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">0</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">long</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_logMiningBufferType"></a> <a href="#_endpoint_query_option_logMiningBufferType" class="anchor"></a><strong>logMiningBufferType</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>The buffer type controls how the connector manages buffering transaction data. memory - Uses the JVM process' heap to buffer all transaction data. infinispan_embedded - This option uses an embedded Infinispan cache to buffer transaction data and persist it to disk. infinispan_remote - This option uses a remote Infinispan cluster to buffer transaction data and persist it to disk. ehcache - Use ehcache in embedded mode to buffer transaction data and persist it to disk.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">memory</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_logMiningFlushTableName"></a> <a href="#_endpoint_query_option_logMiningFlushTableName" class="anchor"></a><strong>logMiningFlushTableName</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>The name of the flush table used by the connector, defaults to LOG_MINING_FLUSH.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">LOG_MINING_FLUSH</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_logMiningIncludeRedoSql"></a> <a href="#_endpoint_query_option_logMiningIncludeRedoSql" class="anchor"></a><strong>logMiningIncludeRedoSql</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>When enabled, the transaction log REDO SQL will be included in the source information block.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">false</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">boolean</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_logMiningQueryFilterMode"></a> <a href="#_endpoint_query_option_logMiningQueryFilterMode" class="anchor"></a><strong>logMiningQueryFilterMode</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>Specifies how the filter configuration is applied to the LogMiner database query. none - The query does not apply any schema or table filters, all filtering is at runtime by the connector. in - The query uses SQL in-clause expressions to specify the schema or table filters. regex - The query uses Oracle REGEXP_LIKE expressions to specify the schema or table filters.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">none</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_logMiningRestartConnection"></a> <a href="#_endpoint_query_option_logMiningRestartConnection" class="anchor"></a><strong>logMiningRestartConnection</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>Debezium opens a database connection and keeps that connection open throughout the entire streaming phase. In some situations, this can lead to excessive SGA memory usage. By setting this option to 'true' (the default is 'false'), the connector will close and re-open a database connection after every detected log switch or if the log.mining.session.max.ms has been reached.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">false</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">boolean</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_logMiningScnGapDetectionGapSizeMin"></a> <a href="#_endpoint_query_option_logMiningScnGapDetectionGapSizeMin" class="anchor"></a><strong>logMiningScnGapDetectionGapSizeMin</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>Used for SCN gap detection, if the difference between current SCN and previous end SCN is bigger than this value, and the time difference of current SCN and previous end SCN is smaller than log.mining.scn.gap.detection.time.interval.max.ms, consider it a SCN gap.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">1000000</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">long</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_logMiningScnGapDetectionTimeIntervalMaxMs"></a> <a href="#_endpoint_query_option_logMiningScnGapDetectionTimeIntervalMaxMs" class="anchor"></a><strong>logMiningScnGapDetectionTimeIntervalMaxMs</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>Used for SCN gap detection, if the difference between current SCN and previous end SCN is bigger than log.mining.scn.gap.detection.gap.size.min, and the time difference of current SCN and previous end SCN is smaller than this value, consider it a SCN gap.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">20s</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">long</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_logMiningSessionMaxMs"></a> <a href="#_endpoint_query_option_logMiningSessionMaxMs" class="anchor"></a><strong>logMiningSessionMaxMs</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>The maximum number of milliseconds that a LogMiner session lives for before being restarted. Defaults to 0 (indefinite until a log switch occurs).</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">0ms</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">long</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_logMiningSleepTimeDefaultMs"></a> <a href="#_endpoint_query_option_logMiningSleepTimeDefaultMs" class="anchor"></a><strong>logMiningSleepTimeDefaultMs</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>The amount of time that the connector will sleep after reading data from redo/archive logs and before starting reading data again. Value is in milliseconds.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">1s</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">long</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_logMiningSleepTimeIncrementMs"></a> <a href="#_endpoint_query_option_logMiningSleepTimeIncrementMs" class="anchor"></a><strong>logMiningSleepTimeIncrementMs</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>The maximum amount of time that the connector will use to tune the optimal sleep time when reading data from LogMiner. Value is in milliseconds.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">200ms</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">long</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_logMiningSleepTimeMaxMs"></a> <a href="#_endpoint_query_option_logMiningSleepTimeMaxMs" class="anchor"></a><strong>logMiningSleepTimeMaxMs</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>The maximum amount of time that the connector will sleep after reading data from redo/archive logs and before starting reading data again. Value is in milliseconds.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">3s</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">long</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_logMiningSleepTimeMinMs"></a> <a href="#_endpoint_query_option_logMiningSleepTimeMinMs" class="anchor"></a><strong>logMiningSleepTimeMinMs</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>The minimum amount of time that the connector will sleep after reading data from redo/archive logs and before starting reading data again. Value is in milliseconds.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">0ms</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">long</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_logMiningStrategy"></a> <a href="#_endpoint_query_option_logMiningStrategy" class="anchor"></a><strong>logMiningStrategy</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>There are strategies: Online catalog with faster mining but no captured DDL. Another - with data dictionary loaded into REDO LOG files.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">online_catalog</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_logMiningTransactionRetentionMs"></a> <a href="#_endpoint_query_option_logMiningTransactionRetentionMs" class="anchor"></a><strong>logMiningTransactionRetentionMs</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>Duration in milliseconds to keep long running transactions in transaction buffer between log mining sessions. By default, all transactions are retained.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">0ms</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">long</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_logMiningUsernameExcludeList"></a> <a href="#_endpoint_query_option_logMiningUsernameExcludeList" class="anchor"></a><strong>logMiningUsernameExcludeList</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>Comma separated list of usernames to exclude from LogMiner query.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_logMiningUsernameIncludeList"></a> <a href="#_endpoint_query_option_logMiningUsernameIncludeList" class="anchor"></a><strong>logMiningUsernameIncludeList</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>Comma separated list of usernames to include from LogMiner query.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_maxBatchSize"></a> <a href="#_endpoint_query_option_maxBatchSize" class="anchor"></a><strong>maxBatchSize</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>Maximum size of each batch of source records. Defaults to 2048.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">2048</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">int</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_maxQueueSize"></a> <a href="#_endpoint_query_option_maxQueueSize" class="anchor"></a><strong>maxQueueSize</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>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.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">8192</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">int</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_maxQueueSizeInBytes"></a> <a href="#_endpoint_query_option_maxQueueSizeInBytes" class="anchor"></a><strong>maxQueueSizeInBytes</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>Maximum size of the queue in bytes for change events read from the database log but not yet recorded or forwarded. Defaults to 0. Mean the feature is not enabled.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">0</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">long</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_messageKeyColumns"></a> <a href="#_endpoint_query_option_messageKeyColumns" class="anchor"></a><strong>messageKeyColumns</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>A semicolon-separated list of expressions that match fully-qualified tables and column(s) to be used as message key. Each expression must match the pattern ':', where the table names could be defined as (DB_NAME.TABLE_NAME) or (SCHEMA_NAME.TABLE_NAME), depending on the specific connector, and the key columns are a comma-separated list of columns representing the custom key. For any table without an explicit key configuration the table’s primary key column(s) will be used as message key. Example: dbserver1.inventory.orderlines:orderId,orderLineId;dbserver1.inventory.orders:id.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_notificationEnabledChannels"></a> <a href="#_endpoint_query_option_notificationEnabledChannels" class="anchor"></a><strong>notificationEnabledChannels</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>List of notification channels names that are enabled.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_notificationSinkTopicName"></a> <a href="#_endpoint_query_option_notificationSinkTopicName" class="anchor"></a><strong>notificationSinkTopicName</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>The name of the topic for the notifications. This is required in case 'sink' is in the list of enabled channels.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_openlogreplicatorHost"></a> <a href="#_endpoint_query_option_openlogreplicatorHost" class="anchor"></a><strong>openlogreplicatorHost</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>The hostname of the OpenLogReplicator network service.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_openlogreplicatorPort"></a> <a href="#_endpoint_query_option_openlogreplicatorPort" class="anchor"></a><strong>openlogreplicatorPort</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>The port of the OpenLogReplicator network service.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">int</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_openlogreplicatorSource"></a> <a href="#_endpoint_query_option_openlogreplicatorSource" class="anchor"></a><strong>openlogreplicatorSource</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>The configured logical source name in the OpenLogReplicator configuration that is to stream changes.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_pollIntervalMs"></a> <a href="#_endpoint_query_option_pollIntervalMs" class="anchor"></a><strong>pollIntervalMs</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>Time to wait for new change events to appear after receiving no events, given in milliseconds. Defaults to 500 ms.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">500ms</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">long</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_postProcessors"></a> <a href="#_endpoint_query_option_postProcessors" class="anchor"></a><strong>postProcessors</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>Optional list of post processors. The processors are defined using '.type' config option and configured using options ''.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_provideTransactionMetadata"></a> <a href="#_endpoint_query_option_provideTransactionMetadata" class="anchor"></a><strong>provideTransactionMetadata</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>Enables transaction metadata extraction together with event counting.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">false</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">boolean</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_queryFetchSize"></a> <a href="#_endpoint_query_option_queryFetchSize" class="anchor"></a><strong>queryFetchSize</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>The maximum number of records that should be loaded into memory while streaming. A value of '0' uses the default JDBC fetch size, defaults to '2000'.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">10000</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">int</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_racNodes"></a> <a href="#_endpoint_query_option_racNodes" class="anchor"></a><strong>racNodes</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>A comma-separated list of RAC node hostnames or ip addresses.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_retriableRestartConnectorWaitMs"></a> <a href="#_endpoint_query_option_retriableRestartConnectorWaitMs" class="anchor"></a><strong>retriableRestartConnectorWaitMs</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>Time to wait before restarting connector after retriable exception occurs. Defaults to 10000ms.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">10s</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">long</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_schemaHistoryInternal"></a> <a href="#_endpoint_query_option_schemaHistoryInternal" class="anchor"></a><strong>schemaHistoryInternal</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>The name of the SchemaHistory class that should be used to store and recover database schema changes. The configuration properties for the history are prefixed with the 'schema.history.internal.' string.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">io.debezium.storage.kafka.history.KafkaSchemaHistory</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_schemaHistoryInternalFileFilename"></a> <a href="#_endpoint_query_option_schemaHistoryInternalFileFilename" class="anchor"></a><strong>schemaHistoryInternalFileFilename</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>The path to the file that will be used to record the database schema history.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_schemaHistoryInternalSkipUnparseableDdl"></a> <a href="#_endpoint_query_option_schemaHistoryInternalSkipUnparseableDdl" class="anchor"></a><strong>schemaHistoryInternalSkipUnparseableDdl</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>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. If skipping is enabled then Debezium can miss metadata changes.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">false</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">boolean</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_schemaHistoryInternalStoreOnlyCapturedDatabasesDdl"></a> <a href="#_endpoint_query_option_schemaHistoryInternalStoreOnlyCapturedDatabasesDdl" class="anchor"></a><strong>schemaHistoryInternalStoreOnlyCapturedDatabasesDdl</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>Controls what DDL will Debezium store in database schema history. By default (false) Debezium will store all incoming DDL statements. If set to true, then only DDL that manipulates a table from captured schema/database will be stored.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">false</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">boolean</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_schemaHistoryInternalStoreOnlyCapturedTablesDdl"></a> <a href="#_endpoint_query_option_schemaHistoryInternalStoreOnlyCapturedTablesDdl" class="anchor"></a><strong>schemaHistoryInternalStoreOnlyCapturedTablesDdl</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>Controls what DDL will Debezium store in database schema history. By default (false) Debezium will store all incoming DDL statements. If set to true, then only DDL that manipulates a captured table will be stored.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">false</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">boolean</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_schemaNameAdjustmentMode"></a> <a href="#_endpoint_query_option_schemaNameAdjustmentMode" class="anchor"></a><strong>schemaNameAdjustmentMode</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>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. Note: _ is an escape sequence like backslash in Java;'none' does not apply any adjustment (default).</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">none</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_signalDataCollection"></a> <a href="#_endpoint_query_option_signalDataCollection" class="anchor"></a><strong>signalDataCollection</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>The name of the data collection that is used to send signals/commands to Debezium. Signaling is disabled when not set.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_signalEnabledChannels"></a> <a href="#_endpoint_query_option_signalEnabledChannels" class="anchor"></a><strong>signalEnabledChannels</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>List of channels names that are enabled. Source channel is enabled by default.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">source</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_signalPollIntervalMs"></a> <a href="#_endpoint_query_option_signalPollIntervalMs" class="anchor"></a><strong>signalPollIntervalMs</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>Interval for looking for new signals in registered channels, given in milliseconds. Defaults to 5 seconds.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">5s</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">long</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_skippedOperations"></a> <a href="#_endpoint_query_option_skippedOperations" class="anchor"></a><strong>skippedOperations</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>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. By default, only truncate operations will be skipped.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">t</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_snapshotDatabaseErrorsMaxRetries"></a> <a href="#_endpoint_query_option_snapshotDatabaseErrorsMaxRetries" class="anchor"></a><strong>snapshotDatabaseErrorsMaxRetries</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>The number of attempts to retry database errors during snapshots before failing.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">0</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">int</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_snapshotDelayMs"></a> <a href="#_endpoint_query_option_snapshotDelayMs" class="anchor"></a><strong>snapshotDelayMs</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>A delay period before a snapshot will begin, given in milliseconds. Defaults to 0 ms.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">0ms</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">long</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_snapshotFetchSize"></a> <a href="#_endpoint_query_option_snapshotFetchSize" class="anchor"></a><strong>snapshotFetchSize</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>The maximum number of records that should be loaded into memory while performing a snapshot.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">int</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_snapshotIncludeCollectionList"></a> <a href="#_endpoint_query_option_snapshotIncludeCollectionList" class="anchor"></a><strong>snapshotIncludeCollectionList</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>This setting must be set to specify a list of tables/collections whose snapshot must be taken on creating or restarting the connector.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_snapshotLockingMode"></a> <a href="#_endpoint_query_option_snapshotLockingMode" class="anchor"></a><strong>snapshotLockingMode</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>Controls how the connector holds locks on tables while performing the schema snapshot. The default is 'shared', which means the connector will hold a table lock that prevents exclusive table access for just the initial portion of the snapshot while the database schemas and other metadata are being read. The remaining work in a snapshot involves selecting all rows from each table, and this is done using a flashback query that requires no locks. However, in some cases it may be desirable to avoid locks entirely which can be done by specifying 'none'. This mode is only safe to use if no schema changes are happening while the snapshot is taken.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">shared</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_snapshotLockTimeoutMs"></a> <a href="#_endpoint_query_option_snapshotLockTimeoutMs" class="anchor"></a><strong>snapshotLockTimeoutMs</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>The maximum number of millis to wait for table locks at the beginning of a snapshot. If locks cannot be acquired in this time frame, the snapshot will be aborted. Defaults to 10 seconds.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">10s</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">long</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_snapshotMaxThreads"></a> <a href="#_endpoint_query_option_snapshotMaxThreads" class="anchor"></a><strong>snapshotMaxThreads</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>The maximum number of threads used to perform the snapshot. Defaults to 1.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">1</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">int</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_snapshotMode"></a> <a href="#_endpoint_query_option_snapshotMode" class="anchor"></a><strong>snapshotMode</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>The criteria for running a snapshot upon startup of the connector. Select one of the following snapshot options: 'always': The connector runs a snapshot every time that it starts. After the snapshot completes, the connector begins to stream changes from the redo logs.; 'initial' (default): If the connector does not detect any offsets for the logical server name, it runs a snapshot that captures the current full state of the configured tables. After the snapshot completes, the connector begins to stream changes from the redo logs. 'initial_only': The connector performs a snapshot as it does for the 'initial' option, but after the connector completes the snapshot, it stops, and does not stream changes from the redo logs.; 'schema_only': If the connector does not detect any offsets for the logical server name, it runs a snapshot that captures only the schema (table structures), but not any table data. After the snapshot completes, the connector begins to stream changes from the redo logs.; 'schema_only_recovery': The connector performs a snapshot that captures only the database schema history. The connector then transitions to streaming from the redo logs. Use this setting to restore a corrupted or lost database schema history topic. Do not use if the database schema was modified after the connector stopped.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">initial</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_snapshotModeConfigurationBasedSnapshotData"></a> <a href="#_endpoint_query_option_snapshotModeConfigurationBasedSnapshotData" class="anchor"></a><strong>snapshotModeConfigurationBasedSnapshotData</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>When 'snapshot.mode' is set as configuration_based, this setting permits to specify whenever the data should be snapshotted or not.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">false</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">boolean</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_snapshotModeConfigurationBasedSnapshotOnDataError"></a> <a href="#_endpoint_query_option_snapshotModeConfigurationBasedSnapshotOnDataError" class="anchor"></a><strong>snapshotModeConfigurationBasedSnapshotOnDataError</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>When 'snapshot.mode' is set as configuration_based, this setting permits to specify whenever the data should be snapshotted or not in case of error.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">false</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">boolean</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_snapshotModeConfigurationBasedSnapshotOnSchemaError"></a> <a href="#_endpoint_query_option_snapshotModeConfigurationBasedSnapshotOnSchemaError" class="anchor"></a><strong>snapshotModeConfigurationBasedSnapshotOnSchemaError</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>When 'snapshot.mode' is set as configuration_based, this setting permits to specify whenever the schema should be snapshotted or not in case of error.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">false</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">boolean</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_snapshotModeConfigurationBasedSnapshotSchema"></a> <a href="#_endpoint_query_option_snapshotModeConfigurationBasedSnapshotSchema" class="anchor"></a><strong>snapshotModeConfigurationBasedSnapshotSchema</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>When 'snapshot.mode' is set as configuration_based, this setting permits to specify whenever the schema should be snapshotted or not.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">false</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">boolean</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_snapshotModeConfigurationBasedStartStream"></a> <a href="#_endpoint_query_option_snapshotModeConfigurationBasedStartStream" class="anchor"></a><strong>snapshotModeConfigurationBasedStartStream</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>When 'snapshot.mode' is set as configuration_based, this setting permits to specify whenever the stream should start or not after snapshot.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">false</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">boolean</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_snapshotModeCustomName"></a> <a href="#_endpoint_query_option_snapshotModeCustomName" class="anchor"></a><strong>snapshotModeCustomName</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>When 'snapshot.mode' is set as custom, this setting must be set to specify a the name of the custom implementation provided in the 'name()' method. The implementations must implement the 'Snapshotter' interface and is called on each app boot to determine whether to do a snapshot.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_snapshotSelectStatementOverrides"></a> <a href="#_endpoint_query_option_snapshotSelectStatementOverrides" class="anchor"></a><strong>snapshotSelectStatementOverrides</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>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. Select statements for the individual tables are specified in further configuration properties, one for each table, identified by the id 'snapshot.select.statement.overrides.DB_NAME.TABLE_NAME' or 'snapshot.select.statement.overrides.SCHEMA_NAME.TABLE_NAME', respectively. The value of those properties is the select statement to use when retrieving data from the specific table during snapshotting. A possible use case for large append-only tables is setting a specific point where to start (resume) snapshotting, in case a previous snapshotting was interrupted.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_snapshotTablesOrderByRowCount"></a> <a href="#_endpoint_query_option_snapshotTablesOrderByRowCount" class="anchor"></a><strong>snapshotTablesOrderByRowCount</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>Controls the order in which tables are processed in the initial snapshot. A descending value will order the tables by row count descending. A ascending value will order the tables by row count ascending. A value of disabled (the default) will disable ordering by row count.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">disabled</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_sourceinfoStructMaker"></a> <a href="#_endpoint_query_option_sourceinfoStructMaker" class="anchor"></a><strong>sourceinfoStructMaker</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>The name of the SourceInfoStructMaker class that returns SourceInfo schema and struct.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">io.debezium.connector.oracle.OracleSourceInfoStructMaker</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_streamingDelayMs"></a> <a href="#_endpoint_query_option_streamingDelayMs" class="anchor"></a><strong>streamingDelayMs</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>A delay period after the snapshot is completed and the streaming begins, given in milliseconds. Defaults to 0 ms.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">0ms</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">long</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_tableExcludeList"></a> <a href="#_endpoint_query_option_tableExcludeList" class="anchor"></a><strong>tableExcludeList</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>A comma-separated list of regular expressions that match the fully-qualified names of tables to be excluded from monitoring.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_tableIncludeList"></a> <a href="#_endpoint_query_option_tableIncludeList" class="anchor"></a><strong>tableIncludeList</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>The tables for which changes are to be captured.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_timePrecisionMode"></a> <a href="#_endpoint_query_option_timePrecisionMode" class="anchor"></a><strong>timePrecisionMode</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>Time, date, and timestamps can be represented with different kinds of precisions, including: 'adaptive' (the default) bases the precision of time, date, and timestamp values on the database column’s precision; 'adaptive_time_microseconds' like 'adaptive' mode, 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.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">adaptive</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_tombstonesOnDelete"></a> <a href="#_endpoint_query_option_tombstonesOnDelete" class="anchor"></a><strong>tombstonesOnDelete</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>Whether delete operations should be represented by a delete event and a subsequent tombstone 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.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">false</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">boolean</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_topicNamingStrategy"></a> <a href="#_endpoint_query_option_topicNamingStrategy" class="anchor"></a><strong>topicNamingStrategy</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>The name of the TopicNamingStrategy class that should be used to determine the topic name for data change, schema change, transaction, heartbeat event etc.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">io.debezium.schema.SchemaTopicNamingStrategy</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_topicPrefix"></a> <a href="#_endpoint_query_option_topicPrefix" class="anchor"></a><strong>topicPrefix</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p><strong>Required</strong> Topic prefix that identifies and provides a namespace for the particular database server/cluster is capturing changes. The topic prefix should be unique across all other connectors, since it is used as a prefix for all Kafka topic names that receive events emitted by this connector. Only alphanumeric characters, hyphens, dots and underscores must be accepted.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_transactionMetadataFactory"></a> <a href="#_endpoint_query_option_transactionMetadataFactory" class="anchor"></a><strong>transactionMetadataFactory</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>Class to make transaction context & transaction struct/schemas.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">io.debezium.pipeline.txmetadata.DefaultTransactionMetadataFactory</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_query_option_unavailableValuePlaceholder"></a> <a href="#_endpoint_query_option_unavailableValuePlaceholder" class="anchor"></a><strong>unavailableValuePlaceholder</strong> (oracle)</p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>Specify the constant that will be provided by Debezium to indicate that the original value is unavailable and not provided by the database.</p> </div></div></td> <td class="tableblock halign-center valign-top"><p class="tableblock">__debezium_unavailable_value</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> </tbody> </table></div> <div class="paragraph"> <p>For more information about configuration: <a href="https://debezium.io/documentation/reference/1.18/operations/embedded.html#engine-properties">https://debezium.io/documentation/reference/0.10/operations/embedded.html#engine-properties</a> <a href="https://debezium.io/documentation/reference/1.18/connectors/oracleql.html#connector-properties">https://debezium.io/documentation/reference/0.10/connectors/oracleql.html#connector-properties</a></p> </div> </div> </div> </div> <div class="sect1"> <h2 id="_message_headers"><a class="anchor" href="#_message_headers"></a>Message Headers</h2> <div class="sectionbody"> <div class="paragraph"> <p>The Debezium Oracle Connector component supports 7 message header(s), which is/are listed below:</p> </div> <div class="table-wrapper"><table class="tableblock frame-all grid-all stretch"> <colgroup> <col> <col> <col> <col> </colgroup> <thead> <tr> <th class="tableblock halign-left valign-top">Name</th> <th class="tableblock halign-left valign-top">Description</th> <th class="tableblock halign-center valign-top">Default</th> <th class="tableblock halign-left valign-top">Type</th> </tr> </thead> <tbody> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_header_CamelDebeziumSourceMetadata"></a> <a href="#_endpoint_header_CamelDebeziumSourceMetadata" class="anchor"></a><strong>CamelDebeziumSourceMetadata</strong> (consumer)</p> <p class="tableblock">Constant: <a href="https://javadoc.io/doc/org.apache.camel/camel-debezium-oracle/latest/org/apache/camel/component/debezium/DebeziumConstants.html#HEADER_SOURCE_METADATA"><code>HEADER_SOURCE_METADATA</code></a></p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>The metadata about the source event, for example table name, database name, log position, etc, please refer to the Debezium documentation for more info.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Map</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_header_CamelDebeziumIdentifier"></a> <a href="#_endpoint_header_CamelDebeziumIdentifier" class="anchor"></a><strong>CamelDebeziumIdentifier</strong> (consumer)</p> <p class="tableblock">Constant: <a href="https://javadoc.io/doc/org.apache.camel/camel-debezium-oracle/latest/org/apache/camel/component/debezium/DebeziumConstants.html#HEADER_IDENTIFIER"><code>HEADER_IDENTIFIER</code></a></p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>The identifier of the connector, normally is this format {server-name}.{database-name}.{table-name}.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_header_CamelDebeziumKey"></a> <a href="#_endpoint_header_CamelDebeziumKey" class="anchor"></a><strong>CamelDebeziumKey</strong> (consumer)</p> <p class="tableblock">Constant: <a href="https://javadoc.io/doc/org.apache.camel/camel-debezium-oracle/latest/org/apache/camel/component/debezium/DebeziumConstants.html#HEADER_KEY"><code>HEADER_KEY</code></a></p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>The key of the event, normally is the table Primary Key.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Struct</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_header_CamelDebeziumOperation"></a> <a href="#_endpoint_header_CamelDebeziumOperation" class="anchor"></a><strong>CamelDebeziumOperation</strong> (consumer)</p> <p class="tableblock">Constant: <a href="https://javadoc.io/doc/org.apache.camel/camel-debezium-oracle/latest/org/apache/camel/component/debezium/DebeziumConstants.html#HEADER_OPERATION"><code>HEADER_OPERATION</code></a></p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>If presents, the type of event operation. Values for the connector are c for create (or insert), u for update, d for delete or r for read (in the case of a initial sync) or in case of a snapshot event.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_header_CamelDebeziumTimestamp"></a> <a href="#_endpoint_header_CamelDebeziumTimestamp" class="anchor"></a><strong>CamelDebeziumTimestamp</strong> (consumer)</p> <p class="tableblock">Constant: <a href="https://javadoc.io/doc/org.apache.camel/camel-debezium-oracle/latest/org/apache/camel/component/debezium/DebeziumConstants.html#HEADER_TIMESTAMP"><code>HEADER_TIMESTAMP</code></a></p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>If presents, the time (using the system clock in the JVM) at which the connector processed the event.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Long</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_header_CamelDebeziumBefore"></a> <a href="#_endpoint_header_CamelDebeziumBefore" class="anchor"></a><strong>CamelDebeziumBefore</strong> (consumer)</p> <p class="tableblock">Constant: <a href="https://javadoc.io/doc/org.apache.camel/camel-debezium-oracle/latest/org/apache/camel/component/debezium/DebeziumConstants.html#HEADER_BEFORE"><code>HEADER_BEFORE</code></a></p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>If presents, contains the state of the row before the event occurred.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Struct</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_endpoint_header_CamelDebeziumDdlSQL"></a> <a href="#_endpoint_header_CamelDebeziumDdlSQL" class="anchor"></a><strong>CamelDebeziumDdlSQL</strong> (consumer)</p> <p class="tableblock">Constant: <a href="https://javadoc.io/doc/org.apache.camel/camel-debezium-oracle/latest/org/apache/camel/component/debezium/DebeziumConstants.html#HEADER_DDL_SQL"><code>HEADER_DDL_SQL</code></a></p></td> <td class="tableblock halign-left valign-top"><div class="content"><div class="paragraph"> <p>If presents, the ddl sql text of the event.</p> </div></div></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> </tbody> </table></div> </div> </div> <div class="sect1"> <h2 id="_message_body"><a class="anchor" href="#_message_body"></a>Message body</h2> <div class="sectionbody"> <div class="paragraph"> <p>The message body if is not <code>null</code> (in case of tombstones), it contains the state of the row after the event occurred as <code>Struct</code> format or <code>Map</code> format if you use the included Type Converter from <code>Struct</code> to <code>Map</code>.</p> </div> <div class="admonitionblock note"> <div class="table-wrapper"><table> <tr> <td class="icon"> <i class="fa icon-note" title="Note"></i> </td> <td class="content"> <div class="paragraph"> <p>Check below for more details.</p> </div> </td> </tr> </table></div> </div> </div> </div> <div class="sect1"> <h2 id="_examples"><a class="anchor" href="#_examples"></a>Examples</h2> <div class="sectionbody"> <div class="sect2"> <h3 id="_consuming_events"><a class="anchor" href="#_consuming_events"></a>Consuming events</h3> <div class="paragraph"> <p>Here is a basic route that you can use to listen to Debezium events from oracle connector.</p> </div> <div class="listingblock"> <div class="content"> <pre class="highlightjs highlight"><code class="language-java hljs" data-lang="java">from("debezium-oracle:dbz-test-1?offsetStorageFileName=/usr/offset-file-1.dat&databaseHostname=localhost&databaseUser=debezium&databasePassword=dbz&databaseServerName=my-app-connector&databaseHistoryFileFilename=/usr/history-file-1.dat") |
| </dependency></code></pre> </div> </div> <div class="paragraph"> <p>The component supports 130 options, which are listed below.</p> </div> <div class="table-wrapper"><table class="tableblock frame-all grid-all stretch"> <colgroup> <col> <col> <col> <col> </colgroup> <thead> <tr> <th class="tableblock halign-left valign-top">Name</th> <th class="tableblock halign-left valign-top">Description</th> <th class="tableblock halign-center valign-top">Default</th> <th class="tableblock halign-left valign-top">Type</th> </tr> </thead> <tbody> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_additional-properties"></a> <a href="#_sb_option_camel_component_debezium-oracle_additional-properties" class="anchor"></a><strong>camel.component.debezium-oracle.additional-properties</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">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. This is a multi-value option with prefix: additionalProperties.</p></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Map</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_archive-destination-name"></a> <a href="#_sb_option_camel_component_debezium-oracle_archive-destination-name" class="anchor"></a><strong>camel.component.debezium-oracle.archive-destination-name</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Sets the specific archive log destination as the source for reading archive logs.When not set, the connector will automatically select the first LOCAL and VALID destination.</p></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_archive-log-hours"></a> <a href="#_sb_option_camel_component_debezium-oracle_archive-log-hours" class="anchor"></a><strong>camel.component.debezium-oracle.archive-log-hours</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">The number of hours in the past from SYSDATE to mine archive logs. Using 0 mines all available archive logs.</p></td> <td class="tableblock halign-center valign-top"><p class="tableblock">0</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Long</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_autowired-enabled"></a> <a href="#_sb_option_camel_component_debezium-oracle_autowired-enabled" class="anchor"></a><strong>camel.component.debezium-oracle.autowired-enabled</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">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.</p></td> <td class="tableblock halign-center valign-top"><p class="tableblock">true</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Boolean</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_binary-handling-mode"></a> <a href="#_sb_option_camel_component_debezium-oracle_binary-handling-mode" class="anchor"></a><strong>camel.component.debezium-oracle.binary-handling-mode</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">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.</p></td> <td class="tableblock halign-center valign-top"><p class="tableblock">bytes</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_bridge-error-handler"></a> <a href="#_sb_option_camel_component_debezium-oracle_bridge-error-handler" class="anchor"></a><strong>camel.component.debezium-oracle.bridge-error-handler</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Allows for bridging the consumer to the Camel routing Error Handler, which mean any exceptions (if possible) occurred while the Camel consumer is trying to pickup incoming messages, or the likes, will now be processed as a message and handled by the routing Error Handler. Important: This is only possible if the 3rd party component allows Camel to be alerted if an exception was thrown. Some components handle this internally only, and therefore bridgeErrorHandler is not possible. In other situations we may improve the Camel component to hook into the 3rd party component and make this possible for future releases. 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.</p></td> <td class="tableblock halign-center valign-top"><p class="tableblock">false</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Boolean</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_column-exclude-list"></a> <a href="#_sb_option_camel_component_debezium-oracle_column-exclude-list" class="anchor"></a><strong>camel.component.debezium-oracle.column-exclude-list</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Regular expressions matching columns to exclude from change events.</p></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_column-include-list"></a> <a href="#_sb_option_camel_component_debezium-oracle_column-include-list" class="anchor"></a><strong>camel.component.debezium-oracle.column-include-list</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Regular expressions matching columns to include in change events.</p></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_column-propagate-source-type"></a> <a href="#_sb_option_camel_component_debezium-oracle_column-propagate-source-type" class="anchor"></a><strong>camel.component.debezium-oracle.column-propagate-source-type</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">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.</p></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_configuration"></a> <a href="#_sb_option_camel_component_debezium-oracle_configuration" class="anchor"></a><strong>camel.component.debezium-oracle.configuration</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Allow pre-configured Configurations to be set. The option is a org.apache.camel.component.debezium.oracle.configuration.OracleConnectorEmbeddedDebeziumConfiguration type.</p></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">OracleConnectorEmbeddedDebeziumConfiguration</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_converters"></a> <a href="#_sb_option_camel_component_debezium-oracle_converters" class="anchor"></a><strong>camel.component.debezium-oracle.converters</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">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 '.'.</p></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_custom-metric-tags"></a> <a href="#_sb_option_camel_component_debezium-oracle_custom-metric-tags" class="anchor"></a><strong>camel.component.debezium-oracle.custom-metric-tags</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">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. For example: k1=v1,k2=v2.</p></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_database-connection-adapter"></a> <a href="#_sb_option_camel_component_debezium-oracle_database-connection-adapter" class="anchor"></a><strong>camel.component.debezium-oracle.database-connection-adapter</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">The adapter to use when capturing changes from the database. Options include: 'logminer': (the default) to capture changes using native Oracle LogMiner; 'xstream' to capture changes using Oracle XStreams.</p></td> <td class="tableblock halign-center valign-top"><p class="tableblock">LogMiner</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_database-dbname"></a> <a href="#_sb_option_camel_component_debezium-oracle_database-dbname" class="anchor"></a><strong>camel.component.debezium-oracle.database-dbname</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">The name of the database from which the connector should capture changes.</p></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_database-hostname"></a> <a href="#_sb_option_camel_component_debezium-oracle_database-hostname" class="anchor"></a><strong>camel.component.debezium-oracle.database-hostname</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Resolvable hostname or IP address of the database server.</p></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_database-out-server-name"></a> <a href="#_sb_option_camel_component_debezium-oracle_database-out-server-name" class="anchor"></a><strong>camel.component.debezium-oracle.database-out-server-name</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Name of the XStream Out server to connect to.</p></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_database-password"></a> <a href="#_sb_option_camel_component_debezium-oracle_database-password" class="anchor"></a><strong>camel.component.debezium-oracle.database-password</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Password of the database user to be used when connecting to the database.</p></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_database-pdb-name"></a> <a href="#_sb_option_camel_component_debezium-oracle_database-pdb-name" class="anchor"></a><strong>camel.component.debezium-oracle.database-pdb-name</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Name of the pluggable database when working with a multi-tenant set-up. The CDB name must be given via database.dbname in this case.</p></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_database-port"></a> <a href="#_sb_option_camel_component_debezium-oracle_database-port" class="anchor"></a><strong>camel.component.debezium-oracle.database-port</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Port of the database server.</p></td> <td class="tableblock halign-center valign-top"><p class="tableblock">1528</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Integer</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_database-query-timeout-ms"></a> <a href="#_sb_option_camel_component_debezium-oracle_database-query-timeout-ms" class="anchor"></a><strong>camel.component.debezium-oracle.database-query-timeout-ms</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Time to wait for a query to execute, given in milliseconds. Defaults to 600 seconds (600,000 ms); zero means there is no limit. The option is a int type.</p></td> <td class="tableblock halign-center valign-top"><p class="tableblock">600000</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Integer</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_database-url"></a> <a href="#_sb_option_camel_component_debezium-oracle_database-url" class="anchor"></a><strong>camel.component.debezium-oracle.database-url</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Complete JDBC URL as an alternative to specifying hostname, port and database provided as a way to support alternative connection scenarios.</p></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_database-user"></a> <a href="#_sb_option_camel_component_debezium-oracle_database-user" class="anchor"></a><strong>camel.component.debezium-oracle.database-user</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Name of the database user to be used when connecting to the database.</p></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_datatype-propagate-source-type"></a> <a href="#_sb_option_camel_component_debezium-oracle_datatype-propagate-source-type" class="anchor"></a><strong>camel.component.debezium-oracle.datatype-propagate-source-type</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">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.</p></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_decimal-handling-mode"></a> <a href="#_sb_option_camel_component_debezium-oracle_decimal-handling-mode" class="anchor"></a><strong>camel.component.debezium-oracle.decimal-handling-mode</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">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.</p></td> <td class="tableblock halign-center valign-top"><p class="tableblock">precise</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_enabled"></a> <a href="#_sb_option_camel_component_debezium-oracle_enabled" class="anchor"></a><strong>camel.component.debezium-oracle.enabled</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Whether to enable auto configuration of the debezium-oracle component. This is enabled by default.</p></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Boolean</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_errors-max-retries"></a> <a href="#_sb_option_camel_component_debezium-oracle_errors-max-retries" class="anchor"></a><strong>camel.component.debezium-oracle.errors-max-retries</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">The maximum number of retries on connection errors before failing (-1 = no limit, 0 = disabled, 0 = num of retries).</p></td> <td class="tableblock halign-center valign-top"><p class="tableblock">-1</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Integer</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_event-processing-failure-handling-mode"></a> <a href="#_sb_option_camel_component_debezium-oracle_event-processing-failure-handling-mode" class="anchor"></a><strong>camel.component.debezium-oracle.event-processing-failure-handling-mode</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">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.</p></td> <td class="tableblock halign-center valign-top"><p class="tableblock">fail</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_heartbeat-action-query"></a> <a href="#_sb_option_camel_component_debezium-oracle_heartbeat-action-query" class="anchor"></a><strong>camel.component.debezium-oracle.heartbeat-action-query</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">The query executed with every heartbeat.</p></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_heartbeat-interval-ms"></a> <a href="#_sb_option_camel_component_debezium-oracle_heartbeat-interval-ms" class="anchor"></a><strong>camel.component.debezium-oracle.heartbeat-interval-ms</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">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.</p></td> <td class="tableblock halign-center valign-top"><p class="tableblock">0</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Integer</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_heartbeat-topics-prefix"></a> <a href="#_sb_option_camel_component_debezium-oracle_heartbeat-topics-prefix" class="anchor"></a><strong>camel.component.debezium-oracle.heartbeat-topics-prefix</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">The prefix that is used to name heartbeat topics.Defaults to __debezium-heartbeat.</p></td> <td class="tableblock halign-center valign-top"><p class="tableblock">__debezium-heartbeat</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_include-schema-changes"></a> <a href="#_sb_option_camel_component_debezium-oracle_include-schema-changes" class="anchor"></a><strong>camel.component.debezium-oracle.include-schema-changes</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Whether the connector should publish changes in the database schema to a Kafka topic with the same name as the database server ID. Each schema change will be recorded using a key that contains the database name and whose value include logical description of the new schema and optionally the DDL statement(s). The default is 'true'. This is independent of how the connector internally records database schema history.</p></td> <td class="tableblock halign-center valign-top"><p class="tableblock">true</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Boolean</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_include-schema-comments"></a> <a href="#_sb_option_camel_component_debezium-oracle_include-schema-comments" class="anchor"></a><strong>camel.component.debezium-oracle.include-schema-comments</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Whether the connector parse table and column’s comment to metadata object. Note: Enable this option will bring the implications on memory usage. The number and size of ColumnImpl objects is what largely impacts how much memory is consumed by the Debezium connectors, and adding a String to each of them can potentially be quite heavy. The default is 'false'.</p></td> <td class="tableblock halign-center valign-top"><p class="tableblock">false</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Boolean</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_incremental-snapshot-watermarking-strategy"></a> <a href="#_sb_option_camel_component_debezium-oracle_incremental-snapshot-watermarking-strategy" class="anchor"></a><strong>camel.component.debezium-oracle.incremental-snapshot-watermarking-strategy</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Specify the strategy used for watermarking during an incremental snapshot: 'insert_insert' both open and close signal is written into signal data collection (default); 'insert_delete' only open signal is written on signal data collection, the close will delete the relative open signal;.</p></td> <td class="tableblock halign-center valign-top"><p class="tableblock">INSERT_INSERT</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_internal-key-converter"></a> <a href="#_sb_option_camel_component_debezium-oracle_internal-key-converter" class="anchor"></a><strong>camel.component.debezium-oracle.internal-key-converter</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">The Converter class that should be used to serialize and deserialize key data for offsets. The default is JSON converter.</p></td> <td class="tableblock halign-center valign-top"><p class="tableblock">org.apache.kafka.connect.json.JsonConverter</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_internal-value-converter"></a> <a href="#_sb_option_camel_component_debezium-oracle_internal-value-converter" class="anchor"></a><strong>camel.component.debezium-oracle.internal-value-converter</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">The Converter class that should be used to serialize and deserialize value data for offsets. The default is JSON converter.</p></td> <td class="tableblock halign-center valign-top"><p class="tableblock">org.apache.kafka.connect.json.JsonConverter</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_interval-handling-mode"></a> <a href="#_sb_option_camel_component_debezium-oracle_interval-handling-mode" class="anchor"></a><strong>camel.component.debezium-oracle.interval-handling-mode</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Specify how INTERVAL columns should be represented in change events, including: 'string' represents values as an exact ISO formatted string; 'numeric' (default) represents values using the inexact conversion into microseconds.</p></td> <td class="tableblock halign-center valign-top"><p class="tableblock">numeric</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_lob-enabled"></a> <a href="#_sb_option_camel_component_debezium-oracle_lob-enabled" class="anchor"></a><strong>camel.component.debezium-oracle.lob-enabled</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">When set to 'false', the default, LOB fields will not be captured nor emitted. When set to 'true', the connector will capture LOB fields and emit changes for those fields like any other column type.</p></td> <td class="tableblock halign-center valign-top"><p class="tableblock">false</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Boolean</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_log-mining-archive-log-only-mode"></a> <a href="#_sb_option_camel_component_debezium-oracle_log-mining-archive-log-only-mode" class="anchor"></a><strong>camel.component.debezium-oracle.log-mining-archive-log-only-mode</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">When set to 'false', the default, the connector will mine both archive log and redo logs to emit change events. When set to 'true', the connector will only mine archive logs. There are circumstances where its advantageous to only mine archive logs and accept latency in event emission due to frequent revolving redo logs.</p></td> <td class="tableblock halign-center valign-top"><p class="tableblock">false</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Boolean</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_log-mining-archive-log-only-scn-poll-interval-ms"></a> <a href="#_sb_option_camel_component_debezium-oracle_log-mining-archive-log-only-scn-poll-interval-ms" class="anchor"></a><strong>camel.component.debezium-oracle.log-mining-archive-log-only-scn-poll-interval-ms</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">The interval in milliseconds to wait between polls checking to see if the SCN is in the archive logs. The option is a long type.</p></td> <td class="tableblock halign-center valign-top"><p class="tableblock">10000</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Long</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_log-mining-batch-size-default"></a> <a href="#_sb_option_camel_component_debezium-oracle_log-mining-batch-size-default" class="anchor"></a><strong>camel.component.debezium-oracle.log-mining-batch-size-default</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">The starting SCN interval size that the connector will use for reading data from redo/archive logs.</p></td> <td class="tableblock halign-center valign-top"><p class="tableblock">20000</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Long</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_log-mining-batch-size-increment"></a> <a href="#_sb_option_camel_component_debezium-oracle_log-mining-batch-size-increment" class="anchor"></a><strong>camel.component.debezium-oracle.log-mining-batch-size-increment</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Active batch size will be also increased/decreased by this amount for tuning connector throughput when needed.</p></td> <td class="tableblock halign-center valign-top"><p class="tableblock">20000</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Long</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_log-mining-batch-size-max"></a> <a href="#_sb_option_camel_component_debezium-oracle_log-mining-batch-size-max" class="anchor"></a><strong>camel.component.debezium-oracle.log-mining-batch-size-max</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">The maximum SCN interval size that this connector will use when reading from redo/archive logs.</p></td> <td class="tableblock halign-center valign-top"><p class="tableblock">100000</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Long</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_log-mining-batch-size-min"></a> <a href="#_sb_option_camel_component_debezium-oracle_log-mining-batch-size-min" class="anchor"></a><strong>camel.component.debezium-oracle.log-mining-batch-size-min</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">The minimum SCN interval size that this connector will try to read from redo/archive logs.</p></td> <td class="tableblock halign-center valign-top"><p class="tableblock">1000</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Long</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_log-mining-buffer-drop-on-stop"></a> <a href="#_sb_option_camel_component_debezium-oracle_log-mining-buffer-drop-on-stop" class="anchor"></a><strong>camel.component.debezium-oracle.log-mining-buffer-drop-on-stop</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">When set to true the underlying buffer cache is not retained when the connector is stopped. When set to false (the default), the buffer cache is retained across restarts.</p></td> <td class="tableblock halign-center valign-top"><p class="tableblock">false</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Boolean</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_log-mining-buffer-ehcache-events-config"></a> <a href="#_sb_option_camel_component_debezium-oracle_log-mining-buffer-ehcache-events-config" class="anchor"></a><strong>camel.component.debezium-oracle.log-mining-buffer-ehcache-events-config</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Specifies the inner body the Ehcache tag for the events cache, but should not include the nor the attributes as these are managed by Debezium.</p></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_log-mining-buffer-ehcache-global-config"></a> <a href="#_sb_option_camel_component_debezium-oracle_log-mining-buffer-ehcache-global-config" class="anchor"></a><strong>camel.component.debezium-oracle.log-mining-buffer-ehcache-global-config</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Specifies any Ehcache global configurations such as services or persistence. This cannot include nor tags as these are managed by Debezium.</p></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_log-mining-buffer-ehcache-processedtransactions-config"></a> <a href="#_sb_option_camel_component_debezium-oracle_log-mining-buffer-ehcache-processedtransactions-config" class="anchor"></a><strong>camel.component.debezium-oracle.log-mining-buffer-ehcache-processedtransactions-config</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Specifies the inner body the Ehcache tag for the processed transaction cache, but should not include the nor the attributes as these are managed by Debezium.</p></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_log-mining-buffer-ehcache-schemachanges-config"></a> <a href="#_sb_option_camel_component_debezium-oracle_log-mining-buffer-ehcache-schemachanges-config" class="anchor"></a><strong>camel.component.debezium-oracle.log-mining-buffer-ehcache-schemachanges-config</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Specifies the inner body the Ehcache tag for the schema changes cache, but should not include the nor the attributes as these are managed by Debezium.</p></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_log-mining-buffer-ehcache-transactions-config"></a> <a href="#_sb_option_camel_component_debezium-oracle_log-mining-buffer-ehcache-transactions-config" class="anchor"></a><strong>camel.component.debezium-oracle.log-mining-buffer-ehcache-transactions-config</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Specifies the inner body the Ehcache tag for the transaction cache, but should not include the nor the attributes as these are managed by Debezium.</p></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_log-mining-buffer-infinispan-cache-events"></a> <a href="#_sb_option_camel_component_debezium-oracle_log-mining-buffer-infinispan-cache-events" class="anchor"></a><strong>camel.component.debezium-oracle.log-mining-buffer-infinispan-cache-events</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Specifies the XML configuration for the Infinispan 'events' cache.</p></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_log-mining-buffer-infinispan-cache-global"></a> <a href="#_sb_option_camel_component_debezium-oracle_log-mining-buffer-infinispan-cache-global" class="anchor"></a><strong>camel.component.debezium-oracle.log-mining-buffer-infinispan-cache-global</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Specifies the XML configuration for the Infinispan 'global' configuration.</p></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_log-mining-buffer-infinispan-cache-processed-transactions"></a> <a href="#_sb_option_camel_component_debezium-oracle_log-mining-buffer-infinispan-cache-processed-transactions" class="anchor"></a><strong>camel.component.debezium-oracle.log-mining-buffer-infinispan-cache-processed-transactions</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Specifies the XML configuration for the Infinispan 'processed-transactions' cache.</p></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_log-mining-buffer-infinispan-cache-schema-changes"></a> <a href="#_sb_option_camel_component_debezium-oracle_log-mining-buffer-infinispan-cache-schema-changes" class="anchor"></a><strong>camel.component.debezium-oracle.log-mining-buffer-infinispan-cache-schema-changes</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Specifies the XML configuration for the Infinispan 'schema-changes' cache.</p></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_log-mining-buffer-infinispan-cache-transactions"></a> <a href="#_sb_option_camel_component_debezium-oracle_log-mining-buffer-infinispan-cache-transactions" class="anchor"></a><strong>camel.component.debezium-oracle.log-mining-buffer-infinispan-cache-transactions</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Specifies the XML configuration for the Infinispan 'transactions' cache.</p></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_log-mining-buffer-transaction-events-threshold"></a> <a href="#_sb_option_camel_component_debezium-oracle_log-mining-buffer-transaction-events-threshold" class="anchor"></a><strong>camel.component.debezium-oracle.log-mining-buffer-transaction-events-threshold</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">The number of events a transaction can include before the transaction is discarded. This is useful for managing buffer memory and/or space when dealing with very large transactions. Defaults to 0, meaning that no threshold is applied and transactions can have unlimited events.</p></td> <td class="tableblock halign-center valign-top"><p class="tableblock">0</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Long</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_log-mining-buffer-type"></a> <a href="#_sb_option_camel_component_debezium-oracle_log-mining-buffer-type" class="anchor"></a><strong>camel.component.debezium-oracle.log-mining-buffer-type</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">The buffer type controls how the connector manages buffering transaction data. memory - Uses the JVM process' heap to buffer all transaction data. infinispan_embedded - This option uses an embedded Infinispan cache to buffer transaction data and persist it to disk. infinispan_remote - This option uses a remote Infinispan cluster to buffer transaction data and persist it to disk. ehcache - Use ehcache in embedded mode to buffer transaction data and persist it to disk.</p></td> <td class="tableblock halign-center valign-top"><p class="tableblock">memory</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_log-mining-flush-table-name"></a> <a href="#_sb_option_camel_component_debezium-oracle_log-mining-flush-table-name" class="anchor"></a><strong>camel.component.debezium-oracle.log-mining-flush-table-name</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">The name of the flush table used by the connector, defaults to LOG_MINING_FLUSH.</p></td> <td class="tableblock halign-center valign-top"><p class="tableblock">LOG_MINING_FLUSH</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_log-mining-include-redo-sql"></a> <a href="#_sb_option_camel_component_debezium-oracle_log-mining-include-redo-sql" class="anchor"></a><strong>camel.component.debezium-oracle.log-mining-include-redo-sql</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">When enabled, the transaction log REDO SQL will be included in the source information block.</p></td> <td class="tableblock halign-center valign-top"><p class="tableblock">false</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Boolean</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_log-mining-query-filter-mode"></a> <a href="#_sb_option_camel_component_debezium-oracle_log-mining-query-filter-mode" class="anchor"></a><strong>camel.component.debezium-oracle.log-mining-query-filter-mode</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Specifies how the filter configuration is applied to the LogMiner database query. none - The query does not apply any schema or table filters, all filtering is at runtime by the connector. in - The query uses SQL in-clause expressions to specify the schema or table filters. regex - The query uses Oracle REGEXP_LIKE expressions to specify the schema or table filters.</p></td> <td class="tableblock halign-center valign-top"><p class="tableblock">none</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_log-mining-restart-connection"></a> <a href="#_sb_option_camel_component_debezium-oracle_log-mining-restart-connection" class="anchor"></a><strong>camel.component.debezium-oracle.log-mining-restart-connection</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Debezium opens a database connection and keeps that connection open throughout the entire streaming phase. In some situations, this can lead to excessive SGA memory usage. By setting this option to 'true' (the default is 'false'), the connector will close and re-open a database connection after every detected log switch or if the log.mining.session.max.ms has been reached.</p></td> <td class="tableblock halign-center valign-top"><p class="tableblock">false</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Boolean</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_log-mining-scn-gap-detection-gap-size-min"></a> <a href="#_sb_option_camel_component_debezium-oracle_log-mining-scn-gap-detection-gap-size-min" class="anchor"></a><strong>camel.component.debezium-oracle.log-mining-scn-gap-detection-gap-size-min</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Used for SCN gap detection, if the difference between current SCN and previous end SCN is bigger than this value, and the time difference of current SCN and previous end SCN is smaller than log.mining.scn.gap.detection.time.interval.max.ms, consider it a SCN gap.</p></td> <td class="tableblock halign-center valign-top"><p class="tableblock">1000000</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Long</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_log-mining-scn-gap-detection-time-interval-max-ms"></a> <a href="#_sb_option_camel_component_debezium-oracle_log-mining-scn-gap-detection-time-interval-max-ms" class="anchor"></a><strong>camel.component.debezium-oracle.log-mining-scn-gap-detection-time-interval-max-ms</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Used for SCN gap detection, if the difference between current SCN and previous end SCN is bigger than log.mining.scn.gap.detection.gap.size.min, and the time difference of current SCN and previous end SCN is smaller than this value, consider it a SCN gap. The option is a long type.</p></td> <td class="tableblock halign-center valign-top"><p class="tableblock">20000</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Long</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_log-mining-session-max-ms"></a> <a href="#_sb_option_camel_component_debezium-oracle_log-mining-session-max-ms" class="anchor"></a><strong>camel.component.debezium-oracle.log-mining-session-max-ms</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">The maximum number of milliseconds that a LogMiner session lives for before being restarted. Defaults to 0 (indefinite until a log switch occurs). The option is a long type.</p></td> <td class="tableblock halign-center valign-top"><p class="tableblock">0</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Long</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_log-mining-sleep-time-default-ms"></a> <a href="#_sb_option_camel_component_debezium-oracle_log-mining-sleep-time-default-ms" class="anchor"></a><strong>camel.component.debezium-oracle.log-mining-sleep-time-default-ms</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">The amount of time that the connector will sleep after reading data from redo/archive logs and before starting reading data again. Value is in milliseconds. The option is a long type.</p></td> <td class="tableblock halign-center valign-top"><p class="tableblock">1000</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Long</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_log-mining-sleep-time-increment-ms"></a> <a href="#_sb_option_camel_component_debezium-oracle_log-mining-sleep-time-increment-ms" class="anchor"></a><strong>camel.component.debezium-oracle.log-mining-sleep-time-increment-ms</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">The maximum amount of time that the connector will use to tune the optimal sleep time when reading data from LogMiner. Value is in milliseconds. The option is a long type.</p></td> <td class="tableblock halign-center valign-top"><p class="tableblock">200</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Long</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_log-mining-sleep-time-max-ms"></a> <a href="#_sb_option_camel_component_debezium-oracle_log-mining-sleep-time-max-ms" class="anchor"></a><strong>camel.component.debezium-oracle.log-mining-sleep-time-max-ms</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">The maximum amount of time that the connector will sleep after reading data from redo/archive logs and before starting reading data again. Value is in milliseconds. The option is a long type.</p></td> <td class="tableblock halign-center valign-top"><p class="tableblock">3000</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Long</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_log-mining-sleep-time-min-ms"></a> <a href="#_sb_option_camel_component_debezium-oracle_log-mining-sleep-time-min-ms" class="anchor"></a><strong>camel.component.debezium-oracle.log-mining-sleep-time-min-ms</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">The minimum amount of time that the connector will sleep after reading data from redo/archive logs and before starting reading data again. Value is in milliseconds. The option is a long type.</p></td> <td class="tableblock halign-center valign-top"><p class="tableblock">0</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Long</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_log-mining-strategy"></a> <a href="#_sb_option_camel_component_debezium-oracle_log-mining-strategy" class="anchor"></a><strong>camel.component.debezium-oracle.log-mining-strategy</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">There are strategies: Online catalog with faster mining but no captured DDL. Another - with data dictionary loaded into REDO LOG files.</p></td> <td class="tableblock halign-center valign-top"><p class="tableblock">online_catalog</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_log-mining-transaction-retention-ms"></a> <a href="#_sb_option_camel_component_debezium-oracle_log-mining-transaction-retention-ms" class="anchor"></a><strong>camel.component.debezium-oracle.log-mining-transaction-retention-ms</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Duration in milliseconds to keep long running transactions in transaction buffer between log mining sessions. By default, all transactions are retained. The option is a long type.</p></td> <td class="tableblock halign-center valign-top"><p class="tableblock">0</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Long</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_log-mining-username-exclude-list"></a> <a href="#_sb_option_camel_component_debezium-oracle_log-mining-username-exclude-list" class="anchor"></a><strong>camel.component.debezium-oracle.log-mining-username-exclude-list</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Comma separated list of usernames to exclude from LogMiner query.</p></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_log-mining-username-include-list"></a> <a href="#_sb_option_camel_component_debezium-oracle_log-mining-username-include-list" class="anchor"></a><strong>camel.component.debezium-oracle.log-mining-username-include-list</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Comma separated list of usernames to include from LogMiner query.</p></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_max-batch-size"></a> <a href="#_sb_option_camel_component_debezium-oracle_max-batch-size" class="anchor"></a><strong>camel.component.debezium-oracle.max-batch-size</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Maximum size of each batch of source records. Defaults to 2048.</p></td> <td class="tableblock halign-center valign-top"><p class="tableblock">2048</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Integer</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_max-queue-size"></a> <a href="#_sb_option_camel_component_debezium-oracle_max-queue-size" class="anchor"></a><strong>camel.component.debezium-oracle.max-queue-size</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">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.</p></td> <td class="tableblock halign-center valign-top"><p class="tableblock">8192</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Integer</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_max-queue-size-in-bytes"></a> <a href="#_sb_option_camel_component_debezium-oracle_max-queue-size-in-bytes" class="anchor"></a><strong>camel.component.debezium-oracle.max-queue-size-in-bytes</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Maximum size of the queue in bytes for change events read from the database log but not yet recorded or forwarded. Defaults to 0. Mean the feature is not enabled.</p></td> <td class="tableblock halign-center valign-top"><p class="tableblock">0</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Long</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_message-key-columns"></a> <a href="#_sb_option_camel_component_debezium-oracle_message-key-columns" class="anchor"></a><strong>camel.component.debezium-oracle.message-key-columns</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">A semicolon-separated list of expressions that match fully-qualified tables and column(s) to be used as message key. Each expression must match the pattern ':', where the table names could be defined as (DB_NAME.TABLE_NAME) or (SCHEMA_NAME.TABLE_NAME), depending on the specific connector, and the key columns are a comma-separated list of columns representing the custom key. For any table without an explicit key configuration the table’s primary key column(s) will be used as message key. Example: dbserver1.inventory.orderlines:orderId,orderLineId;dbserver1.inventory.orders:id.</p></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_notification-enabled-channels"></a> <a href="#_sb_option_camel_component_debezium-oracle_notification-enabled-channels" class="anchor"></a><strong>camel.component.debezium-oracle.notification-enabled-channels</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">List of notification channels names that are enabled.</p></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_notification-sink-topic-name"></a> <a href="#_sb_option_camel_component_debezium-oracle_notification-sink-topic-name" class="anchor"></a><strong>camel.component.debezium-oracle.notification-sink-topic-name</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">The name of the topic for the notifications. This is required in case 'sink' is in the list of enabled channels.</p></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_offset-commit-policy"></a> <a href="#_sb_option_camel_component_debezium-oracle_offset-commit-policy" class="anchor"></a><strong>camel.component.debezium-oracle.offset-commit-policy</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">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.</p></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_offset-commit-timeout-ms"></a> <a href="#_sb_option_camel_component_debezium-oracle_offset-commit-timeout-ms" class="anchor"></a><strong>camel.component.debezium-oracle.offset-commit-timeout-ms</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">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.</p></td> <td class="tableblock halign-center valign-top"><p class="tableblock">5000</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Long</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_offset-flush-interval-ms"></a> <a href="#_sb_option_camel_component_debezium-oracle_offset-flush-interval-ms" class="anchor"></a><strong>camel.component.debezium-oracle.offset-flush-interval-ms</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Interval at which to try committing offsets. The default is 1 minute. The option is a long type.</p></td> <td class="tableblock halign-center valign-top"><p class="tableblock">60000</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Long</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_offset-storage"></a> <a href="#_sb_option_camel_component_debezium-oracle_offset-storage" class="anchor"></a><strong>camel.component.debezium-oracle.offset-storage</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">The name of the Java class that is responsible for persistence of connector offsets.</p></td> <td class="tableblock halign-center valign-top"><p class="tableblock">org.apache.kafka.connect.storage.FileOffsetBackingStore</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_offset-storage-file-name"></a> <a href="#_sb_option_camel_component_debezium-oracle_offset-storage-file-name" class="anchor"></a><strong>camel.component.debezium-oracle.offset-storage-file-name</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Path to file where offsets are to be stored. Required when offset.storage is set to the FileOffsetBackingStore.</p></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_offset-storage-partitions"></a> <a href="#_sb_option_camel_component_debezium-oracle_offset-storage-partitions" class="anchor"></a><strong>camel.component.debezium-oracle.offset-storage-partitions</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">The number of partitions used when creating the offset storage topic. Required when offset.storage is set to the 'KafkaOffsetBackingStore'.</p></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Integer</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_offset-storage-replication-factor"></a> <a href="#_sb_option_camel_component_debezium-oracle_offset-storage-replication-factor" class="anchor"></a><strong>camel.component.debezium-oracle.offset-storage-replication-factor</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Replication factor used when creating the offset storage topic. Required when offset.storage is set to the KafkaOffsetBackingStore.</p></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Integer</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_offset-storage-topic"></a> <a href="#_sb_option_camel_component_debezium-oracle_offset-storage-topic" class="anchor"></a><strong>camel.component.debezium-oracle.offset-storage-topic</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">The name of the Kafka topic where offsets are to be stored. Required when offset.storage is set to the KafkaOffsetBackingStore.</p></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_openlogreplicator-host"></a> <a href="#_sb_option_camel_component_debezium-oracle_openlogreplicator-host" class="anchor"></a><strong>camel.component.debezium-oracle.openlogreplicator-host</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">The hostname of the OpenLogReplicator network service.</p></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_openlogreplicator-port"></a> <a href="#_sb_option_camel_component_debezium-oracle_openlogreplicator-port" class="anchor"></a><strong>camel.component.debezium-oracle.openlogreplicator-port</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">The port of the OpenLogReplicator network service.</p></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Integer</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_openlogreplicator-source"></a> <a href="#_sb_option_camel_component_debezium-oracle_openlogreplicator-source" class="anchor"></a><strong>camel.component.debezium-oracle.openlogreplicator-source</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">The configured logical source name in the OpenLogReplicator configuration that is to stream changes.</p></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_poll-interval-ms"></a> <a href="#_sb_option_camel_component_debezium-oracle_poll-interval-ms" class="anchor"></a><strong>camel.component.debezium-oracle.poll-interval-ms</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Time to wait for new change events to appear after receiving no events, given in milliseconds. Defaults to 500 ms. The option is a long type.</p></td> <td class="tableblock halign-center valign-top"><p class="tableblock">500</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Long</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_post-processors"></a> <a href="#_sb_option_camel_component_debezium-oracle_post-processors" class="anchor"></a><strong>camel.component.debezium-oracle.post-processors</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Optional list of post processors. The processors are defined using '.type' config option and configured using options ''.</p></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_provide-transaction-metadata"></a> <a href="#_sb_option_camel_component_debezium-oracle_provide-transaction-metadata" class="anchor"></a><strong>camel.component.debezium-oracle.provide-transaction-metadata</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Enables transaction metadata extraction together with event counting.</p></td> <td class="tableblock halign-center valign-top"><p class="tableblock">false</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Boolean</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_query-fetch-size"></a> <a href="#_sb_option_camel_component_debezium-oracle_query-fetch-size" class="anchor"></a><strong>camel.component.debezium-oracle.query-fetch-size</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">The maximum number of records that should be loaded into memory while streaming. A value of '0' uses the default JDBC fetch size, defaults to '2000'.</p></td> <td class="tableblock halign-center valign-top"><p class="tableblock">10000</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Integer</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_rac-nodes"></a> <a href="#_sb_option_camel_component_debezium-oracle_rac-nodes" class="anchor"></a><strong>camel.component.debezium-oracle.rac-nodes</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">A comma-separated list of RAC node hostnames or ip addresses.</p></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_retriable-restart-connector-wait-ms"></a> <a href="#_sb_option_camel_component_debezium-oracle_retriable-restart-connector-wait-ms" class="anchor"></a><strong>camel.component.debezium-oracle.retriable-restart-connector-wait-ms</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Time to wait before restarting connector after retriable exception occurs. Defaults to 10000ms. The option is a long type.</p></td> <td class="tableblock halign-center valign-top"><p class="tableblock">10000</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Long</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_schema-history-internal"></a> <a href="#_sb_option_camel_component_debezium-oracle_schema-history-internal" class="anchor"></a><strong>camel.component.debezium-oracle.schema-history-internal</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">The name of the SchemaHistory class that should be used to store and recover database schema changes. The configuration properties for the history are prefixed with the 'schema.history.internal.' string.</p></td> <td class="tableblock halign-center valign-top"><p class="tableblock">io.debezium.storage.kafka.history.KafkaSchemaHistory</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_schema-history-internal-file-filename"></a> <a href="#_sb_option_camel_component_debezium-oracle_schema-history-internal-file-filename" class="anchor"></a><strong>camel.component.debezium-oracle.schema-history-internal-file-filename</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">The path to the file that will be used to record the database schema history.</p></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_schema-history-internal-skip-unparseable-ddl"></a> <a href="#_sb_option_camel_component_debezium-oracle_schema-history-internal-skip-unparseable-ddl" class="anchor"></a><strong>camel.component.debezium-oracle.schema-history-internal-skip-unparseable-ddl</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">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. If skipping is enabled then Debezium can miss metadata changes.</p></td> <td class="tableblock halign-center valign-top"><p class="tableblock">false</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Boolean</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_schema-history-internal-store-only-captured-databases-ddl"></a> <a href="#_sb_option_camel_component_debezium-oracle_schema-history-internal-store-only-captured-databases-ddl" class="anchor"></a><strong>camel.component.debezium-oracle.schema-history-internal-store-only-captured-databases-ddl</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Controls what DDL will Debezium store in database schema history. By default (false) Debezium will store all incoming DDL statements. If set to true, then only DDL that manipulates a table from captured schema/database will be stored.</p></td> <td class="tableblock halign-center valign-top"><p class="tableblock">false</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Boolean</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_schema-history-internal-store-only-captured-tables-ddl"></a> <a href="#_sb_option_camel_component_debezium-oracle_schema-history-internal-store-only-captured-tables-ddl" class="anchor"></a><strong>camel.component.debezium-oracle.schema-history-internal-store-only-captured-tables-ddl</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Controls what DDL will Debezium store in database schema history. By default (false) Debezium will store all incoming DDL statements. If set to true, then only DDL that manipulates a captured table will be stored.</p></td> <td class="tableblock halign-center valign-top"><p class="tableblock">false</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Boolean</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_schema-name-adjustment-mode"></a> <a href="#_sb_option_camel_component_debezium-oracle_schema-name-adjustment-mode" class="anchor"></a><strong>camel.component.debezium-oracle.schema-name-adjustment-mode</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">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. Note: _ is an escape sequence like backslash in Java;'none' does not apply any adjustment (default).</p></td> <td class="tableblock halign-center valign-top"><p class="tableblock">none</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_signal-data-collection"></a> <a href="#_sb_option_camel_component_debezium-oracle_signal-data-collection" class="anchor"></a><strong>camel.component.debezium-oracle.signal-data-collection</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">The name of the data collection that is used to send signals/commands to Debezium. Signaling is disabled when not set.</p></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_signal-enabled-channels"></a> <a href="#_sb_option_camel_component_debezium-oracle_signal-enabled-channels" class="anchor"></a><strong>camel.component.debezium-oracle.signal-enabled-channels</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">List of channels names that are enabled. Source channel is enabled by default.</p></td> <td class="tableblock halign-center valign-top"><p class="tableblock">source</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_signal-poll-interval-ms"></a> <a href="#_sb_option_camel_component_debezium-oracle_signal-poll-interval-ms" class="anchor"></a><strong>camel.component.debezium-oracle.signal-poll-interval-ms</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Interval for looking for new signals in registered channels, given in milliseconds. Defaults to 5 seconds. The option is a long type.</p></td> <td class="tableblock halign-center valign-top"><p class="tableblock">5000</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Long</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_skipped-operations"></a> <a href="#_sb_option_camel_component_debezium-oracle_skipped-operations" class="anchor"></a><strong>camel.component.debezium-oracle.skipped-operations</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">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. By default, only truncate operations will be skipped.</p></td> <td class="tableblock halign-center valign-top"><p class="tableblock">t</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_snapshot-database-errors-max-retries"></a> <a href="#_sb_option_camel_component_debezium-oracle_snapshot-database-errors-max-retries" class="anchor"></a><strong>camel.component.debezium-oracle.snapshot-database-errors-max-retries</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">The number of attempts to retry database errors during snapshots before failing.</p></td> <td class="tableblock halign-center valign-top"><p class="tableblock">0</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Integer</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_snapshot-delay-ms"></a> <a href="#_sb_option_camel_component_debezium-oracle_snapshot-delay-ms" class="anchor"></a><strong>camel.component.debezium-oracle.snapshot-delay-ms</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">A delay period before a snapshot will begin, given in milliseconds. Defaults to 0 ms. The option is a long type.</p></td> <td class="tableblock halign-center valign-top"><p class="tableblock">0</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Long</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_snapshot-fetch-size"></a> <a href="#_sb_option_camel_component_debezium-oracle_snapshot-fetch-size" class="anchor"></a><strong>camel.component.debezium-oracle.snapshot-fetch-size</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">The maximum number of records that should be loaded into memory while performing a snapshot.</p></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Integer</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_snapshot-include-collection-list"></a> <a href="#_sb_option_camel_component_debezium-oracle_snapshot-include-collection-list" class="anchor"></a><strong>camel.component.debezium-oracle.snapshot-include-collection-list</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">This setting must be set to specify a list of tables/collections whose snapshot must be taken on creating or restarting the connector.</p></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_snapshot-lock-timeout-ms"></a> <a href="#_sb_option_camel_component_debezium-oracle_snapshot-lock-timeout-ms" class="anchor"></a><strong>camel.component.debezium-oracle.snapshot-lock-timeout-ms</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">The maximum number of millis to wait for table locks at the beginning of a snapshot. If locks cannot be acquired in this time frame, the snapshot will be aborted. Defaults to 10 seconds. The option is a long type.</p></td> <td class="tableblock halign-center valign-top"><p class="tableblock">10000</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Long</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_snapshot-locking-mode"></a> <a href="#_sb_option_camel_component_debezium-oracle_snapshot-locking-mode" class="anchor"></a><strong>camel.component.debezium-oracle.snapshot-locking-mode</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Controls how the connector holds locks on tables while performing the schema snapshot. The default is 'shared', which means the connector will hold a table lock that prevents exclusive table access for just the initial portion of the snapshot while the database schemas and other metadata are being read. The remaining work in a snapshot involves selecting all rows from each table, and this is done using a flashback query that requires no locks. However, in some cases it may be desirable to avoid locks entirely which can be done by specifying 'none'. This mode is only safe to use if no schema changes are happening while the snapshot is taken.</p></td> <td class="tableblock halign-center valign-top"><p class="tableblock">shared</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_snapshot-max-threads"></a> <a href="#_sb_option_camel_component_debezium-oracle_snapshot-max-threads" class="anchor"></a><strong>camel.component.debezium-oracle.snapshot-max-threads</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">The maximum number of threads used to perform the snapshot. Defaults to 1.</p></td> <td class="tableblock halign-center valign-top"><p class="tableblock">1</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Integer</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_snapshot-mode"></a> <a href="#_sb_option_camel_component_debezium-oracle_snapshot-mode" class="anchor"></a><strong>camel.component.debezium-oracle.snapshot-mode</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">The criteria for running a snapshot upon startup of the connector. Select one of the following snapshot options: 'always': The connector runs a snapshot every time that it starts. After the snapshot completes, the connector begins to stream changes from the redo logs.; 'initial' (default): If the connector does not detect any offsets for the logical server name, it runs a snapshot that captures the current full state of the configured tables. After the snapshot completes, the connector begins to stream changes from the redo logs. 'initial_only': The connector performs a snapshot as it does for the 'initial' option, but after the connector completes the snapshot, it stops, and does not stream changes from the redo logs.; 'schema_only': If the connector does not detect any offsets for the logical server name, it runs a snapshot that captures only the schema (table structures), but not any table data. After the snapshot completes, the connector begins to stream changes from the redo logs.; 'schema_only_recovery': The connector performs a snapshot that captures only the database schema history. The connector then transitions to streaming from the redo logs. Use this setting to restore a corrupted or lost database schema history topic. Do not use if the database schema was modified after the connector stopped.</p></td> <td class="tableblock halign-center valign-top"><p class="tableblock">initial</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_snapshot-mode-configuration-based-snapshot-data"></a> <a href="#_sb_option_camel_component_debezium-oracle_snapshot-mode-configuration-based-snapshot-data" class="anchor"></a><strong>camel.component.debezium-oracle.snapshot-mode-configuration-based-snapshot-data</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">When 'snapshot.mode' is set as configuration_based, this setting permits to specify whenever the data should be snapshotted or not.</p></td> <td class="tableblock halign-center valign-top"><p class="tableblock">false</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Boolean</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_snapshot-mode-configuration-based-snapshot-on-data-error"></a> <a href="#_sb_option_camel_component_debezium-oracle_snapshot-mode-configuration-based-snapshot-on-data-error" class="anchor"></a><strong>camel.component.debezium-oracle.snapshot-mode-configuration-based-snapshot-on-data-error</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">When 'snapshot.mode' is set as configuration_based, this setting permits to specify whenever the data should be snapshotted or not in case of error.</p></td> <td class="tableblock halign-center valign-top"><p class="tableblock">false</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Boolean</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_snapshot-mode-configuration-based-snapshot-on-schema-error"></a> <a href="#_sb_option_camel_component_debezium-oracle_snapshot-mode-configuration-based-snapshot-on-schema-error" class="anchor"></a><strong>camel.component.debezium-oracle.snapshot-mode-configuration-based-snapshot-on-schema-error</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">When 'snapshot.mode' is set as configuration_based, this setting permits to specify whenever the schema should be snapshotted or not in case of error.</p></td> <td class="tableblock halign-center valign-top"><p class="tableblock">false</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Boolean</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_snapshot-mode-configuration-based-snapshot-schema"></a> <a href="#_sb_option_camel_component_debezium-oracle_snapshot-mode-configuration-based-snapshot-schema" class="anchor"></a><strong>camel.component.debezium-oracle.snapshot-mode-configuration-based-snapshot-schema</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">When 'snapshot.mode' is set as configuration_based, this setting permits to specify whenever the schema should be snapshotted or not.</p></td> <td class="tableblock halign-center valign-top"><p class="tableblock">false</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Boolean</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_snapshot-mode-configuration-based-start-stream"></a> <a href="#_sb_option_camel_component_debezium-oracle_snapshot-mode-configuration-based-start-stream" class="anchor"></a><strong>camel.component.debezium-oracle.snapshot-mode-configuration-based-start-stream</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">When 'snapshot.mode' is set as configuration_based, this setting permits to specify whenever the stream should start or not after snapshot.</p></td> <td class="tableblock halign-center valign-top"><p class="tableblock">false</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Boolean</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_snapshot-mode-custom-name"></a> <a href="#_sb_option_camel_component_debezium-oracle_snapshot-mode-custom-name" class="anchor"></a><strong>camel.component.debezium-oracle.snapshot-mode-custom-name</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">When 'snapshot.mode' is set as custom, this setting must be set to specify a the name of the custom implementation provided in the 'name()' method. The implementations must implement the 'Snapshotter' interface and is called on each app boot to determine whether to do a snapshot.</p></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_snapshot-select-statement-overrides"></a> <a href="#_sb_option_camel_component_debezium-oracle_snapshot-select-statement-overrides" class="anchor"></a><strong>camel.component.debezium-oracle.snapshot-select-statement-overrides</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">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. Select statements for the individual tables are specified in further configuration properties, one for each table, identified by the id 'snapshot.select.statement.overrides.DB_NAME.TABLE_NAME' or 'snapshot.select.statement.overrides.SCHEMA_NAME.TABLE_NAME', respectively. The value of those properties is the select statement to use when retrieving data from the specific table during snapshotting. A possible use case for large append-only tables is setting a specific point where to start (resume) snapshotting, in case a previous snapshotting was interrupted.</p></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_snapshot-tables-order-by-row-count"></a> <a href="#_sb_option_camel_component_debezium-oracle_snapshot-tables-order-by-row-count" class="anchor"></a><strong>camel.component.debezium-oracle.snapshot-tables-order-by-row-count</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Controls the order in which tables are processed in the initial snapshot. A descending value will order the tables by row count descending. A ascending value will order the tables by row count ascending. A value of disabled (the default) will disable ordering by row count.</p></td> <td class="tableblock halign-center valign-top"><p class="tableblock">disabled</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_sourceinfo-struct-maker"></a> <a href="#_sb_option_camel_component_debezium-oracle_sourceinfo-struct-maker" class="anchor"></a><strong>camel.component.debezium-oracle.sourceinfo-struct-maker</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">The name of the SourceInfoStructMaker class that returns SourceInfo schema and struct.</p></td> <td class="tableblock halign-center valign-top"><p class="tableblock">io.debezium.connector.oracle.OracleSourceInfoStructMaker</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_streaming-delay-ms"></a> <a href="#_sb_option_camel_component_debezium-oracle_streaming-delay-ms" class="anchor"></a><strong>camel.component.debezium-oracle.streaming-delay-ms</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">A delay period after the snapshot is completed and the streaming begins, given in milliseconds. Defaults to 0 ms. The option is a long type.</p></td> <td class="tableblock halign-center valign-top"><p class="tableblock">0</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Long</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_table-exclude-list"></a> <a href="#_sb_option_camel_component_debezium-oracle_table-exclude-list" class="anchor"></a><strong>camel.component.debezium-oracle.table-exclude-list</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">A comma-separated list of regular expressions that match the fully-qualified names of tables to be excluded from monitoring.</p></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_table-include-list"></a> <a href="#_sb_option_camel_component_debezium-oracle_table-include-list" class="anchor"></a><strong>camel.component.debezium-oracle.table-include-list</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">The tables for which changes are to be captured.</p></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_time-precision-mode"></a> <a href="#_sb_option_camel_component_debezium-oracle_time-precision-mode" class="anchor"></a><strong>camel.component.debezium-oracle.time-precision-mode</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Time, date, and timestamps can be represented with different kinds of precisions, including: 'adaptive' (the default) bases the precision of time, date, and timestamp values on the database column’s precision; 'adaptive_time_microseconds' like 'adaptive' mode, 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.</p></td> <td class="tableblock halign-center valign-top"><p class="tableblock">adaptive</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_tombstones-on-delete"></a> <a href="#_sb_option_camel_component_debezium-oracle_tombstones-on-delete" class="anchor"></a><strong>camel.component.debezium-oracle.tombstones-on-delete</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Whether delete operations should be represented by a delete event and a subsequent tombstone 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.</p></td> <td class="tableblock halign-center valign-top"><p class="tableblock">false</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Boolean</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_topic-naming-strategy"></a> <a href="#_sb_option_camel_component_debezium-oracle_topic-naming-strategy" class="anchor"></a><strong>camel.component.debezium-oracle.topic-naming-strategy</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">The name of the TopicNamingStrategy class that should be used to determine the topic name for data change, schema change, transaction, heartbeat event etc.</p></td> <td class="tableblock halign-center valign-top"><p class="tableblock">io.debezium.schema.SchemaTopicNamingStrategy</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_topic-prefix"></a> <a href="#_sb_option_camel_component_debezium-oracle_topic-prefix" class="anchor"></a><strong>camel.component.debezium-oracle.topic-prefix</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Topic prefix that identifies and provides a namespace for the particular database server/cluster is capturing changes. The topic prefix should be unique across all other connectors, since it is used as a prefix for all Kafka topic names that receive events emitted by this connector. Only alphanumeric characters, hyphens, dots and underscores must be accepted.</p></td> <td class="tableblock halign-center valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_transaction-metadata-factory"></a> <a href="#_sb_option_camel_component_debezium-oracle_transaction-metadata-factory" class="anchor"></a><strong>camel.component.debezium-oracle.transaction-metadata-factory</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Class to make transaction context & transaction struct/schemas.</p></td> <td class="tableblock halign-center valign-top"><p class="tableblock">io.debezium.pipeline.txmetadata.DefaultTransactionMetadataFactory</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock"><a id="_sb_option_camel_component_debezium-oracle_unavailable-value-placeholder"></a> <a href="#_sb_option_camel_component_debezium-oracle_unavailable-value-placeholder" class="anchor"></a><strong>camel.component.debezium-oracle.unavailable-value-placeholder</strong></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Specify the constant that will be provided by Debezium to indicate that the original value is unavailable and not provided by the database.</p></td> <td class="tableblock halign-center valign-top"><p class="tableblock">__debezium_unavailable_value</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">String</p></td> </tr> </tbody> </table></div> </div> </div> </article> <aside class="toc sidebar" aria-label="Table of contents" data-title="Contents" data-levels="2"> <div class="toc-menu"></div> </aside> </div> </main> </div> <div class="footer-tools"> <a href="#top" title="Reach the top of the page">Back to top</a> </div> <footer> <div class="footer"> <figure class="logo"> <img src="../../_/img/logo-d-a567cee6fa.svg" class="logo-small mt-60" alt="Apache Camel Logo" aria-label="white silhouette of a camel in front of a sand dune"> </figure> <input id="footer-toggle-overview" type="checkbox" title="Show/Hide Overview section"> <dl> <dt><label for="footer-toggle-overview">Overview</label><label for="footer-toggle-overview">+</label></dt> <dd><a href="../../blog/">Blog</a></dd> <dd><a href="../../docs/">Documentation</a></dd> <dd><a href="../../community/support/">Community</a></dd> <dd><a href="../../download/">Download</a></dd> </dl> <input id="footer-toggle-documentation" type="checkbox" title="Show/Hide Documentation section"> <dl> <dt><label for="footer-toggle-documentation">Documentation</label><label for="footer-toggle-documentation">+</label></dt> <dd><a href="../../manual/">User Manual</a></dd> <dd><a href="../../components/next/index.html">Components</a></dd> <dd><a href="../../camel-k/next/">Camel-K</a></dd> <dd><a href="../../camel-kafka-connector/next/">Camel Kafka Connector</a></dd> <dd><a href="../../camel-quarkus/next/">Camel Quarkus</a></dd> <dd><a href="../../camel-spring-boot/next/">Camel Spring Boot</a></dd> <dd><a href="../../camel-karaf/3.22.x/">Camel Karaf</a></dd> <dd><a href="../../manual/faq/index.html">FAQ</a></dd> </dl> <input id="footer-toggle-community" type="checkbox" title="Show/Hide Community section"> <dl> <dt><label for="footer-toggle-community">Community</label><label for="footer-toggle-community">+</label></dt> <dd><a href="../../community/support/">Support</a></dd> <dd><a href="../../community/contributing/">Contributing</a></dd> <dd><a href="../../community/mailing-list/">Mailing Lists</a></dd> <dd><a href="../../community/user-stories/">User stories</a></dd> <dd><a href="../../community/articles/">Articles</a></dd> <dd><a href="../../community/books/">Books</a></dd> <dd><a href="../../community/team/">Team</a></dd> </dl> <input id="footer-toggle-about" type="checkbox" title="Show/Hide Acknowledgements section"> <dl> <dt><label for="footer-toggle-about">About</label><label for="footer-toggle-about">+</label></dt> <dd><a href="../../acknowledgments/">Acknowledgments</a></dd> <dd><a target="_blank" rel="noopener noreferrer nofollow" href="https://www.apache.org/events/current-event.html" title="Apache Events">Apache Events</a></dd> <dd><a target="_blank" rel="noopener noreferrer nofollow" href="https://www.apache.org/licenses/" title="License">License</a></dd> <dd><a target="_blank" rel="noopener noreferrer nofollow" href="https://www.apache.org/security/" title="Security">Security</a></dd> <dd><a target="_blank" rel="noopener noreferrer nofollow" href="https://www.apache.org/foundation/sponsorship.html" title="Sponsorship">Sponsorship</a></dd> <dd><a target="_blank" rel="noopener noreferrer nofollow" href="https://www.apache.org/foundation/thanks.html" title="Thanks">Thanks</a></dd> </dl> <p class="remark"> © 2004-2025 The <a href="https://apache.org">Apache Software Foundation</a>.<br> Apache Camel, Camel, Apache, the Apache feather logo, and the Apache Camel project logo are trademarks of The Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners. </p> <div class="resources"> <div class="context"> <a href="https://privacy.apache.org/policies/privacy-policy-public.html">Privacy Policy</a> </div> <div class="context"> <a target="_blank" rel="noopener noreferrer nofollow" href="https://www.apache.org/foundation/policies/conduct">Code of Conduct</a> </div> <div class="context"> <a href="../../sitemap/">Sitemap</a> </div> </div> <div class="footer-icons"> <a rel="noopener noreferrer nofollow" href="https://github.com/apache/camel/" title="Collaborate on GitHub"><svg class="brand-icon" focusable="false"><use xlink:href="../../_/img/brand-logos-f2e689f4d4.svg#github"/></svg></a> <a rel="noopener noreferrer nofollow" href="https://camel.zulipchat.com" title="Chat on Zulip"><svg class="brand-icon" focusable="false"><use xlink:href="../../_/img/brand-logos-f2e689f4d4.svg#zulip"/></svg></a> <a rel="noopener noreferrer nofollow" href="https://twitter.com/ApacheCamel" title="Follow Apache Camel on Twitter"><svg class="brand-icon" focusable="false"><use xlink:href="../../_/img/brand-logos-f2e689f4d4.svg#twitter"/></svg></a> <a rel="noopener noreferrer nofollow" href="https://www.linkedin.com/groups/2447439/" title="Apache Camel group on Linkedin"><svg class="brand-icon" focusable="false"><use xlink:href="../../_/img/brand-logos-f2e689f4d4.svg#linkedin"/></svg></a> </div> </div> </footer> <script src="../../_/js/vendor/algoliasearch-bad45193e2.js"></script> <script src="../../_/js/site-c215fb6972.js"></script> <script async src="../../_/js/vendor/highlight-621a10fe1b.js"></script> <script async src="../../_/js/vendor/svg4everybody-a0c573f2b9.js"></script> <script async src="../../_/js/vendor/tabs-5aea11bcf5.js" data-sync-storage-key="preferred-tab"></script> <script type="application/ld+json"> { "@context": "http://schema.org", "@type": "Organization", "name": "Apache Camel", "url": "https://camel.apache.org", "sameAs": [ "https://twitter.com/ApacheCamel" ], "logo": "../../_/img/logo-d-a567cee6fa.svg", "description": "Apache Camel ™ is a versatile open-source integration framework based on known Enterprise Integration Patterns. Camel empowers you to define routing and mediation rules in a variety of domain-specific languages, including a Java-based Fluent API, Spring or Blueprint XML Configuration files, and a Scala DSL." } </script> <script type="application/ld+json"> { "@context": "http://schema.org", "@type": "BreadcrumbList", "itemListElement": [{ "@type": "ListItem", "position": 1, "name": "Apache Camel", "item": "https://camel.apache.org/" }, { "@type": "ListItem", "position": 2, "name": "Camel Components", "item": "https://camel.apache.org/components/4.10.x/index.html" }, { "@type": "ListItem", "position": 3, "name": "Next (Pre-release)", "item": "https://camel.apache.org/components/next/index.html" }, { "@type": "ListItem", "position": 4, "name": "Components", "item": "https://camel.apache.org/components/next/index.html" }, { "@type": "ListItem", "position": 5, "name": "Debezium", "item": "https://camel.apache.org/components/next/debezium-summary.html" }, { "@type": "ListItem", "position": 6, "name": "Debezium Oracle Connector", "item": "https://camel.apache.org/components/next/debezium-oracle-component.html" }] } </script> </body> </html> |