You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@impala.apache.org by jo...@apache.org on 2019/06/11 20:01:59 UTC

[impala] 02/05: IMPALA-8623: Expose HS2 HTTP port in containers

This is an automated email from the ASF dual-hosted git repository.

joemcdonnell pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/impala.git

commit 564def2dabec5209525514f4c2ef77992550e42f
Author: Tim Armstrong <ta...@cloudera.com>
AuthorDate: Wed Jun 5 12:06:01 2019 -0700

    IMPALA-8623: Expose HS2 HTTP port in containers
    
    Testing:
    Ran dockerised test cluster locally, checked
    that ports were mapped as expected.
    
    Change-Id: Iece20bc134fa5867f18b166cee2a2f75b21f9f36
    Reviewed-on: http://gerrit.cloudera.org:8080/13520
    Reviewed-by: Tim Armstrong <ta...@cloudera.com>
    Tested-by: Impala Public Jenkins <im...@cloudera.com>
---
 docker/coord_exec/Dockerfile  | 2 ++
 docker/coordinator/Dockerfile | 2 ++
 2 files changed, 4 insertions(+)

diff --git a/docker/coord_exec/Dockerfile b/docker/coord_exec/Dockerfile
index d1893b9..eeb1163 100644
--- a/docker/coord_exec/Dockerfile
+++ b/docker/coord_exec/Dockerfile
@@ -22,6 +22,8 @@ FROM impala_base
 EXPOSE 21000
 # HS2
 EXPOSE 21050
+# HS2 over HTTP
+EXPOSE 28000
 # Debug webserver
 EXPOSE 25000
 
diff --git a/docker/coordinator/Dockerfile b/docker/coordinator/Dockerfile
index f4744c2..22ea7d7 100644
--- a/docker/coordinator/Dockerfile
+++ b/docker/coordinator/Dockerfile
@@ -22,6 +22,8 @@ FROM impala_base
 EXPOSE 21000
 # HS2
 EXPOSE 21050
+# HS2 over HTTP
+EXPOSE 28000
 # Debug webserver
 EXPOSE 25000