Class ReconcilingBinlogReader
java.lang.Object
io.debezium.connector.mysql.legacy.ReconcilingBinlogReader
- All Implemented Interfaces:
Reader
A reader that unifies the binlog positions of two binlog readers.
To do this, at start time we evaluate the (now completed) states of the two binlog
readers we want to unify, and create a new
BinlogReader duplicating the
lagging reader, but with a halting predicate that will halt it once it has passed the
final position of the leading reader.-
Nested Class Summary
Nested ClassesModifier and TypeClassDescription(package private) static classA Predicate that returns false for any record beyond a given offset.Nested classes/interfaces inherited from interface io.debezium.connector.mysql.legacy.Reader
Reader.State -
Field Summary
FieldsModifier and TypeFieldDescriptionprivate Booleanprivate final BinlogReaderprivate final BinlogReaderprivate final AtomicBooleanprivate static final org.slf4j.Loggerprivate final AtomicReference<MySqlPartition>private BinlogReaderprivate final AtomicBooleanprivate final longprivate final BinlogReaderprivate final AtomicReference<Consumer<MySqlPartition>> -
Constructor Summary
ConstructorsConstructorDescriptionReconcilingBinlogReader(BinlogReader binlogReaderA, BinlogReader binlogReaderB, BinlogReader unifiedReader, long serverId) Create a reconciling Binlog Reader. -
Method Summary
Modifier and TypeMethodDescriptionprivate voidprivate voidprivate void(package private) BinlogReader(package private) BinlogReadername()Get the name of this reader.List<org.apache.kafka.connect.source.SourceRecord>poll()Poll for the next batch of source records.private voidvoidstart(MySqlPartition partition) Start the reader and return immediately.state()Get the current state of this reader.voidstop()Stop the reader from running and transition to theReader.State.STOPPINGstate until all remaining records areconsumed, at which point its state transitions toReader.State.STOPPED.voiduponCompletion(Consumer<MySqlPartition> handler) Set the function that should be called when this reader transitions from theReader.State.STOPPINGtoReader.State.STOPPEDstate, which is after all generated records have been consumed via thepollmethod.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface io.debezium.connector.mysql.legacy.Reader
destroy, initialize
-
Field Details
-
LOGGER
private static final org.slf4j.Logger LOGGER -
binlogReaderA
-
binlogReaderB
-
unifiedReader
-
reconcilingReader
-
aReaderLeading
-
partition
-
running
-
completed
-
uponCompletion
-
serverId
private final long serverId
-
-
Constructor Details
-
ReconcilingBinlogReader
public ReconcilingBinlogReader(BinlogReader binlogReaderA, BinlogReader binlogReaderB, BinlogReader unifiedReader, long serverId) Create a reconciling Binlog Reader.- Parameters:
binlogReaderA- the first binlog reader to unify.binlogReaderB- the second binlog reader to unify.unifiedReader- the final, unified binlog reader that will run once the reconciliation is complete.
-
-
Method Details
-
name
Description copied from interface:ReaderGet the name of this reader. -
state
Description copied from interface:ReaderGet the current state of this reader. -
uponCompletion
Description copied from interface:ReaderSet the function that should be called when this reader transitions from theReader.State.STOPPINGtoReader.State.STOPPEDstate, which is after all generated records have been consumed via thepollmethod.This method should only be called while the reader is in the
Reader.State.STOPPEDstate.- Specified by:
uponCompletionin interfaceReader- Parameters:
handler- the function; may not be null
-
start
Description copied from interface:ReaderStart the reader and return immediately. Once started, theSourceRecords generated by the reader can be obtained by periodically callingReader.poll()until that method returnsnull.This method does nothing if it is already running.
-
stop
public void stop()Description copied from interface:ReaderStop the reader from running and transition to theReader.State.STOPPINGstate until all remaining records areconsumed, at which point its state transitions toReader.State.STOPPED. -
poll
Description copied from interface:ReaderPoll for the next batch of source records. This method returnsnullonly when all records generated by this reader have been processed, following the natural or explicitstoppingof this reader. Note that this method may block if no additional records are available but the reader may produce more, thus callers should call this method continually until this method returnsnull.- Specified by:
pollin interfaceReader- Returns:
- the list of source records that may or may not be empty; or
nullwhen there will be no more records because the reader has completelyReader.State.STOPPED. - Throws:
InterruptedException- if this thread is interrupted while waiting for more records
-
completeSuccessfully
private void completeSuccessfully() -
setupUnifiedReader
private void setupUnifiedReader() -
determineLeadingReader
private void determineLeadingReader() -
getLeadingReader
BinlogReader getLeadingReader() -
getLaggingReader
BinlogReader getLaggingReader() -
checkLaggingLeadingInfo
private void checkLaggingLeadingInfo()
-