Class SignalBasedIncrementalSnapshotChangeEventSource<P extends Partition,T extends DataCollectionId>
- java.lang.Object
-
- io.debezium.pipeline.source.snapshot.incremental.AbstractIncrementalSnapshotChangeEventSource<P,T>
-
- io.debezium.pipeline.source.snapshot.incremental.SignalBasedIncrementalSnapshotChangeEventSource<P,T>
-
- All Implemented Interfaces:
IncrementalSnapshotChangeEventSource<P,T>
@NotThreadSafe public class SignalBasedIncrementalSnapshotChangeEventSource<P extends Partition,T extends DataCollectionId> extends AbstractIncrementalSnapshotChangeEventSource<P,T>
-
-
Field Summary
Fields Modifier and Type Field Description private static org.slf4j.LoggerLOGGERprivate StringsignalWindowStatement-
Fields inherited from class io.debezium.pipeline.source.snapshot.incremental.AbstractIncrementalSnapshotChangeEventSource
context, dispatcher, jdbcConnection, window
-
-
Constructor Summary
Constructors Constructor Description SignalBasedIncrementalSnapshotChangeEventSource(RelationalDatabaseConnectorConfig config, JdbcConnection jdbcConnection, EventDispatcher<P,T> dispatcher, DatabaseSchema<?> databaseSchema, Clock clock, SnapshotProgressListener<P> progressListener, DataChangeEventListener<P> dataChangeEventListener)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected voidemitWindowClose(Partition partition)Update high watermark for the incremental snapshot chunkprotected voidemitWindowOpen()Update low watermark for the incremental snapshot chunkvoidprocessMessage(Partition partition, DataCollectionId dataCollectionId, Object key, OffsetContext offsetContext)-
Methods inherited from class io.debezium.pipeline.source.snapshot.incremental.AbstractIncrementalSnapshotChangeEventSource
addDataCollectionNamesToSnapshot, addKeyColumnsToCondition, buildChunkQuery, buildChunkQuery, buildMaxPrimaryKeyQuery, closeWindow, deduplicateWindow, getChangeRecordEmitter, getSignalTableName, init, postIncrementalSnapshotCompleted, postReadChunk, preReadChunk, readChunk, readTableChunkStatement, refreshTableSchema, sendEvent, sendWindowEvents, setContext
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface io.debezium.pipeline.source.snapshot.incremental.IncrementalSnapshotChangeEventSource
processFilteredEvent, processHeartbeat, processTransactionCommittedEvent, processTransactionStartedEvent
-
-
-
-
Field Detail
-
LOGGER
private static final org.slf4j.Logger LOGGER
-
signalWindowStatement
private final String signalWindowStatement
-
-
Constructor Detail
-
SignalBasedIncrementalSnapshotChangeEventSource
public SignalBasedIncrementalSnapshotChangeEventSource(RelationalDatabaseConnectorConfig config, JdbcConnection jdbcConnection, EventDispatcher<P,T> dispatcher, DatabaseSchema<?> databaseSchema, Clock clock, SnapshotProgressListener<P> progressListener, DataChangeEventListener<P> dataChangeEventListener)
-
-
Method Detail
-
processMessage
public void processMessage(Partition partition, DataCollectionId dataCollectionId, Object key, OffsetContext offsetContext)
-
emitWindowOpen
protected void emitWindowOpen() throws SQLExceptionDescription copied from class:AbstractIncrementalSnapshotChangeEventSourceUpdate low watermark for the incremental snapshot chunk- Specified by:
emitWindowOpenin classAbstractIncrementalSnapshotChangeEventSource<P extends Partition,T extends DataCollectionId>- Throws:
SQLException
-
emitWindowClose
protected void emitWindowClose(Partition partition) throws SQLException
Description copied from class:AbstractIncrementalSnapshotChangeEventSourceUpdate high watermark for the incremental snapshot chunk- Specified by:
emitWindowClosein classAbstractIncrementalSnapshotChangeEventSource<P extends Partition,T extends DataCollectionId>- Throws:
SQLException
-
-