We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 304333a commit 28b1434Copy full SHA for 28b1434
launcher/src/main/java/org/apache/spark/launcher/CommandBuilder.java
@@ -26,6 +26,14 @@
26
*/
27
interface CommandBuilder {
28
29
+ /**
30
+ * Builds the command like to execute.
31
+ *
32
+ * @param env A map containing environment variables for the child process. It may already contain
33
+ * entries defined by the user (such as SPARK_HOME, or those defined by the
34
+ * SparkLauncher constructor that takes an environment), and may be modified to
35
+ * include other variables needed by the process to be executed.
36
+ */
37
List<String> buildCommand(Map<String, String> env) throws IOException;
38
39
}
0 commit comments