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

fanng pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/gravitino-playground.git


The following commit(s) were added to refs/heads/main by this push:
     new cfd29f3  Change exposed ports to avoid possible conflicts, based on 
last pr (#67)
cfd29f3 is described below

commit cfd29f3700bccfd7c771ef9060d0d6351f9d1108
Author: Shaofeng Shi <[email protected]>
AuthorDate: Fri Aug 23 16:50:56 2024 +0800

    Change exposed ports to avoid possible conflicts, based on last pr (#67)
    
    In the previous PR
    (https://github.com/apache/gravitino-playground/pull/65), xiaojin gave a
    suggestion on the hive container ports, +10000 to avoid conflicts. So I
    raised this PR. Has tested in my local desktop, it has no impacts on the
    playground.
    
    Related issue is:
    https://github.com/apache/gravitino-playground/issues/60
---
 README.md           | 2 +-
 docker-compose.yaml | 6 +++---
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/README.md b/README.md
index f7abd71..bb77f27 100644
--- a/README.md
+++ b/README.md
@@ -34,7 +34,7 @@ The playground runs a number of services. The TCP ports used 
may clash with exis
 | Docker container      | Ports used           |
 |-----------------------|----------------------|
 | playground-gravitino  | 8090 9001            |
-| playground-hive       | 3307 9003 9084 50071 |
+| playground-hive       | 3307 19000 19083 60070 |
 | playground-mysql      | 13306                |
 | playground-postgresql | 15342                |
 | playground-trino      | 18080                |
diff --git a/docker-compose.yaml b/docker-compose.yaml
index 90fa009..648ea27 100644
--- a/docker-compose.yaml
+++ b/docker-compose.yaml
@@ -22,9 +22,9 @@ services:
     image: datastrato/hive:2.7.3-no-yarn
     ports:
       - "3307:3306"
-      - "9003:9000"
-      - "9084:9083"
-      - "50071:50070"
+      - "19000:9000"
+      - "19083:9083"
+      - "60070:50070"
     container_name: playground-hive
     environment:
       - HADOOP_USER_NAME=root

Reply via email to