@ThreadSafe public final class EmbeddedEngine extends Object implements io.debezium.engine.DebeziumEngine<org.apache.kafka.connect.source.SourceRecord>
SourceConnector within an application's process. An embedded connector
is entirely standalone and only talks with the source system; no Kafka, Kafka Connect, or Zookeeper processes are needed.
Applications using an embedded connector simply set one up and supply a consumer function to which the
connector will pass all SourceRecords containing database change events.
With an embedded connector, the application that runs the connector assumes all responsibility for fault tolerance, scalability, and durability. Additionally, applications must specify how the connector can store its relational database schema history and offsets. By default, this information will be stored in memory and will thus be lost upon application restart.
Embedded connectors are designed to be submitted to an Executor or ExecutorService for execution by a single
thread, and a running connector can be stopped either by calling stop() from another thread or by interrupting
the running thread (e.g., as is the case with ExecutorService.shutdownNow()).
| Modifier and Type | Class and Description |
|---|---|
static interface |
EmbeddedEngine.Builder
Deprecated.
|
static class |
EmbeddedEngine.BuilderImpl |
static interface |
EmbeddedEngine.ChangeConsumer
Deprecated.
|
static interface |
EmbeddedEngine.CompletionCallback
Deprecated.
|
static class |
EmbeddedEngine.CompletionResult
A callback function to be notified when the connector completes.
|
static interface |
EmbeddedEngine.ConnectorCallback
Deprecated.
|
protected static class |
EmbeddedEngine.EmbeddedConfig |
static interface |
EmbeddedEngine.RecordCommitter
Deprecated.
|
protected class |
EmbeddedEngine.SourceRecordOffsets
Implementation of
DebeziumEngine.Offsets which can be used to construct a SourceRecord
with its offsets. |
| Modifier and Type | Field and Description |
|---|---|
protected static Field.Set |
ALL_FIELDS
The array of all exposed fields.
|
private ClassLoader |
classLoader |
private Clock |
clock |
private io.debezium.engine.DebeziumEngine.CompletionCallback |
completionCallback |
private EmbeddedEngine.CompletionResult |
completionResult |
private Configuration |
config |
static Field |
CONNECTOR_CLASS
A required field for an embedded connector that specifies the name of the normal Debezium connector's Java class.
|
static Field.Set |
CONNECTOR_FIELDS
The array of fields that are required by each connectors.
|
private io.debezium.engine.DebeziumEngine.ConnectorCallback |
connectorCallback |
static Field |
ENGINE_NAME
A required field for an embedded connector that specifies the unique name for the connector instance.
|
private io.debezium.engine.DebeziumEngine.ChangeConsumer<org.apache.kafka.connect.source.SourceRecord> |
handler |
protected static Field |
INTERNAL_KEY_CONVERTER_CLASS |
protected static Field |
INTERNAL_VALUE_CONVERTER_CLASS |
private org.apache.kafka.connect.storage.Converter |
keyConverter |
private VariableLatch |
latch |
private static org.slf4j.Logger |
LOGGER |
static Field |
OFFSET_COMMIT_POLICY |
static Field |
OFFSET_COMMIT_TIMEOUT_MS
An optional advanced field that specifies the maximum amount of time that the embedded connector should wait
for an offset commit to complete.
|
static Field |
OFFSET_FLUSH_INTERVAL_MS
An optional advanced field that specifies the maximum amount of time that the embedded connector should wait
for an offset commit to complete.
|
static Field |
OFFSET_STORAGE
An optional field that specifies the name of the class that implements the
OffsetBackingStore interface,
and that will be used to store offsets recorded by the connector. |
static Field |
OFFSET_STORAGE_FILE_FILENAME
An optional field that specifies the file location for the
FileOffsetBackingStore. |
static Field |
OFFSET_STORAGE_KAFKA_PARTITIONS
An optional field that specifies the number of partitions for the
KafkaOffsetBackingStore. |
static Field |
OFFSET_STORAGE_KAFKA_REPLICATION_FACTOR
An optional field that specifies the replication factor for the
KafkaOffsetBackingStore. |
static Field |
OFFSET_STORAGE_KAFKA_TOPIC
An optional field that specifies the topic name for the
KafkaOffsetBackingStore. |
private io.debezium.engine.spi.OffsetCommitPolicy |
offsetCommitPolicy |
private long |
recordsSinceLastCommit |
private AtomicReference<Thread> |
runningThread |
private org.apache.kafka.connect.source.SourceTask |
task |
private long |
timeOfLastCommitMillis |
private Transformations |
transformations |
static Field |
TRANSFORMS
A list of SMTs to be applied on the messages generated by the engine.
|
private org.apache.kafka.connect.storage.Converter |
valueConverter |
private static Duration |
WAIT_FOR_COMPLETION_BEFORE_INTERRUPT_DEFAULT
How long we wait before forcefully stopping the connector thread when
shutting down.
|
private static String |
WAIT_FOR_COMPLETION_BEFORE_INTERRUPT_PROP |
private org.apache.kafka.connect.runtime.WorkerConfig |
workerConfig |
| Modifier | Constructor and Description |
|---|---|
private |
EmbeddedEngine(Configuration config,
ClassLoader classLoader,
Clock clock,
io.debezium.engine.DebeziumEngine.ChangeConsumer<org.apache.kafka.connect.source.SourceRecord> handler,
io.debezium.engine.DebeziumEngine.CompletionCallback completionCallback,
io.debezium.engine.DebeziumEngine.ConnectorCallback connectorCallback,
io.debezium.engine.spi.OffsetCommitPolicy offsetCommitPolicy) |
| Modifier and Type | Method and Description |
|---|---|
boolean |
await(long timeout,
TimeUnit unit)
Wait for the connector to complete processing.
|
private static EmbeddedEngine.ChangeConsumer |
buildDefaultChangeConsumer(Consumer<org.apache.kafka.connect.source.SourceRecord> consumer) |
protected EmbeddedEngine.RecordCommitter |
buildRecordCommitter(org.apache.kafka.connect.storage.OffsetStorageWriter offsetWriter,
org.apache.kafka.connect.source.SourceTask task,
Duration commitTimeout)
Creates a new RecordCommitter that is responsible for informing the engine
about the updates to the given batch
|
void |
close() |
protected void |
commitOffsets(org.apache.kafka.connect.storage.OffsetStorageWriter offsetWriter,
Duration commitTimeout,
org.apache.kafka.connect.source.SourceTask task)
Flush offsets to storage.
|
protected void |
completedFlush(Throwable error,
Void result) |
static EmbeddedEngine.Builder |
create()
Deprecated.
|
private void |
fail(String msg) |
private void |
fail(String msg,
Throwable error) |
boolean |
isRunning()
Determine if this embedded connector is currently running.
|
protected void |
maybeFlush(org.apache.kafka.connect.storage.OffsetStorageWriter offsetWriter,
io.debezium.engine.spi.OffsetCommitPolicy policy,
Duration commitTimeout,
org.apache.kafka.connect.source.SourceTask task)
Determine if we should flush offsets to storage, and if so then attempt to flush offsets.
|
void |
run()
Run this embedded connector and deliver database changes to the registered
Consumer. |
void |
runWithTask(Consumer<org.apache.kafka.connect.source.SourceTask> consumer) |
boolean |
stop()
Stop the execution of this embedded connector.
|
private void |
succeed(String msg) |
String |
toString() |
public static final Field ENGINE_NAME
public static final Field CONNECTOR_CLASS
public static final Field OFFSET_STORAGE
OffsetBackingStore interface,
and that will be used to store offsets recorded by the connector.public static final Field OFFSET_STORAGE_FILE_FILENAME
FileOffsetBackingStore.OFFSET_STORAGEpublic static final Field OFFSET_STORAGE_KAFKA_TOPIC
KafkaOffsetBackingStore.OFFSET_STORAGEpublic static final Field OFFSET_STORAGE_KAFKA_PARTITIONS
KafkaOffsetBackingStore.OFFSET_STORAGEpublic static final Field OFFSET_STORAGE_KAFKA_REPLICATION_FACTOR
KafkaOffsetBackingStore.OFFSET_STORAGEpublic static final Field OFFSET_FLUSH_INTERVAL_MS
public static final Field OFFSET_COMMIT_TIMEOUT_MS
public static final Field OFFSET_COMMIT_POLICY
protected static final Field INTERNAL_KEY_CONVERTER_CLASS
protected static final Field INTERNAL_VALUE_CONVERTER_CLASS
public static final Field TRANSFORMS
public static final Field.Set CONNECTOR_FIELDS
protected static final Field.Set ALL_FIELDS
private static final Duration WAIT_FOR_COMPLETION_BEFORE_INTERRUPT_DEFAULT
ChangeEventSourceCoordinator.SHUTDOWN_WAIT_TIMEOUT * 2.private static final String WAIT_FOR_COMPLETION_BEFORE_INTERRUPT_PROP
private static final org.slf4j.Logger LOGGER
private final Configuration config
private final Clock clock
private final ClassLoader classLoader
private final io.debezium.engine.DebeziumEngine.ChangeConsumer<org.apache.kafka.connect.source.SourceRecord> handler
private final io.debezium.engine.DebeziumEngine.CompletionCallback completionCallback
private final io.debezium.engine.DebeziumEngine.ConnectorCallback connectorCallback
private final AtomicReference<Thread> runningThread
private final VariableLatch latch
private final org.apache.kafka.connect.storage.Converter keyConverter
private final org.apache.kafka.connect.storage.Converter valueConverter
private final org.apache.kafka.connect.runtime.WorkerConfig workerConfig
private final EmbeddedEngine.CompletionResult completionResult
private long recordsSinceLastCommit
private long timeOfLastCommitMillis
private io.debezium.engine.spi.OffsetCommitPolicy offsetCommitPolicy
private org.apache.kafka.connect.source.SourceTask task
private final Transformations transformations
private EmbeddedEngine(Configuration config, ClassLoader classLoader, Clock clock, io.debezium.engine.DebeziumEngine.ChangeConsumer<org.apache.kafka.connect.source.SourceRecord> handler, io.debezium.engine.DebeziumEngine.CompletionCallback completionCallback, io.debezium.engine.DebeziumEngine.ConnectorCallback connectorCallback, io.debezium.engine.spi.OffsetCommitPolicy offsetCommitPolicy)
private static EmbeddedEngine.ChangeConsumer buildDefaultChangeConsumer(Consumer<org.apache.kafka.connect.source.SourceRecord> consumer)
@Deprecated public static EmbeddedEngine.Builder create()
EmbeddedEngine.Builder instance that can be used to construct runnable EmbeddedEngine instances.public boolean isRunning()
true if running, or false otherwiseprivate void fail(String msg)
private void succeed(String msg)
public void run()
Consumer. This method blocks until
the connector is stopped.
First, the method checks to see if this instance is currently running, and if so immediately returns.
If the configuration is valid, this method starts the connector and starts polling the connector for change events.
All messages are delivered in batches to the Consumer registered with this embedded connector. The batch size,
polling
frequency, and other parameters are controlled via configuration settings. This continues until this connector is
stopped.
Note that there are two ways to stop a connector running on a thread: calling stop() from another thread, or
interrupting the thread (e.g., via ExecutorService.shutdownNow()).
This method can be called repeatedly as needed.
protected EmbeddedEngine.RecordCommitter buildRecordCommitter(org.apache.kafka.connect.storage.OffsetStorageWriter offsetWriter, org.apache.kafka.connect.source.SourceTask task, Duration commitTimeout)
offsetWriter - the offsetWriter current in usetask - the sourcetaskcommitTimeout - the time in ms until a commit times outprotected void maybeFlush(org.apache.kafka.connect.storage.OffsetStorageWriter offsetWriter,
io.debezium.engine.spi.OffsetCommitPolicy policy,
Duration commitTimeout,
org.apache.kafka.connect.source.SourceTask task)
throws InterruptedException
offsetWriter - the offset storage writer; may not be nullpolicy - the offset commit policy; may not be nullcommitTimeout - the timeout to wait for commit resultstask - the task which produced the records for which the offsets have been committedInterruptedExceptionprotected void commitOffsets(org.apache.kafka.connect.storage.OffsetStorageWriter offsetWriter,
Duration commitTimeout,
org.apache.kafka.connect.source.SourceTask task)
throws InterruptedException
offsetWriter - the offset storage writer; may not be nullcommitTimeout - the timeout to wait for commit resultstask - the task which produced the records for which the offsets have been committedInterruptedExceptionpublic boolean stop()
await(long, TimeUnit) for this purpose.true if the connector was running and will eventually stop, or false if it was not
running when this method is calledawait(long, TimeUnit)public void close()
throws IOException
close in interface Closeableclose in interface AutoCloseableIOExceptionpublic boolean await(long timeout,
TimeUnit unit)
throws InterruptedException
stopped and restarted before this method is called, this method will return only
when it completes the second time.timeout - the maximum amount of time to wait before returningunit - the unit of time; may not be nulltrue if the connector completed within the timeout (or was not running), or false if it is still
running when the timeout occurredInterruptedException - if this thread is interrupted while waiting for the completion of the connectorpublic void runWithTask(Consumer<org.apache.kafka.connect.source.SourceTask> consumer)
Copyright © 2021 JBoss by Red Hat. All rights reserved.