Update values.yaml for updating trino

This commit is contained in:
Benedith Mulongo 2024-12-10 15:47:00 +01:00
parent bc92bfc94b
commit afdd87ba10
Signed by: benedith
GPG key ID: 62D68B584B4B3EB3

View file

@ -5,32 +5,36 @@ server:
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"
catalogs:
hive:
connector.name: hive-hadoop2
# 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:
valueFrom:
secretKeyRef:
name: minio-credentials
key: MINIO_ACCESS_KEY
hive.s3.aws-secret-key:
valueFrom:
secretKeyRef:
name: minio-credentials
key: MINIO_SECRET_KEY
hive.s3.endpoint:
valueFrom:
secretKeyRef:
name: minio-credentials
key: MINIO_ENDPOINT_URL
hive.s3.path-style-access: true
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
# Additional configurations (optional)
log:
level: INFO