Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
spark
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cs525-sp18-g07
spark
Commits
d92d3f79
Commit
d92d3f79
authored
11 years ago
by
Matei Zaharia
Browse files
Options
Downloads
Patches
Plain Diff
Fix resolution of example code with Maven builds
parent
1ef5d0d2
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
run
+6
-2
6 additions, 2 deletions
run
with
6 additions
and
2 deletions
run
+
6
−
2
View file @
d92d3f79
...
...
@@ -132,10 +132,14 @@ if [ -e "$FWDIR/lib_managed" ]; then
CLASSPATH
=
"
$CLASSPATH
:
$FWDIR
/lib_managed/bundles/*"
fi
CLASSPATH
=
"
$CLASSPATH
:
$REPL_DIR
/lib/*"
# Add the shaded JAR for Maven builds
if
[
-e
$REPL_BIN_DIR
/target
]
;
then
for
jar
in
`
find
"
$REPL_BIN_DIR
/target"
-name
'spark-repl-*-shaded-hadoop*.jar'
`
;
do
CLASSPATH
=
"
$CLASSPATH
:
$jar
"
done
# The shaded JAR doesn't contain examples, so include those separately
EXAMPLES_JAR
=
`
ls
"
$EXAMPLES_DIR
/target/spark-examples"
*
[
0-9T].jar
`
CLASSPATH+
=
":
$EXAMPLES_JAR
"
fi
CLASSPATH
=
"
$CLASSPATH
:
$BAGEL_DIR
/target/scala-
$SCALA_VERSION
/classes"
for
jar
in
`
find
$PYSPARK_DIR
/lib
-name
'*jar'
`
;
do
...
...
@@ -148,9 +152,9 @@ if [ -e "$EXAMPLES_DIR/target/scala-$SCALA_VERSION/spark-examples"*[0-9T].jar ];
# Use the JAR from the SBT build
export
SPARK_EXAMPLES_JAR
=
`
ls
"
$EXAMPLES_DIR
/target/scala-
$SCALA_VERSION
/spark-examples"
*
[
0-9T].jar
`
fi
if
[
-e
"
$EXAMPLES_DIR
/target/spark-examples
-
"
*
hadoop[12
].jar
]
;
then
if
[
-e
"
$EXAMPLES_DIR
/target/spark-examples"
*
[
0-9T
].jar
]
;
then
# Use the JAR from the Maven build
export
SPARK_EXAMPLES_JAR
=
`
ls
"
$EXAMPLES_DIR
/target/spark-examples
-
"
*
hadoop[12
].jar
`
export
SPARK_EXAMPLES_JAR
=
`
ls
"
$EXAMPLES_DIR
/target/spark-examples"
*
[
0-9T
].jar
`
fi
# Add hadoop conf dir - else FileSystem.*, etc fail !
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment