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: coordinator:
jvm: jvm:
maxHeapSize: "8G" maxHeapSize: "8G"
worker: env:
jvm: - name: MINIO_ACCESS_KEY
maxHeapSize: "8G"
catalogs:
hive:
connector.name: hive-hadoop2
hive.metastore: file
hive.metastore.catalog.dir: s3a://delta-lake-test/
hive.s3.aws-access-key:
valueFrom: valueFrom:
secretKeyRef: secretKeyRef:
name: minio-credentials name: minio-credentials
key: MINIO_ACCESS_KEY key: MINIO_ACCESS_KEY
hive.s3.aws-secret-key: - name: MINIO_SECRET_KEY
valueFrom: valueFrom:
secretKeyRef: secretKeyRef:
name: minio-credentials name: minio-credentials
key: MINIO_SECRET_KEY key: MINIO_SECRET_KEY
hive.s3.endpoint: - name: MINIO_ENDPOINT_URL
valueFrom: valueFrom:
secretKeyRef: secretKeyRef:
name: minio-credentials name: minio-credentials
key: MINIO_ENDPOINT_URL key: MINIO_ENDPOINT_URL
hive.s3.path-style-access: true
hive.s3.ssl.enabled: false
# Additional configurations (optional) worker:
log: jvm:
level: INFO 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