dawidwys commented on a change in pull request #7041: [FLINK-9002] [e2e] Add
operators with input type that goes through Avro serialization
URL: https://github.com/apache/flink/pull/7041#discussion_r231493564
##########
File path:
flink-end-to-end-tests/flink-datastream-allround-test/src/main/java/org/apache/flink/streaming/tests/DataStreamAllroundTestProgram.java
##########
@@ -143,6 +148,30 @@ public void apply(Integer integer, TimeWindow window,
Iterable<Event> input, Col
}
}).name(TIME_WINDOW_OPER_NAME);
+ // test operator input serialization with Avro specific records
as the input type
+ eventStream3 = testSpecificOperatorInputTypeSerialization(
+ eventStream3,
+ in -> new AvroEvent(in.getKey(), in.getEventTime(),
in.getSequenceNumber(), in.getPayload()),
+ in -> new Event(in.getKey(), in.getEventTime(),
in.getSequenceNumber(), in.getPayload()),
+ AvroEvent::getKey,
+ "Avro (Specific)");
+
+ // test operator input serialization with Avro generic records
as the input type
+ eventStream3 = testSpecificOperatorInputTypeSerialization(
+ eventStream3,
+ in -> {
+ GenericRecord record = new
GenericData.Record(AvroEvent.SCHEMA$);
Review comment:
Could we use `GenericRecordBuilder` here? I think it is a safer way to
construct `GenericRecord`.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services