Github user tzulitai commented on a diff in the pull request:
https://github.com/apache/flink/pull/5393#discussion_r165084584
--- Diff:
flink-connectors/flink-connector-kinesis/src/main/java/org/apache/flink/streaming/connectors/kinesis/FlinkKinesisConsumer.java
---
@@ -93,6 +93,12 @@
/** User supplied deserialization schema to convert Kinesis byte
messages to Flink objects. */
private final KinesisDeserializationSchema<T> deserializer;
+ /**
+ * The function that determines which subtask a shard should be
assigned to.
+ */
+ // TODO: instead of the property, use a factory method that would allow
subclass to access source context?
--- End diff --
Please see my comments below.
---