40 lines
971 B
YAML
40 lines
971 B
YAML
image:
|
|
tag: "461"
|
|
server:
|
|
workers: 3
|
|
coordinator:
|
|
jvm:
|
|
maxHeapSize: "8G"
|
|
env:
|
|
- name: MINIO_ACCESS_KEY
|
|
valueFrom:
|
|
secretKeyRef:
|
|
name: minio-credentials
|
|
key: MINIO_ACCESS_KEY
|
|
- name: MINIO_SECRET_KEY
|
|
valueFrom:
|
|
secretKeyRef:
|
|
name: minio-credentials
|
|
key: MINIO_SECRET_KEY
|
|
- name: MINIO_ENDPOINT_URL
|
|
valueFrom:
|
|
secretKeyRef:
|
|
name: minio-credentials
|
|
key: MINIO_ENDPOINT_URL
|
|
|
|
worker:
|
|
jvm:
|
|
maxHeapSize: "8G"
|
|
|
|
# hive.metastore.uri=thrift://hivems-hive-metastore.hive-metastore:9083
|
|
# hive.non-managed-table-writes-enabled=true
|
|
additionalCatalogs:
|
|
hive: |
|
|
connector.name=hive
|
|
hive.metastore: file
|
|
hive.metastore.catalog.dir: s3a://delta-lake-test/
|
|
hive.s3.aws-access-key="${MINIO_ACCESS_KEY}"
|
|
hive.s3.aws-secret-key="${MINIO_SECRET_KEY}"
|
|
hive.s3.endpoint="${MINIO_ENDPOINT_URL}"
|
|
hive.s3.path-style-access=true
|
|
hive.s3.ssl.enabled: false
|