use of org.apache.inlong.sort.protocol.serialization.DebeziumSerializationInfo in project incubator-inlong by apache.
the class RowToDebeziumJsonKafkaSinkTest method prepareData.
@Override
protected void prepareData() throws IOException, ClassNotFoundException {
topic = "test_kafka_row_to_debezium";
fieldInfos = new FieldInfo[] { new FieldInfo("f1", new StringFormatInfo()), new FieldInfo("f2", new IntFormatInfo()) };
serializationSchema = SerializationSchemaFactory.build(fieldInfos, new DebeziumSerializationInfo("sql", "literal", "null", true));
prepareTestData();
}
use of org.apache.inlong.sort.protocol.serialization.DebeziumSerializationInfo in project incubator-inlong by apache.
the class SerializationUtils method serializeForKafka.
/**
* Get serialization info for Kafka
*/
private static SerializationInfo serializeForKafka(SourceResponse sourceResponse, KafkaSinkResponse sinkResponse) {
String serializationType = sinkResponse.getSerializationType();
DataTypeEnum dataType = DataTypeEnum.forName(serializationType);
switch(dataType) {
case AVRO:
return new AvroSerializationInfo();
case JSON:
return new JsonSerializationInfo();
case CANAL:
return new CanalSerializationInfo();
case DEBEZIUM_JSON:
Assert.isInstanceOf(BinlogSourceResponse.class, sourceResponse, "Unsupported serializationType for Kafka");
BinlogSourceResponse binlogSource = (BinlogSourceResponse) sourceResponse;
return new DebeziumSerializationInfo(binlogSource.getTimestampFormatStandard(), "FAIL", "", false);
default:
throw new IllegalArgumentException(String.format("Unsupported serializationType for Kafka sink: %s", serializationType));
}
}
Aggregations