Repository: spark Updated Branches: refs/heads/branch-1.0 faa0e9f56 -> 3e95225c7
[EC2] Add default history server port to ec2 script Right now I have to open it manually Author: Andrew Or <[email protected]> Closes #1296 from andrewor14/hist-serv-port and squashes the following commits: 8895a1f [Andrew Or] Add default history server port to ec2 script (cherry picked from commit 56e009d4f05d990c60e109838fa70457f97f44aa) Conflicts: ec2/spark_ec2.py Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/3e95225c Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/3e95225c Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/3e95225c Branch: refs/heads/branch-1.0 Commit: 3e95225c7c7cf3cf72b32e4c691333d0d663cec6 Parents: faa0e9f Author: Andrew Or <[email protected]> Authored: Tue Jul 8 16:49:31 2014 +0900 Committer: Patrick Wendell <[email protected]> Committed: Tue Jul 8 16:54:27 2014 +0900 ---------------------------------------------------------------------- ec2/spark_ec2.py | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/spark/blob/3e95225c/ec2/spark_ec2.py ---------------------------------------------------------------------- diff --git a/ec2/spark_ec2.py b/ec2/spark_ec2.py index d89ef34..ec3d144 100755 --- a/ec2/spark_ec2.py +++ b/ec2/spark_ec2.py @@ -248,6 +248,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', 18080, 18080, '0.0.0.0/0') master_group.authorize('tcp', 19999, 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')
