aboutsummaryrefslogtreecommitdiff
path: root/launcher/src/main
diff options
context:
space:
mode:
Diffstat (limited to 'launcher/src/main')
-rw-r--r--launcher/src/main/java/org/apache/spark/launcher/AbstractCommandBuilder.java99
1 files changed, 22 insertions, 77 deletions
diff --git a/launcher/src/main/java/org/apache/spark/launcher/AbstractCommandBuilder.java b/launcher/src/main/java/org/apache/spark/launcher/AbstractCommandBuilder.java
index 2da5f72787..d8279145d8 100644
--- a/launcher/src/main/java/org/apache/spark/launcher/AbstractCommandBuilder.java
+++ b/launcher/src/main/java/org/apache/spark/launcher/AbstractCommandBuilder.java
@@ -86,10 +86,14 @@ abstract class AbstractCommandBuilder {
*/
List<String> buildJavaCommand(String extraClassPath) throws IOException {
List<String> cmd = new ArrayList<String>();
- if (javaHome == null) {
- cmd.add(join(File.separator, System.getProperty("java.home"), "bin", "java"));
- } else {
+ String envJavaHome;
+
+ if (javaHome != null) {
cmd.add(join(File.separator, javaHome, "bin", "java"));
+ } else if ((envJavaHome = System.getenv("JAVA_HOME")) != null) {
+ cmd.add(join(File.separator, envJavaHome, "bin", "java"));
+ } else {
+ cmd.add(join(File.separator, System.getProperty("java.home"), "bin", "java"));
}
// Load extra JAVA_OPTS from conf/java-opts, if it exists.
@@ -182,59 +186,25 @@ abstract class AbstractCommandBuilder {
addToClassPath(cp, String.format("%s/core/target/jars/*", sparkHome));
}
- String assembly = findAssembly();
+ final String assembly = AbstractCommandBuilder.class.getProtectionDomain().getCodeSource().
+ getLocation().getPath();
addToClassPath(cp, assembly);
- // When Hive support is needed, Datanucleus jars must be included on the classpath. Datanucleus
- // jars do not work if only included in the uber jar as plugin.xml metadata is lost. Both sbt
- // and maven will populate "lib_managed/jars/" with the datanucleus jars when Spark is built
- // with Hive, so first check if the datanucleus jars exist, and then ensure the current Spark
- // assembly is built for Hive, before actually populating the CLASSPATH with the jars.
- //
- // This block also serves as a check for SPARK-1703, when the assembly jar is built with
- // Java 7 and ends up with too many files, causing issues with other JDK versions.
- boolean needsDataNucleus = false;
- JarFile assemblyJar = null;
- try {
- assemblyJar = new JarFile(assembly);
- needsDataNucleus = assemblyJar.getEntry("org/apache/hadoop/hive/ql/exec/") != null;
- } catch (IOException ioe) {
- if (ioe.getMessage().indexOf("invalid CEN header") >= 0) {
- System.err.println(
- "Loading Spark jar failed.\n" +
- "This is likely because Spark was compiled with Java 7 and run\n" +
- "with Java 6 (see SPARK-1703). Please use Java 7 to run Spark\n" +
- "or build Spark with Java 6.");
- System.exit(1);
- } else {
- throw ioe;
- }
- } finally {
- if (assemblyJar != null) {
- try {
- assemblyJar.close();
- } catch (IOException e) {
- // Ignore.
- }
- }
+ // Datanucleus jars must be included on the classpath. Datanucleus jars do not work if only
+ // included in the uber jar as plugin.xml metadata is lost. Both sbt and maven will populate
+ // "lib_managed/jars/" with the datanucleus jars when Spark is built with Hive
+ File libdir;
+ if (new File(sparkHome, "RELEASE").isFile()) {
+ libdir = new File(sparkHome, "lib");
+ } else {
+ libdir = new File(sparkHome, "lib_managed/jars");
}
- if (needsDataNucleus) {
- System.err.println("Spark assembly has been built with Hive, including Datanucleus jars " +
- "in classpath.");
- File libdir;
- if (new File(sparkHome, "RELEASE").isFile()) {
- libdir = new File(sparkHome, "lib");
- } else {
- libdir = new File(sparkHome, "lib_managed/jars");
- }
-
- checkState(libdir.isDirectory(), "Library directory '%s' does not exist.",
- libdir.getAbsolutePath());
- for (File jar : libdir.listFiles()) {
- if (jar.getName().startsWith("datanucleus-")) {
- addToClassPath(cp, jar.getAbsolutePath());
- }
+ checkState(libdir.isDirectory(), "Library directory '%s' does not exist.",
+ libdir.getAbsolutePath());
+ for (File jar : libdir.listFiles()) {
+ if (jar.getName().startsWith("datanucleus-")) {
+ addToClassPath(cp, jar.getAbsolutePath());
}
}
@@ -270,7 +240,6 @@ abstract class AbstractCommandBuilder {
if (scala != null) {
return scala;
}
-
String sparkHome = getSparkHome();
File scala210 = new File(sparkHome, "assembly/target/scala-2.10");
File scala211 = new File(sparkHome, "assembly/target/scala-2.11");
@@ -330,30 +299,6 @@ abstract class AbstractCommandBuilder {
return firstNonEmpty(childEnv.get(key), System.getenv(key));
}
- private String findAssembly() {
- String sparkHome = getSparkHome();
- File libdir;
- if (new File(sparkHome, "RELEASE").isFile()) {
- libdir = new File(sparkHome, "lib");
- checkState(libdir.isDirectory(), "Library directory '%s' does not exist.",
- libdir.getAbsolutePath());
- } else {
- libdir = new File(sparkHome, String.format("assembly/target/scala-%s", getScalaVersion()));
- }
-
- final Pattern re = Pattern.compile("spark-assembly.*hadoop.*\\.jar");
- FileFilter filter = new FileFilter() {
- @Override
- public boolean accept(File file) {
- return file.isFile() && re.matcher(file.getName()).matches();
- }
- };
- File[] assemblies = libdir.listFiles(filter);
- checkState(assemblies != null && assemblies.length > 0, "No assemblies found in '%s'.", libdir);
- checkState(assemblies.length == 1, "Multiple assemblies found in '%s'.", libdir);
- return assemblies[0].getAbsolutePath();
- }
-
private String getConfDir() {
String confDir = getenv("SPARK_CONF_DIR");
return confDir != null ? confDir : join(File.separator, getSparkHome(), "conf");