File tree 6 files changed +14
-1
lines changed
6 files changed +14
-1
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ apiVersion: v2
2
2
name : operator-wandb
3
3
description : A Helm chart for deploying W&B to Kubernetes
4
4
type : application
5
- version : 0.25.3
5
+ version : 0.25.4
6
6
appVersion : 1.0.0
7
7
icon : https://wandb.ai/logo.svg
8
8
Original file line number Diff line number Diff line change @@ -308,6 +308,9 @@ spec:
308
308
- name : GORILLA_ARTIFACTS_GC_DELETE_FILES_NUM_WORKERS
309
309
value : {{ .Values.artifactsGc.DeleteFilesNumWorkers | quote }}
310
310
311
+ - name : GORILLA_PARQUET_ARROW_BUFFER_SIZE
312
+ value : " 2147483648" # 2GB
313
+
311
314
{{- if .Values.global.executor.enabled }}
312
315
- name : GORILLA_TASK_QUEUE
313
316
value : " {{ include " app.redis" . | trim }}"
Original file line number Diff line number Diff line change @@ -157,6 +157,9 @@ spec:
157
157
- name : GORILLA_FILE_STREAM_STORE_ADDRESS
158
158
value : {{ include "executor.fileStreamStore" . | quote }}
159
159
160
+ - name : GORILLA_PARQUET_ARROW_BUFFER_SIZE
161
+ value : " 2147483648" # 2GB
162
+
160
163
- name : AZURE_STORAGE_KEY
161
164
valueFrom :
162
165
secretKeyRef :
Original file line number Diff line number Diff line change @@ -126,6 +126,9 @@ spec:
126
126
value : " false"
127
127
{{- end }}
128
128
129
+ - name : GORILLA_PARQUET_ARROW_BUFFER_SIZE
130
+ value : " 2147483648" # 2GB
131
+
129
132
- name : WEAVE_SERVICE
130
133
value : " {{ .Release.Name }}-weave:9994"
131
134
- name : PARQUET_HOST
Original file line number Diff line number Diff line change @@ -187,6 +187,9 @@ spec:
187
187
value : " true"
188
188
{{- end }}
189
189
190
+ - name : GORILLA_PARQUET_ARROW_BUFFER_SIZE
191
+ value : " 2147483648" # 2GB
192
+
190
193
{{- include "parquet.extraEnv" (dict "global" .Values.global "local" .Values) | nindent 12 }}
191
194
{{- include "wandb.extraEnvFrom" (dict "root" $ "local" .) | nindent 12 }}
192
195
Original file line number Diff line number Diff line change 62
62
GORILLA_COLLECT_AUDIT_LOGS : " true"
63
63
GORILLA_USE_PARQUET_HISTORY_STORE : " true"
64
64
GORILLA_PARQUET_PORT : " 8087"
65
+ GORILLA_PARQUET_ARROW_BUFFER_SIZE : " 2147483648" # 2GB
65
66
GORILLA_RUN_UPDATE_QUEUE_ADDR : " internal://"
66
67
GORILLA_FILE_STORE_IS_PROXIED : " false"
67
68
GORILLA_ACTIVITY_STORE_SERVE : " true"
You can’t perform that action at this time.
0 commit comments