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
77cedf81
Commit
77cedf81
authored
11 years ago
by
Haoyuan Li
Browse files
Options
Downloads
Patches
Plain Diff
add tachyon module
parent
3efc0195
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
-7
8 additions, 7 deletions
ec2/spark_ec2.py
with
8 additions
and
7 deletions
ec2/spark_ec2.py
+
8
−
7
View file @
77cedf81
...
...
@@ -72,12 +72,12 @@ def parse_args():
parser
.
add_option
(
"
-a
"
,
"
--ami
"
,
help
=
"
Amazon Machine Image ID to use
"
)
parser
.
add_option
(
"
-v
"
,
"
--spark-version
"
,
default
=
"
0.8.0
"
,
help
=
"
Version of Spark to use:
'
X.Y.Z
'
or a specific git hash
"
)
parser
.
add_option
(
"
--spark-git-repo
"
,
parser
.
add_option
(
"
--spark-git-repo
"
,
default
=
"
https://github.com/apache/incubator-spark
"
,
help
=
"
Github repo from which to checkout supplied commit hash
"
)
parser
.
add_option
(
"
--hadoop-major-version
"
,
default
=
"
1
"
,
help
=
"
Major version of Hadoop (default: 1)
"
)
parser
.
add_option
(
"
-D
"
,
metavar
=
"
[ADDRESS:]PORT
"
,
dest
=
"
proxy_port
"
,
parser
.
add_option
(
"
-D
"
,
metavar
=
"
[ADDRESS:]PORT
"
,
dest
=
"
proxy_port
"
,
help
=
"
Use SSH dynamic port forwarding to create a SOCKS proxy at
"
+
"
the given local address (for use with login)
"
)
parser
.
add_option
(
"
--resume
"
,
action
=
"
store_true
"
,
default
=
False
,
...
...
@@ -191,7 +191,7 @@ def get_spark_ami(opts):
instance_type
=
"
pvm
"
print
>>
stderr
,
\
"
Don
'
t recognize %s, assuming type is pvm
"
%
opts
.
instance_type
ami_path
=
"
%s/%s/%s
"
%
(
AMI_PREFIX
,
opts
.
region
,
instance_type
)
try
:
ami
=
urllib2
.
urlopen
(
ami_path
).
read
().
strip
()
...
...
@@ -215,6 +215,7 @@ def launch_cluster(conn, opts, cluster_name):
master_group
.
authorize
(
src_group
=
slave_group
)
master_group
.
authorize
(
'
tcp
'
,
22
,
22
,
'
0.0.0.0/0
'
)
master_group
.
authorize
(
'
tcp
'
,
8080
,
8081
,
'
0.0.0.0/0
'
)
master_group
.
authorize
(
'
tcp
'
,
19998
,
19999
,
'
0.0.0.0/0
'
)
master_group
.
authorize
(
'
tcp
'
,
50030
,
50030
,
'
0.0.0.0/0
'
)
master_group
.
authorize
(
'
tcp
'
,
50070
,
50070
,
'
0.0.0.0/0
'
)
master_group
.
authorize
(
'
tcp
'
,
60070
,
60070
,
'
0.0.0.0/0
'
)
...
...
@@ -403,8 +404,8 @@ def setup_cluster(conn, master_nodes, slave_nodes, opts, deploy_ssh_key):
print
slave
.
public_dns_name
ssh_write
(
slave
.
public_dns_name
,
opts
,
[
'
tar
'
,
'
x
'
],
dot_ssh_tar
)
modules
=
[
'
spark
'
,
'
shark
'
,
'
ephemeral-hdfs
'
,
'
persistent-hdfs
'
,
'
mapreduce
'
,
'
spark-standalone
'
]
modules
=
[
'
spark
'
,
'
shark
'
,
'
ephemeral-hdfs
'
,
'
persistent-hdfs
'
,
'
mapreduce
'
,
'
spark-standalone
'
,
'
tachyon
'
]
if
opts
.
hadoop_major_version
==
"
1
"
:
modules
=
filter
(
lambda
x
:
x
!=
"
mapreduce
"
,
modules
)
...
...
@@ -668,12 +669,12 @@ def real_main():
print
"
Terminating slaves...
"
for
inst
in
slave_nodes
:
inst
.
terminate
()
# Delete security groups as well
if
opts
.
delete_groups
:
print
"
Deleting security groups (this will take some time)...
"
group_names
=
[
cluster_name
+
"
-master
"
,
cluster_name
+
"
-slaves
"
]
attempt
=
1
;
while
attempt
<=
3
:
print
"
Attempt %d
"
%
attempt
...
...
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