[ https://issues.apache.org/jira/browse/FLINK-8345?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16339700#comment-16339700 ]
ASF GitHub Bot commented on FLINK-8345: --------------------------------------- Github user tzulitai commented on a diff in the pull request: https://github.com/apache/flink/pull/5230#discussion_r163936390 --- Diff: flink-runtime/src/main/java/org/apache/flink/runtime/state/OperatorStateHandle.java --- @@ -36,8 +36,9 @@ * The modes that determine how an {@link OperatorStateHandle} is assigned to tasks during restore. */ public enum Mode { - SPLIT_DISTRIBUTE, // The operator state partitions in the state handle are split and distributed to one task each. - BROADCAST // The operator state partitions are broadcast to all task. + SPLIT_DISTRIBUTE, // The operator state partitions in the state handle are split and distributed to one task each. + BROADCAST, // The operator state partitions are broadcasted to all tasks. + UNIFORM_BROADCAST // The operator states are identical, and they are broadcasted to all tasks. --- End diff -- nit: can we either keep with spaces here, or at least tab them so that the 3 comments are aligned? > Iterate over keyed state on broadcast side of connect with broadcast. > --------------------------------------------------------------------- > > Key: FLINK-8345 > URL: https://issues.apache.org/jira/browse/FLINK-8345 > Project: Flink > Issue Type: New Feature > Components: Streaming > Affects Versions: 1.5.0 > Reporter: Kostas Kloudas > Assignee: Kostas Kloudas > Priority: Major > Fix For: 1.5.0 > > -- This message was sent by Atlassian JIRA (v7.6.3#76005)