-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8590027
commit 800a886
Showing
1 changed file
with
8 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,15 @@ | ||
# hive-metastore | ||
|
||
Docker image used to create a minimal unsecured hive metastore for teaching | ||
purposes. DO NOT use for production. | ||
purposes. | ||
|
||
> [!CAUTION] | ||
> DO NOT use for production. | ||
Why? Because I haven't tested this image anywhere but in small local setups for demos and I like sleeping easy knowing that I've at least said this. | ||
|
||
ENV variables: | ||
- METASTORE_DB_HOSTNAME - hostname used to ping metastore db during init | ||
- METASTORE_DB_PORT - port used to ping metastore db | ||
- METASTORE_TYPE - type of metastore db (options: mysql, postgres) (default: mysql) | ||
|
||
- METASTORE_DB_PORT - port used for metastore db (options: 3306, 5432) (defaults: 3306 if type is mysql, 5432 if type is postgres) | ||
|