- secretPropertyNames() - Method in class org.apache.camel.component.debezium.DebeziumPostgresEndpointUriFactory
-
- setBinaryHandlingMode(String) - Method in class org.apache.camel.component.debezium.configuration.PostgresConnectorEmbeddedDebeziumConfiguration
-
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'hex'
represents binary data as hex-encoded (base16) string
- setColumnBlacklist(String) - Method in class org.apache.camel.component.debezium.configuration.PostgresConnectorEmbeddedDebeziumConfiguration
-
Regular expressions matching columns to exclude from change events
(deprecated, use "column.exclude.list" instead)
- setColumnExcludeList(String) - Method in class org.apache.camel.component.debezium.configuration.PostgresConnectorEmbeddedDebeziumConfiguration
-
Regular expressions matching columns to exclude from change events
- setColumnIncludeList(String) - Method in class org.apache.camel.component.debezium.configuration.PostgresConnectorEmbeddedDebeziumConfiguration
-
Regular expressions matching columns to include in change events
- setColumnPropagateSourceType(String) - Method in class org.apache.camel.component.debezium.configuration.PostgresConnectorEmbeddedDebeziumConfiguration
-
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.
- setColumnWhitelist(String) - Method in class org.apache.camel.component.debezium.configuration.PostgresConnectorEmbeddedDebeziumConfiguration
-
Regular expressions matching columns to include in change events
(deprecated, use "column.include.list" instead)
- setConfiguration(PostgresConnectorEmbeddedDebeziumConfiguration) - Method in class org.apache.camel.component.debezium.DebeziumPostgresComponent
-
- setConfiguration(PostgresConnectorEmbeddedDebeziumConfiguration) - Method in class org.apache.camel.component.debezium.DebeziumPostgresEndpoint
-
- setConverters(String) - Method in class org.apache.camel.component.debezium.configuration.PostgresConnectorEmbeddedDebeziumConfiguration
-
Optional list of custom converters that would be used instead of default
ones.
- setDatabaseDbname(String) - Method in class org.apache.camel.component.debezium.configuration.PostgresConnectorEmbeddedDebeziumConfiguration
-
The name of the database the connector should be monitoring
- setDatabaseHistoryFileFilename(String) - Method in class org.apache.camel.component.debezium.configuration.PostgresConnectorEmbeddedDebeziumConfiguration
-
The path to the file that will be used to record the database history
- setDatabaseHostname(String) - Method in class org.apache.camel.component.debezium.configuration.PostgresConnectorEmbeddedDebeziumConfiguration
-
Resolvable hostname or IP address of the database server.
- setDatabaseInitialStatements(String) - Method in class org.apache.camel.component.debezium.configuration.PostgresConnectorEmbeddedDebeziumConfiguration
-
A semicolon separated list of SQL statements to be executed when a JDBC
connection to the database is established.
- setDatabasePassword(String) - Method in class org.apache.camel.component.debezium.configuration.PostgresConnectorEmbeddedDebeziumConfiguration
-
Password of the database user to be used when connecting to the database.
- setDatabasePort(int) - Method in class org.apache.camel.component.debezium.configuration.PostgresConnectorEmbeddedDebeziumConfiguration
-
Port of the database server.
- setDatabaseServerName(String) - Method in class org.apache.camel.component.debezium.configuration.PostgresConnectorEmbeddedDebeziumConfiguration
-
Unique name that identifies the database server and all recorded offsets,
and that is used as a prefix for all schemas and topics.
- setDatabaseSslcert(String) - Method in class org.apache.camel.component.debezium.configuration.PostgresConnectorEmbeddedDebeziumConfiguration
-
File containing the SSL Certificate for the client.
- setDatabaseSslfactory(String) - Method in class org.apache.camel.component.debezium.configuration.PostgresConnectorEmbeddedDebeziumConfiguration
-
A name of class to that creates SSL Sockets.
- setDatabaseSslkey(String) - Method in class org.apache.camel.component.debezium.configuration.PostgresConnectorEmbeddedDebeziumConfiguration
-
File containing the SSL private key for the client.
- setDatabaseSslmode(String) - Method in class org.apache.camel.component.debezium.configuration.PostgresConnectorEmbeddedDebeziumConfiguration
-
Whether to use an encrypted connection to Postgres.
- setDatabaseSslpassword(String) - Method in class org.apache.camel.component.debezium.configuration.PostgresConnectorEmbeddedDebeziumConfiguration
-
Password to access the client private key from the file specified by
'database.sslkey'.
- setDatabaseSslrootcert(String) - Method in class org.apache.camel.component.debezium.configuration.PostgresConnectorEmbeddedDebeziumConfiguration
-
File containing the root certificate(s) against which the server is
validated.
- setDatabaseTcpkeepalive(boolean) - Method in class org.apache.camel.component.debezium.configuration.PostgresConnectorEmbeddedDebeziumConfiguration
-
Enable or disable TCP keep-alive probe to avoid dropping TCP connection
- setDatabaseUser(String) - Method in class org.apache.camel.component.debezium.configuration.PostgresConnectorEmbeddedDebeziumConfiguration
-
Name of the database user to be used when connecting to the database.
- setDatatypePropagateSourceType(String) - Method in class org.apache.camel.component.debezium.configuration.PostgresConnectorEmbeddedDebeziumConfiguration
-
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.
- setDecimalHandlingMode(String) - Method in class org.apache.camel.component.debezium.configuration.PostgresConnectorEmbeddedDebeziumConfiguration
-
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.
- setEventProcessingFailureHandlingMode(String) - Method in class org.apache.camel.component.debezium.configuration.PostgresConnectorEmbeddedDebeziumConfiguration
-
Specify how failures during processing of events (i.e.
- setHeartbeatActionQuery(String) - Method in class org.apache.camel.component.debezium.configuration.PostgresConnectorEmbeddedDebeziumConfiguration
-
The query executed with every heartbeat.
- setHeartbeatIntervalMs(int) - Method in class org.apache.camel.component.debezium.configuration.PostgresConnectorEmbeddedDebeziumConfiguration
-
Length of an interval in milli-seconds in in which the connector
periodically sends heartbeat messages to a heartbeat topic.
- setHeartbeatTopicsPrefix(String) - Method in class org.apache.camel.component.debezium.configuration.PostgresConnectorEmbeddedDebeziumConfiguration
-
The prefix that is used to name heartbeat topics.Defaults to
__debezium-heartbeat.
- setHstoreHandlingMode(String) - Method in class org.apache.camel.component.debezium.configuration.PostgresConnectorEmbeddedDebeziumConfiguration
-
Specify how HSTORE columns should be represented in change events,
including:'json' represents values as string-ified JSON (default)'map'
represents values as a key/value map
- setIncludeUnknownDatatypes(boolean) - Method in class org.apache.camel.component.debezium.configuration.PostgresConnectorEmbeddedDebeziumConfiguration
-
Specify whether the fields of data type not supported by Debezium should
be processed:'false' (the default) omits the fields; 'true' converts the
field into an implementation dependent binary representation.
- setIntervalHandlingMode(String) - Method in class org.apache.camel.component.debezium.configuration.PostgresConnectorEmbeddedDebeziumConfiguration
-
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
- setMaxBatchSize(int) - Method in class org.apache.camel.component.debezium.configuration.PostgresConnectorEmbeddedDebeziumConfiguration
-
Maximum size of each batch of source records.
- setMaxQueueSize(int) - Method in class org.apache.camel.component.debezium.configuration.PostgresConnectorEmbeddedDebeziumConfiguration
-
Maximum size of the queue for change events read from the database log
but not yet recorded or forwarded.
- setMaxQueueSizeInBytes(long) - Method in class org.apache.camel.component.debezium.configuration.PostgresConnectorEmbeddedDebeziumConfiguration
-
Maximum size of the queue in bytes for change events read from the
database log but not yet recorded or forwarded.
- setMessageKeyColumns(String) - Method in class org.apache.camel.component.debezium.configuration.PostgresConnectorEmbeddedDebeziumConfiguration
-
A semicolon-separated list of expressions that match fully-qualified
tables and column(s) to be used as message key.
- setPluginName(String) - Method in class org.apache.camel.component.debezium.configuration.PostgresConnectorEmbeddedDebeziumConfiguration
-
The name of the Postgres logical decoding plugin installed on the server.
- setPollIntervalMs(long) - Method in class org.apache.camel.component.debezium.configuration.PostgresConnectorEmbeddedDebeziumConfiguration
-
Time to wait for new change events to appear after receiving no events,
given in milliseconds.
- setProvideTransactionMetadata(boolean) - Method in class org.apache.camel.component.debezium.configuration.PostgresConnectorEmbeddedDebeziumConfiguration
-
Enables transaction metadata extraction together with event counting
- setPublicationAutocreateMode(String) - Method in class org.apache.camel.component.debezium.configuration.PostgresConnectorEmbeddedDebeziumConfiguration
-
Applies only when streaming changes using pgoutput.Determine how creation
of a publication should work, the default is all_tables.DISABLED - The
connector will not attempt to create a publication at all.
- setPublicationName(String) - Method in class org.apache.camel.component.debezium.configuration.PostgresConnectorEmbeddedDebeziumConfiguration
-
The name of the Postgres 10+ publication used for streaming changes from
a plugin.Defaults to 'dbz_publication'
- setQueryFetchSize(int) - Method in class org.apache.camel.component.debezium.configuration.PostgresConnectorEmbeddedDebeziumConfiguration
-
The maximum number of records that should be loaded into memory while
streaming.
- setRetriableRestartConnectorWaitMs(long) - Method in class org.apache.camel.component.debezium.configuration.PostgresConnectorEmbeddedDebeziumConfiguration
-
Time to wait before restarting connector after retriable exception
occurs.
- setSanitizeFieldNames(boolean) - Method in class org.apache.camel.component.debezium.configuration.PostgresConnectorEmbeddedDebeziumConfiguration
-
Whether field names will be sanitized to Avro naming conventions
- setSchemaBlacklist(String) - Method in class org.apache.camel.component.debezium.configuration.PostgresConnectorEmbeddedDebeziumConfiguration
-
The schemas for which events must not be captured (deprecated, use
"schema.exclude.list" instead)
- setSchemaExcludeList(String) - Method in class org.apache.camel.component.debezium.configuration.PostgresConnectorEmbeddedDebeziumConfiguration
-
The schemas for which events must not be captured
- setSchemaIncludeList(String) - Method in class org.apache.camel.component.debezium.configuration.PostgresConnectorEmbeddedDebeziumConfiguration
-
The schemas for which events should be captured
- setSchemaRefreshMode(String) - Method in class org.apache.camel.component.debezium.configuration.PostgresConnectorEmbeddedDebeziumConfiguration
-
Specify the conditions that trigger a refresh of the in-memory schema for
a table.
- setSchemaWhitelist(String) - Method in class org.apache.camel.component.debezium.configuration.PostgresConnectorEmbeddedDebeziumConfiguration
-
The schemas for which events should be captured (deprecated, use
"schema.include.list" instead)
- setSignalDataCollection(String) - Method in class org.apache.camel.component.debezium.configuration.PostgresConnectorEmbeddedDebeziumConfiguration
-
The name of the data collection that is used to send signals/commands to
Debezium.
- setSkippedOperations(String) - Method in class org.apache.camel.component.debezium.configuration.PostgresConnectorEmbeddedDebeziumConfiguration
-
The comma-separated list of operations to skip during streaming, defined
as: 'c' for inserts/create; 'u' for updates; 'd' for deletes.
- setSlotDropOnStop(boolean) - Method in class org.apache.camel.component.debezium.configuration.PostgresConnectorEmbeddedDebeziumConfiguration
-
Whether or not to drop the logical replication slot when the connector
finishes orderlyBy default the replication is kept so that on restart
progress can resume from the last recorded location
- setSlotMaxRetries(int) - Method in class org.apache.camel.component.debezium.configuration.PostgresConnectorEmbeddedDebeziumConfiguration
-
How many times to retry connecting to a replication slot when an attempt
fails.
- setSlotName(String) - Method in class org.apache.camel.component.debezium.configuration.PostgresConnectorEmbeddedDebeziumConfiguration
-
The name of the Postgres logical decoding slot created for streaming
changes from a plugin.Defaults to 'debezium
- setSlotRetryDelayMs(long) - Method in class org.apache.camel.component.debezium.configuration.PostgresConnectorEmbeddedDebeziumConfiguration
-
Time to wait between retry attempts when the connector fails to connect
to a replication slot, given in milliseconds.
- setSlotStreamParams(String) - Method in class org.apache.camel.component.debezium.configuration.PostgresConnectorEmbeddedDebeziumConfiguration
-
Any optional parameters used by logical decoding plugin.
- setSnapshotCustomClass(String) - Method in class org.apache.camel.component.debezium.configuration.PostgresConnectorEmbeddedDebeziumConfiguration
-
When 'snapshot.mode' is set as custom, this setting must be set to
specify a fully qualified class name to load (via the default class
loader).This class must implement the 'Snapshotter' interface and is
called on each app boot to determine whether to do a snapshot and how to
build queries.
- setSnapshotDelayMs(long) - Method in class org.apache.camel.component.debezium.configuration.PostgresConnectorEmbeddedDebeziumConfiguration
-
A delay period before a snapshot will begin, given in milliseconds.
- setSnapshotFetchSize(int) - Method in class org.apache.camel.component.debezium.configuration.PostgresConnectorEmbeddedDebeziumConfiguration
-
The maximum number of records that should be loaded into memory while
performing a snapshot
- setSnapshotIncludeCollectionList(String) - Method in class org.apache.camel.component.debezium.configuration.PostgresConnectorEmbeddedDebeziumConfiguration
-
this setting must be set to specify a list of tables/collections whose
snapshot must be taken on creating or restarting the connector.
- setSnapshotLockTimeoutMs(long) - Method in class org.apache.camel.component.debezium.configuration.PostgresConnectorEmbeddedDebeziumConfiguration
-
The maximum number of millis to wait for table locks at the beginning of
a snapshot.
- setSnapshotMaxThreads(int) - Method in class org.apache.camel.component.debezium.configuration.PostgresConnectorEmbeddedDebeziumConfiguration
-
The maximum number of threads used to perform the snapshot.
- setSnapshotMode(String) - Method in class org.apache.camel.component.debezium.configuration.PostgresConnectorEmbeddedDebeziumConfiguration
-
The criteria for running a snapshot upon startup of the connector.
- setSnapshotSelectStatementOverrides(String) - Method in class org.apache.camel.component.debezium.configuration.PostgresConnectorEmbeddedDebeziumConfiguration
-
This property contains a comma-separated list of fully-qualified tables
(DB_NAME.TABLE_NAME) or (SCHEMA_NAME.TABLE_NAME), depending on
thespecific connectors .
- setSourceStructVersion(String) - Method in class org.apache.camel.component.debezium.configuration.PostgresConnectorEmbeddedDebeziumConfiguration
-
A version of the format of the publicly visible source part in the
message
- setStatusUpdateIntervalMs(int) - Method in class org.apache.camel.component.debezium.configuration.PostgresConnectorEmbeddedDebeziumConfiguration
-
Frequency for sending replication connection status updates to the
server, given in milliseconds.
- setTableBlacklist(String) - Method in class org.apache.camel.component.debezium.configuration.PostgresConnectorEmbeddedDebeziumConfiguration
-
A comma-separated list of regular expressions that match the
fully-qualified names of tables to be excluded from monitoring
(deprecated, use "table.exclude.list" instead)
- setTableExcludeList(String) - Method in class org.apache.camel.component.debezium.configuration.PostgresConnectorEmbeddedDebeziumConfiguration
-
A comma-separated list of regular expressions that match the
fully-qualified names of tables to be excluded from monitoring
- setTableIgnoreBuiltin(boolean) - Method in class org.apache.camel.component.debezium.configuration.PostgresConnectorEmbeddedDebeziumConfiguration
-
Flag specifying whether built-in tables should be ignored.
- setTableIncludeList(String) - Method in class org.apache.camel.component.debezium.configuration.PostgresConnectorEmbeddedDebeziumConfiguration
-
The tables for which changes are to be captured
- setTableWhitelist(String) - Method in class org.apache.camel.component.debezium.configuration.PostgresConnectorEmbeddedDebeziumConfiguration
-
The tables for which changes are to be captured (deprecated, use
"table.include.list" instead)
- setTimePrecisionMode(String) - Method in class org.apache.camel.component.debezium.configuration.PostgresConnectorEmbeddedDebeziumConfiguration
-
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 .
- setToastedValuePlaceholder(String) - Method in class org.apache.camel.component.debezium.configuration.PostgresConnectorEmbeddedDebeziumConfiguration
-
Specify the constant that will be provided by Debezium to indicate that
the original value is a toasted value not provided by the database.
- setTombstonesOnDelete(boolean) - Method in class org.apache.camel.component.debezium.configuration.PostgresConnectorEmbeddedDebeziumConfiguration
-
Whether delete operations should be represented by a delete event and a
subsquenttombstone event (true) or only by a delete event (false).
- setXminFetchIntervalMs(long) - Method in class org.apache.camel.component.debezium.configuration.PostgresConnectorEmbeddedDebeziumConfiguration
-
Specify how often (in ms) the xmin will be fetched from the replication
slot.