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
03d84799
Commit
03d84799
authored
12 years ago
by
Matei Zaharia
Browse files
Options
Downloads
Plain Diff
Merge pull request #477 from shivaram/ganglia-port-change
Ganglia port change
parents
7151e1e4
6cba5a48
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
ec2/spark_ec2.py
+8
-1
8 additions, 1 deletion
ec2/spark_ec2.py
with
8 additions
and
1 deletion
ec2/spark_ec2.py
+
8
−
1
View file @
03d84799
...
...
@@ -179,7 +179,7 @@ def launch_cluster(conn, opts, cluster_name):
if
opts
.
cluster_type
==
"
mesos
"
:
master_group
.
authorize
(
'
tcp
'
,
38090
,
38090
,
'
0.0.0.0/0
'
)
if
opts
.
ganglia
:
master_group
.
authorize
(
'
tcp
'
,
80
,
80
,
'
0.0.0.0/0
'
)
master_group
.
authorize
(
'
tcp
'
,
50
80
,
50
80
,
'
0.0.0.0/0
'
)
if
slave_group
.
rules
==
[]:
# Group was just now created
slave_group
.
authorize
(
src_group
=
master_group
)
slave_group
.
authorize
(
src_group
=
slave_group
)
...
...
@@ -415,6 +415,13 @@ def setup_standalone_cluster(master, slave_nodes, opts):
def
setup_spark_cluster
(
master
,
opts
):
ssh
(
master
,
opts
,
"
chmod u+x spark-ec2/setup.sh
"
)
ssh
(
master
,
opts
,
"
spark-ec2/setup.sh
"
)
if
opts
.
cluster_type
==
"
mesos
"
:
print
"
Mesos cluster started at http://%s:8080
"
%
master
elif
opts
.
cluster_type
==
"
standalone
"
:
print
"
Spark standalone cluster started at http://%s:8080
"
%
master
if
opts
.
ganglia
:
print
"
Ganglia started at http://%s:5080/ganglia
"
%
master
# Wait for a whole cluster (masters, slaves and ZooKeeper) to start up
...
...
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