forked from Ajinkya009/big-data-stack-practice
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhive.env
More file actions
23 lines (23 loc) · 1.33 KB
/
hive.env
File metadata and controls
23 lines (23 loc) · 1.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# ConnectionURL for hive-server will be overriden, see docker-compose.yml
HIVE_SITE_CONF_javax_jdo_option_ConnectionURL=jdbc:postgresql://database:5432/metastore
HIVE_SITE_CONF_javax_jdo_option_ConnectionDriverName=org.postgresql.Driver
HIVE_SITE_CONF_javax_jdo_option_ConnectionUserName=hive
HIVE_SITE_CONF_javax_jdo_option_ConnectionPassword=hive
HIVE_SITE_CONF_datanucleus_autoCreateSchema=false
# metastore.uris for hive-server will be overriden, see docker-compose.yml
HIVE_SITE_CONF_hive_metastore_uris=thrift://localhost:9083
HIVE_SITE_CONF_hive_metastore_schema_verification=true
HIVE_SITE_CONF_hive_execution_engine=mr
HIVE_SITE_CONF_hive_support_concurrency=false
HIVE_SITE_CONF_hive_driver_parallel_compilation=true
HIVE_SITE_CONF_hive_metastore_warehouse_dir=s3a://hive/warehouse
HIVE_SITE_CONF_hive_metastore_event_db_notification_api_auth=false
HIVE_SITE_CONF_hive_server2_authentication=NOSASL
# csv support from presto todo https://github.com/prestosql/presto/issues/2678#issuecomment-580255387
# HIVE_SITE_CONF_metastore_storage_schema_reader_impl=org.apache.hadoop.hive.metastore.SerDeStorageSchemaReader
CORE_CONF_fs_defaultFS=s3a://default
CORE_CONF_fs_s3a_connection_ssl_enabled=false
CORE_CONF_fs_s3a_access_key=minio
CORE_CONF_fs_s3a_secret_key=minio123
CORE_CONF_fs_s3a_endpoint=http://minio:9000
CORE_CONF_fs_s3a_path_style_access=true