cuspymd commented on a change in pull request #4155: URL: https://github.com/apache/zeppelin/pull/4155#discussion_r657808375
########## File path: zeppelin-plugins/launcher/flink/src/main/java/org/apache/zeppelin/interpreter/launcher/FlinkInterpreterLauncher.java ########## @@ -66,6 +69,30 @@ public FlinkInterpreterLauncher(ZeppelinConfiguration zConf, RecoveryStorage rec return envs; } + // do mapping between configuration of different execution modes. + private void normalizeConfiguration(InterpreterLaunchContext context) { + Properties intpProperties = context.getProperties(); + setNewProperty(intpProperties, "flink.jm.memory", "jobmanager.memory.process.size", true); + setNewProperty(intpProperties, "flink.tm.memory", "taskmanager.memory.process.size", true); + setNewProperty(intpProperties, "flink.tm.slot", "taskmanager.numberOfTaskSlots", false); + setNewProperty(intpProperties, "flink.yarn.appName", "yarn.application.name", false); + setNewProperty(intpProperties, "flink.yarn.queue", "yarn.application.queue", false); + } + + private void setNewProperty(Properties properties, + String oldKey, + String newKey, + boolean isMemoryProperty) { + String value = properties.getProperty(oldKey); + if (StringUtils.isNotBlank(value) && !properties.containsKey(newKey)) { + if (isMemoryProperty) { + properties.put(newKey, value + "mb"); + } else { + properties.put(newKey, value); + } + } Review comment: If the value of `newKey` exists already, is it not necessary to append "mb" to it? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org