You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For a quick start, launch the Metastore with Derby,
92
90
```shell
93
-
docker run -d -p 9083:9083 --name metastore-standalone apache/hive:${HIVE_VERSION}
91
+
docker run -d -p 9083:9083 --name metastore-standalone apache/hive-metastore:${HIVE_VERSION}
94
92
```
95
93
Everything would be lost when the service is down. In order to save the Hive table's schema and data, start the container with an external Postgres and Volume to keep them,
96
94
@@ -99,16 +97,16 @@ For a quick start, launch the Metastore with Derby,
If you want to use your own `hdfs-site.xml`or `yarn-site.xml`for the service, you can provide the environment variable `HIVE_CUSTOM_CONF_DIR` for the command. For instance, put the custom configuration file under the directory `/opt/hive/conf`, then run,
103
+
If you want to use your own `hdfs-site.xml` for the service, you can provide the environment variable `HIVE_CUSTOM_CONF_DIR` for the command. For instance, put the custom configuration file under the directory `/opt/hive/conf`, then run,
106
104
107
105
```shell
108
106
docker run -d -p 9083:9083 --env DB_DRIVER=postgres \
0 commit comments