Skip to content

Commit cc16d65

Browse files
author
Brennon York
committed
Merge remote-tracking branch 'upstream/master' into SPARK-4600
2 parents 66818b9 + ea3d2ee commit cc16d65

File tree

352 files changed

+13395
-4246
lines changed

Some content is hidden

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

352 files changed

+13395
-4246
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

LICENSE

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -771,6 +771,22 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
771771
See the License for the specific language governing permissions and
772772
limitations under the License.
773773

774+
========================================================================
775+
For TestTimSort (core/src/test/java/org/apache/spark/util/collection/TestTimSort.java):
776+
========================================================================
777+
Copyright (C) 2015 Stijn de Gouw
778+
779+
Licensed under the Apache License, Version 2.0 (the "License");
780+
you may not use this file except in compliance with the License.
781+
You may obtain a copy of the License at
782+
783+
http://www.apache.org/licenses/LICENSE-2.0
784+
785+
Unless required by applicable law or agreed to in writing, software
786+
distributed under the License is distributed on an "AS IS" BASIS,
787+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
788+
See the License for the specific language governing permissions and
789+
limitations under the License.
774790

775791
========================================================================
776792
For LimitedInputStream

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
@@ -20,7 +20,7 @@
2020
<modelVersion>4.0.0</modelVersion>
2121
<parent>
2222
<groupId>org.apache.spark</groupId>
23-
<artifactId>spark-parent</artifactId>
23+
<artifactId>spark-parent_2.10</artifactId>
2424
<version>1.3.0-SNAPSHOT</version>
2525
<relativePath>../pom.xml</relativePath>
2626
</parent>
@@ -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
@@ -20,7 +20,7 @@
2020
<modelVersion>4.0.0</modelVersion>
2121
<parent>
2222
<groupId>org.apache.spark</groupId>
23-
<artifactId>spark-parent</artifactId>
23+
<artifactId>spark-parent_2.10</artifactId>
2424
<version>1.3.0-SNAPSHOT</version>
2525
<relativePath>../pom.xml</relativePath>
2626
</parent>

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)