Class ParallelSmtAndConvertAsyncConsumerProcessor<R>

java.lang.Object
io.debezium.embedded.async.AbstractRecordProcessor<R>
io.debezium.embedded.async.ParallelSmtAndConvertAsyncConsumerProcessor<R>
All Implemented Interfaces:
RecordProcessor<R>

public class ParallelSmtAndConvertAsyncConsumerProcessor<R> extends AbstractRecordProcessor<R>
RecordProcessor which transforms and converts the records in parallel. Records are passed to the user-provided Consumer in arbitrary order, once they are processed. This processor should be used when user provides only custom Consumer, records should be converted and passed to the consumer in arbitrary order.
Author:
vjuranek
  • Field Details

    • LOGGER

      private static final org.slf4j.Logger LOGGER
    • committer

      final io.debezium.engine.DebeziumEngine.RecordCommitter committer
    • consumer

      final Consumer<R> consumer
    • convertor

      final Function<org.apache.kafka.connect.source.SourceRecord,R> convertor
  • Constructor Details

    • ParallelSmtAndConvertAsyncConsumerProcessor

      ParallelSmtAndConvertAsyncConsumerProcessor(io.debezium.engine.DebeziumEngine.RecordCommitter committer, Consumer<R> consumer, Function<org.apache.kafka.connect.source.SourceRecord,R> convertor)
  • Method Details

    • processRecords

      public void processRecords(List<org.apache.kafka.connect.source.SourceRecord> records) throws Exception
      Description copied from interface: RecordProcessor
      Processes a batch of records provided by the source connector. Implementations are assumed to use DebeziumEngine.RecordCommitter to appropriately commit individual records and the batch itself.
      Specified by:
      processRecords in interface RecordProcessor<R>
      Specified by:
      processRecords in class AbstractRecordProcessor<R>
      Parameters:
      records - List of SourceRecord provided by the source connector to be processed.
      Throws:
      Exception - Any exception is propagated to the caller.