Skip to content

Commit a933fc1

Browse files
erikcwhashhar
authored andcommitted
Remove query.max-total-memory-per-node from ConfigMap
1 parent 3c7e0a7 commit a933fc1

File tree

4 files changed

+2
-5
lines changed

4 files changed

+2
-5
lines changed

charts/trino/Chart.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ type: application
1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
1717
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18-
version: 0.3.0
18+
version: 0.4.0
1919

2020
# This is the version number of the application being deployed. This version number should be
2121
# incremented each time you make changes to the application. Versions are not expected to
2222
# follow Semantic Versioning. They should reflect the version the application is using.
23-
appVersion: "355"
23+
appVersion: "370"
2424

2525
icon: https://trino.io/assets/trino.png
2626

charts/trino/templates/configmap-coordinator.yaml

-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ data:
4646
http-server.http.port={{ .Values.service.port }}
4747
query.max-memory={{ .Values.server.config.query.maxMemory }}
4848
query.max-memory-per-node={{ .Values.server.config.query.maxMemoryPerNode }}
49-
query.max-total-memory-per-node={{ .Values.server.config.query.maxTotalMemoryPerNode }}
5049
memory.heap-headroom-per-node={{ .Values.server.config.memory.heapHeadroomPerNode }}
5150
discovery-server.enabled=true
5251
discovery.uri=http://localhost:{{ .Values.service.port }}

charts/trino/templates/configmap-worker.yaml

-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ data:
4242
http-server.http.port={{ .Values.service.port }}
4343
query.max-memory={{ .Values.server.config.query.maxMemory }}
4444
query.max-memory-per-node={{ .Values.server.config.query.maxMemoryPerNode }}
45-
query.max-total-memory-per-node={{ .Values.server.config.query.maxTotalMemoryPerNode }}
4645
memory.heap-headroom-per-node={{ .Values.server.config.memory.heapHeadroomPerNode }}
4746
discovery.uri=http://{{ template "trino.fullname" . }}:{{ .Values.service.port }}
4847
{{- range $configValue := .Values.additionalConfigProperties }}

charts/trino/values.yaml

-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ server:
2424
query:
2525
maxMemory: "4GB"
2626
maxMemoryPerNode: "1GB"
27-
maxTotalMemoryPerNode: "2GB"
2827
memory:
2928
heapHeadroomPerNode: "1GB"
3029
jvm:

0 commit comments

Comments
 (0)