Skip to content

Commit 852a727

Browse files
committed
merged with upstream master
2 parents a22d670 + 25e271d commit 852a727

File tree

446 files changed

+10995
-4039
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

446 files changed

+10995
-4039
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
*.iml
77
*.iws
88
*.pyc
9+
*.pyo
910
.idea/
1011
.idea_modules/
1112
build/*.jar

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ storage systems. Because the protocols have changed in different versions of
8585
Hadoop, you must build Spark against the same version that your cluster runs.
8686

8787
Please refer to the build documentation at
88-
["Specifying the Hadoop Version"](http://spark.apache.org/docs/latest/building-with-maven.html#specifying-the-hadoop-version)
88+
["Specifying the Hadoop Version"](http://spark.apache.org/docs/latest/building-spark.html#specifying-the-hadoop-version)
8989
for detailed guidance on building for a particular distribution of Hadoop, including
9090
building for particular Hive and Hive Thriftserver distributions. See also
9191
["Third Party Hadoop Distributions"](http://spark.apache.org/docs/latest/hadoop-third-party-distributions.html)

assembly/pom.xml

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>org.apache.spark</groupId>
2323
<artifactId>spark-parent_2.10</artifactId>
24-
<version>1.3.0-SNAPSHOT</version>
24+
<version>1.4.0-SNAPSHOT</version>
2525
<relativePath>../pom.xml</relativePath>
2626
</parent>
2727

@@ -114,16 +114,6 @@
114114
<exclude>META-INF/*.RSA</exclude>
115115
</excludes>
116116
</filter>
117-
<filter>
118-
<!-- Exclude libgfortran, libgcc for license issues -->
119-
<artifact>org.jblas:jblas</artifact>
120-
<excludes>
121-
<!-- Linux amd64 is OK; not statically linked -->
122-
<exclude>lib/static/Linux/i386/**</exclude>
123-
<exclude>lib/static/Mac OS X/**</exclude>
124-
<exclude>lib/static/Windows/**</exclude>
125-
</excludes>
126-
</filter>
127117
</filters>
128118
</configuration>
129119
<executions>

bagel/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>org.apache.spark</groupId>
2323
<artifactId>spark-parent_2.10</artifactId>
24-
<version>1.3.0-SNAPSHOT</version>
24+
<version>1.4.0-SNAPSHOT</version>
2525
<relativePath>../pom.xml</relativePath>
2626
</parent>
2727

bin/compute-classpath.cmd

Lines changed: 0 additions & 124 deletions
This file was deleted.

bin/compute-classpath.sh

Lines changed: 0 additions & 161 deletions
This file was deleted.

bin/load-spark-env.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@ fi
4141

4242
if [ -z "$SPARK_SCALA_VERSION" ]; then
4343

44-
ASSEMBLY_DIR2="$FWDIR/assembly/target/scala-2.11"
45-
ASSEMBLY_DIR1="$FWDIR/assembly/target/scala-2.10"
46-
44+
ASSEMBLY_DIR2="$SPARK_HOME/assembly/target/scala-2.11"
45+
ASSEMBLY_DIR1="$SPARK_HOME/assembly/target/scala-2.10"
46+
4747
if [[ -d "$ASSEMBLY_DIR2" && -d "$ASSEMBLY_DIR1" ]]; then
4848
echo -e "Presence of build for both scala versions(SCALA 2.10 and SCALA 2.11) detected." 1>&2
4949
echo -e 'Either clean one of them or, export SPARK_SCALA_VERSION=2.11 in spark-env.sh.' 1>&2
@@ -54,5 +54,5 @@ if [ -z "$SPARK_SCALA_VERSION" ]; then
5454
export SPARK_SCALA_VERSION="2.11"
5555
else
5656
export SPARK_SCALA_VERSION="2.10"
57-
fi
57+
fi
5858
fi

0 commit comments

Comments
 (0)