You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/specification.md
+7-2
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
3
3
This document describes the specification for how to write your Kafka cluster's desired state file. This currently must be a `YAML` file.
4
4
5
-
?> Current version: `1.0.1`
5
+
?> Current version: `1.0.2`
6
6
7
7
The desired state file consists of:
8
8
@@ -84,14 +84,18 @@ services:
84
84
85
85
**Example kafka connect cluster**:
86
86
87
-
?> **NOTE**: The `group-id` property is optional and defaults to the service name.
87
+
?> **NOTE**: The `group-id` property is optional and defaults to the service name. The `storage-topics` property is also optional; the defaults can be found on the [services][services] page.
88
88
89
89
```yaml
90
90
services:
91
91
my-kafka-connect-cluster-name:
92
92
type: kafka-connect
93
93
principal: User:my-connect-principal
94
94
group-id: optional-group-id-override
95
+
storage-topics:
96
+
config: optional-custom-config-topic
97
+
offset: optional-custom-offset-topic
98
+
status: optional-custom-status-topic
95
99
connectors:
96
100
my-source-connector-name:
97
101
produces:
@@ -195,3 +199,4 @@ customUserAcls:
195
199
196
200
?> **NOTE**: The `principal` field can be left out here and it will be inherited from the user definition.
0 commit comments