org.apache.hudi.cli.commands.SparkEnvCommand Maven / Gradle / Ivy
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.hudi.cli.commands;
import org.apache.hudi.cli.HoodiePrintHelper;
import org.springframework.shell.standard.ShellComponent;
import org.springframework.shell.standard.ShellMethod;
import org.springframework.shell.standard.ShellOption;
import java.util.HashMap;
import java.util.Map;
/**
* CLI command to set and show spark launcher init env.
*/
@ShellComponent
public class SparkEnvCommand {
public static Map env = new HashMap<>();
@ShellMethod(key = "set", value = "Set spark launcher env to cli")
public void setEnv(@ShellOption(value = {"--conf"}, help = "Env config to be set") final String confMap) {
String[] map = confMap.split("=");
if (map.length != 2) {
throw new IllegalArgumentException("Illegal set parameter, please use like [set --conf SPARK_HOME=/usr/etc/spark]");
}
env.put(map[0].trim(), map[1].trim());
System.setProperty(map[0].trim(), map[1].trim());
}
@ShellMethod(key = "show envs all", value = "Show spark launcher envs")
public String showAllEnv() {
String[][] rows = new String[env.size()][2];
int i = 0;
for (Map.Entry entry : env.entrySet()) {
rows[i] = new String[] {entry.getKey(), entry.getValue()};
i++;
}
return HoodiePrintHelper.print(new String[] {"key", "value"}, rows);
}
@ShellMethod(key = "show env", value = "Show spark launcher env by key")
public String showEnvByKey(@ShellOption(value = {"--key"}, help = "Which env conf want to show") final String key) {
if (key == null || key.isEmpty()) {
return showAllEnv();
} else {
return HoodiePrintHelper.print(new String[] {"key", "value"}, new String[][] {new String[] {key, env.getOrDefault(key, "")}});
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy