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
0e375a3c
Commit
0e375a3c
authored
11 years ago
by
Patrick Wendell
Browse files
Options
Downloads
Patches
Plain Diff
Add assmebly plug in links
parent
6371febe
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
docs/quick-start.md
+9
-6
9 additions, 6 deletions
docs/quick-start.md
with
9 additions
and
6 deletions
docs/quick-start.md
+
9
−
6
View file @
0e375a3c
...
@@ -294,12 +294,15 @@ There are a few additional considerations when running jobs on a
...
@@ -294,12 +294,15 @@ There are a few additional considerations when running jobs on a
### Including Your Dependencies
### Including Your Dependencies
If your code depends on other projects, you will need to ensure they are also
If your code depends on other projects, you will need to ensure they are also
present on the slave nodes. The most common way to do this is to create an
present on the slave nodes. A popular approach is to create an
assembly jar (or "uber" jar) containing your code and its dependencies. You
assembly jar (or "uber" jar) containing your code and its dependencies. Both
may then submit the assembly jar when creating a SparkContext object. If you
[
sbt
](
https://github.com/sbt/sbt-assembly
)
and
do this, you should make Spark itself a
`provided`
dependency, since it will
[
Maven
](
http://maven.apache.org/plugins/maven-assembly-plugin/
)
already be present on the slave nodes. It is also possible to submit your
have assembly plugins. When creating assembly jars, list Spark
dependent jars one-by-one when creating a SparkContext.
itself as a
`provided`
dependency; it need not be bundled since it is
already present on the slaves. Once you have an assembled jar,
add it to the SparkContext as shown here. It is also possible to submit
your dependent jars one-by-one when creating a SparkContext.
### Setting Configuration Options
### Setting Configuration Options
Spark includes several configuration options which influence the behavior
Spark includes several configuration options which influence the behavior
...
...
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