fix(helm): wrong flink checkpoint and savepoint dirs config

This commit is contained in:
Mohamad Khani 2024-12-09 01:51:40 +03:30
parent f06a391359
commit 3912ecef44
2 changed files with 2 additions and 1 deletions

View File

@ -45,6 +45,7 @@ spec:
rootLogger.level = DEBUG rootLogger.level = DEBUG
rootLogger.appenderRef.console.ref = ConsoleAppender rootLogger.appenderRef.console.ref = ConsoleAppender
web.upload.dir: /opt/flink/data/web-upload web.upload.dir: /opt/flink/data/web-upload
state.checkpoints.dir: file:///tmp/flink-checkpoints
volumeMounts: volumeMounts:
- name: flink-data - name: flink-data
mountPath: /opt/flink/data mountPath: /opt/flink/data

View File

@ -125,7 +125,7 @@ flink:
state: state:
backend: rocksdb # Use RocksDB for state backend backend: rocksdb # Use RocksDB for state backend
savepoints: savepoints:
dir: "/opt/flink/savepoints" # Directory to store savepoints dir: "file:///opt/flink/savepoints" # Directory to store savepoints
pvcName: flink-savepoints-pvc # PVC for savepoints persistence pvcName: flink-savepoints-pvc # PVC for savepoints persistence
taskManager: taskManager: