From c7aa3e36d091b1103c3f06643aa7f9f203760641 Mon Sep 17 00:00:00 2001 From: viktoryathegreat Date: Fri, 2 Aug 2024 12:47:37 +0400 Subject: [PATCH] fix(DMVP-4835): Added key and timestamp to kafka connect backuped data --- charts/kafka-connect/templates/configmap.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/charts/kafka-connect/templates/configmap.yaml b/charts/kafka-connect/templates/configmap.yaml index b0b1578..a36bd71 100644 --- a/charts/kafka-connect/templates/configmap.yaml +++ b/charts/kafka-connect/templates/configmap.yaml @@ -17,8 +17,8 @@ data: "flush.size": "{{ .Values.config.connector.gcs.flushSize }}", "gcs.credentials.path": "{{ .Values.config.connector.gcs.credentialsPath }}", "format.output.type": "jsonl", - "format.output.envelope": false, - "format.output.fields": "value", + "format.output.envelope": true, + "format.output.fields": "key,value,timestamp", "_format.output.fields": "key,value,offset,timestamp,headers", "file.name.prefix": "raw/", "file.compression.type": "gzip",