public class DebeziumIO
extends java.lang.Object
read() and a Debezium configuration.
 This class lets Beam users connect to their existing Debezium implementations in an easy way.
Any Kafka connector supported by Debezium should work fine with this IO.
The following connectors were tested and worked well in some simple scenarios:
Connect to a Debezium - MySQL database and run a Pipeline
     private static final ConnectorConfiguration mySqlConnectorConfig = ConnectorConfiguration
             .create()
             .withUsername("uname")
             .withPassword("pwd123")
             .withHostName("127.0.0.1")
             .withPort("3306")
             .withConnectorClass(MySqlConnector.class)
             .withConnectionProperty("database.server.id", "184054")
             .withConnectionProperty("database.server.name", "serverid")
             .withConnectionProperty("database.include.list", "dbname")
             .withConnectionProperty("database.history", DebeziumSDFDatabaseHistory.class.getName())
             .withConnectionProperty("include.schema.changes", "false");
      PipelineOptions options = PipelineOptionsFactory.create();
      Pipeline p = Pipeline.create(options);
      p.apply(DebeziumIO.read()
               .withConnectorConfiguration(mySqlConnectorConfig)
               .withFormatFunction(new SourceRecordJson.SourceRecordJsonMapper())
       ).setCoder(StringUtf8Coder.of());
       p.run().waitUntilFinish();
 
 In this example we are using KafkaSourceConsumerFn.DebeziumSDFDatabaseHistory to
 handle the Database history.
 
User may work with any of the supported Debezium Connectors above mentioned
See Debezium Connectors for more info.
| Modifier and Type | Class and Description | 
|---|---|
| static class  | DebeziumIO.ConnectorConfigurationA POJO describing a Debezium configuration. | 
| static class  | DebeziumIO.Read<T>Implementation of  read(). | 
| Modifier and Type | Method and Description | 
|---|---|
| static <T> DebeziumIO.Read<T> | read()Read data from a Debezium source. | 
| static DebeziumIO.Read<java.lang.String> | readAsJson()Read data from Debezium source and convert a Kafka  SourceRecordinto a JSON string usingSourceRecordJson.SourceRecordJsonMapperas default function
 mapper. | 
public static <T> DebeziumIO.Read<T> read()
T - Type of the data to be read.public static DebeziumIO.Read<java.lang.String> readAsJson()
SourceRecord into a JSON string using SourceRecordJson.SourceRecordJsonMapper as default function
 mapper.