From 01aebca71974881c72ce1f0f9dc6f310f7879308 Mon Sep 17 00:00:00 2001 From: Erik Wickstrom Date: Fri, 11 Feb 2022 14:46:46 -0800 Subject: [PATCH] Remove query.max-total-memory-per-node from ConfigMap --- charts/trino/Chart.yaml | 4 ++-- charts/trino/templates/configmap-coordinator.yaml | 1 - charts/trino/templates/configmap-worker.yaml | 1 - charts/trino/values.yaml | 1 - 4 files changed, 2 insertions(+), 5 deletions(-) diff --git a/charts/trino/Chart.yaml b/charts/trino/Chart.yaml index 62db597c..0acc216b 100644 --- a/charts/trino/Chart.yaml +++ b/charts/trino/Chart.yaml @@ -15,12 +15,12 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.3.0 +version: 0.4.0 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. -appVersion: "355" +appVersion: "370" icon: https://trino.io/assets/trino.png diff --git a/charts/trino/templates/configmap-coordinator.yaml b/charts/trino/templates/configmap-coordinator.yaml index 25bbcacb..57a15cde 100644 --- a/charts/trino/templates/configmap-coordinator.yaml +++ b/charts/trino/templates/configmap-coordinator.yaml @@ -46,7 +46,6 @@ data: http-server.http.port={{ .Values.service.port }} query.max-memory={{ .Values.server.config.query.maxMemory }} query.max-memory-per-node={{ .Values.server.config.query.maxMemoryPerNode }} - query.max-total-memory-per-node={{ .Values.server.config.query.maxTotalMemoryPerNode }} memory.heap-headroom-per-node={{ .Values.server.config.memory.heapHeadroomPerNode }} discovery-server.enabled=true discovery.uri=http://localhost:{{ .Values.service.port }} diff --git a/charts/trino/templates/configmap-worker.yaml b/charts/trino/templates/configmap-worker.yaml index 5e64ef1c..4df74f6a 100644 --- a/charts/trino/templates/configmap-worker.yaml +++ b/charts/trino/templates/configmap-worker.yaml @@ -42,7 +42,6 @@ data: http-server.http.port={{ .Values.service.port }} query.max-memory={{ .Values.server.config.query.maxMemory }} query.max-memory-per-node={{ .Values.server.config.query.maxMemoryPerNode }} - query.max-total-memory-per-node={{ .Values.server.config.query.maxTotalMemoryPerNode }} memory.heap-headroom-per-node={{ .Values.server.config.memory.heapHeadroomPerNode }} discovery.uri=http://{{ template "trino.fullname" . }}:{{ .Values.service.port }} {{- range $configValue := .Values.additionalConfigProperties }} diff --git a/charts/trino/values.yaml b/charts/trino/values.yaml index ace6819a..5943fd8e 100644 --- a/charts/trino/values.yaml +++ b/charts/trino/values.yaml @@ -24,7 +24,6 @@ server: query: maxMemory: "4GB" maxMemoryPerNode: "1GB" - maxTotalMemoryPerNode: "2GB" memory: heapHeadroomPerNode: "1GB" jvm: