Github user tillrohrmann commented on a diff in the pull request:
https://github.com/apache/flink/pull/5593#discussion_r171176203
--- Diff:
flink-yarn/src/main/java/org/apache/flink/yarn/AbstractYarnClusterDescriptor.java
---
@@ -321,6 +323,14 @@ public void setZookeeperNamespace(String
zookeeperNamespace) {
this.zookeeperNamespace = zookeeperNamespace;
}
+ public String getNodeLabel() {
+ return nodeLabel;
+ }
+
+ public void setNodeLabel(String nodeLabel) {
+ this.nodeLabel = nodeLabel;
+ }
--- End diff --
We should get rid of this setter pattern. All values should be set at
creation time of the `AbstractYarnClusterDescriptor`.
---