Github user mxm commented on a diff in the pull request: https://github.com/apache/flink/pull/1591#discussion_r52102026 --- Diff: flink-contrib/flink-storm/src/main/java/org/apache/flink/storm/wrappers/StormTuple.java --- @@ -41,55 +39,61 @@ */ public class StormTuple<IN> implements backtype.storm.tuple.Tuple { - /** The Storm representation of the original Flink tuple */ + /** The Storm representation of the original Flink tuple. */ private final Values stormTuple; - /** The schema (ie, ordered field names) of the tuple */ + /** The schema (ie, ordered field names) of this tuple. */ private final Fields schema; - - /** The task id where this tuple is processed */ - private final int taskId; - /** The producer of this tuple */ + /** The task ID where this tuple was produced. */ + private final int producerTaskId; + /** The input stream from which this tuple was received. */ private final String producerStreamId; - /** The producer's component id of this tuple */ + /** The producer's component ID of this tupl.e */ --- End diff -- typo
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. ---