Repository: spark
Updated Branches:
  refs/heads/master ff1915e12 -> 412262346


[EC2] [SPARK-6600] Open ports in ec2/spark_ec2.py to allow HDFS NFS gateway

Authorizes incoming access to master on the ports required to use the hadoop 
hdfs nfs gateway from outside the cluster.

Author: Florian Verhein <florian.verh...@gmail.com>

Closes #5257 from florianverhein/master and squashes the following commits:

72a586a [Florian Verhein] [EC2] [SPARK-6600] initial impl


Project: http://git-wip-us.apache.org/repos/asf/spark/repo
Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/41226234
Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/41226234
Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/41226234

Branch: refs/heads/master
Commit: 412262346f6f48e641bd6899c703efa31aeaba1e
Parents: ff1915e
Author: Florian Verhein <florian.verh...@gmail.com>
Authored: Wed Apr 1 11:10:43 2015 +0100
Committer: Sean Owen <so...@cloudera.com>
Committed: Wed Apr 1 11:10:43 2015 +0100

----------------------------------------------------------------------
 ec2/spark_ec2.py | 7 +++++++
 1 file changed, 7 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/spark/blob/41226234/ec2/spark_ec2.py
----------------------------------------------------------------------
diff --git a/ec2/spark_ec2.py b/ec2/spark_ec2.py
index c467cd0..5507a9c 100755
--- a/ec2/spark_ec2.py
+++ b/ec2/spark_ec2.py
@@ -456,6 +456,13 @@ def launch_cluster(conn, opts, cluster_name):
         master_group.authorize('tcp', 50070, 50070, authorized_address)
         master_group.authorize('tcp', 60070, 60070, authorized_address)
         master_group.authorize('tcp', 4040, 4045, authorized_address)
+        # HDFS NFS gateway requires 111,2049,4242 for tcp & udp
+        master_group.authorize('tcp', 111, 111, authorized_address)
+        master_group.authorize('udp', 111, 111, authorized_address)
+        master_group.authorize('tcp', 2049, 2049, authorized_address)
+        master_group.authorize('udp', 2049, 2049, authorized_address)
+        master_group.authorize('tcp', 4242, 4242, authorized_address)
+        master_group.authorize('udp', 4242, 4242, authorized_address)
         if opts.ganglia:
             master_group.authorize('tcp', 5080, 5080, authorized_address)
     if slave_group.rules == []:  # Group was just now created


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@spark.apache.org
For additional commands, e-mail: commits-h...@spark.apache.org

Reply via email to