apache / gravitino-playground

A playground to experience Gravitino
Apache License 2.0
18 stars 12 forks source link

Hive 50070 port missing from README #41

Closed sunny0826 closed 1 month ago

sunny0826 commented 1 month ago

In the Hive service started by docker compose, a total of 4 ports are started: 3307 9000 9083 50070, but only 3 are stated in the README.

# docker-compose.yaml
services:
  hive:
    image: datastrato/hive:2.7.3-no-yarn
    ports:
      - "3307:3306"
      - "9000:9000"
      - "9083:9083"
      - "50070:50070"
    container_name: playground
...