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
d65d3dd8
Commit
d65d3dd8
authored
11 years ago
by
Patrick Wendell
Browse files
Options
Downloads
Patches
Plain Diff
Fixing syntax error
parent
24777362
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
ec2/spark_ec2.py
+2
-2
2 additions, 2 deletions
ec2/spark_ec2.py
with
2 additions
and
2 deletions
ec2/spark_ec2.py
+
2
−
2
View file @
d65d3dd8
...
@@ -160,7 +160,7 @@ def is_active(instance):
...
@@ -160,7 +160,7 @@ def is_active(instance):
# Return correct versions of Spark and Shark, given the supplied spark version
# Return correct versions of Spark and Shark, given the supplied spark version
def
get_spark_shark_version
(
opts
):
def
get_spark_shark_version
(
opts
):
spark_shark_map
=
[
"
0.7.2
"
,
"
0.7.0
"
]
spark_shark_map
=
{
"
0.7.2
"
:
"
0.7.0
"
}
version
=
opts
.
spark_version
.
replace
(
"
v
"
,
""
)
version
=
opts
.
spark_version
.
replace
(
"
v
"
,
""
)
if
version
not
in
[
"
latest
"
,
"
0.7.2
"
]:
if
version
not
in
[
"
latest
"
,
"
0.7.2
"
]:
print
>>
stderr
,
"
Don
'
t know about spark version: %s
"
%
version
print
>>
stderr
,
"
Don
'
t know about spark version: %s
"
%
version
...
@@ -463,7 +463,7 @@ def setup_standalone_cluster(master, slave_nodes, opts):
...
@@ -463,7 +463,7 @@ def setup_standalone_cluster(master, slave_nodes, opts):
def
setup_spark_cluster
(
master
,
opts
):
def
setup_spark_cluster
(
master
,
opts
):
(
spark_v
,
shark_v
)
=
get_spark_shark_version
(
opts
)
(
spark_v
,
shark_v
)
=
get_spark_shark_version
(
opts
)
ssh
(
master
,
opts
,
"
chmod u+x spark-ec2/setup.sh
"
)
ssh
(
master
,
opts
,
"
chmod u+x spark-ec2/setup.sh
"
)
ssh
(
master
,
opts
,
"
spark-ec2/setup.sh %s %s
"
%
(
spark_v
,
shark_v
))
)
ssh
(
master
,
opts
,
"
spark-ec2/setup.sh %s %s
"
%
(
spark_v
,
shark_v
))
if
opts
.
cluster_type
==
"
mesos
"
:
if
opts
.
cluster_type
==
"
mesos
"
:
print
"
Mesos cluster started at http://%s:8080
"
%
master
print
"
Mesos cluster started at http://%s:8080
"
%
master
elif
opts
.
cluster_type
==
"
standalone
"
:
elif
opts
.
cluster_type
==
"
standalone
"
:
...
...
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