@@ -97,87 +97,109 @@ pipelines:
9797 # Comma separated list of record operations to generate. Allowed
9898 # values are "create", "update", "delete", "snapshot".
9999 # Type: string
100+ # Required: yes
100101 collections.*.operations: "create"
101102 # Comma separated list of record operations to generate. Allowed
102103 # values are "create", "update", "delete", "snapshot".
103104 # Type: string
105+ # Required: yes
104106 operations: "create"
105107 # The amount of time the generator is generating records in a burst.
106108 # Has an effect only if ` burst.sleepTime` is set.
107109 # Type: duration
110+ # Required: no
108111 burst.generateTime : " 1s"
109112 # The time the generator "sleeps" between bursts.
110113 # Type: duration
114+ # Required: no
111115 burst.sleepTime : " 0s"
112116 # The options for the `raw` and `structured` format types. It accepts
113117 # pairs of field names and field types, where the type can be one of:
114118 # `int`, `string`, `time`, `bool`, `duration`.
115119 # Type: string
120+ # Required: no
116121 collections.*.format.options.* : " "
117122 # Path to the input file (only applicable if the format type is
118123 # `file`).
119124 # Type: string
125+ # Required: no
120126 collections.*.format.options.path : " "
121127 # The format of the generated payload data (raw, structured, file).
122128 # Type: string
129+ # Required: no
123130 collections.*.format.type : " "
124131 # The options for the `raw` and `structured` format types. It accepts
125132 # pairs of field names and field types, where the type can be one of:
126133 # `int`, `string`, `time`, `bool`, `duration`.
127134 # Type: string
135+ # Required: no
128136 format.options.* : " "
129137 # Path to the input file (only applicable if the format type is
130138 # `file`).
131139 # Type: string
140+ # Required: no
132141 format.options.path : " "
133142 # The format of the generated payload data (raw, structured, file).
134143 # Type: string
144+ # Required: no
135145 format.type : " "
136146 # The maximum rate in records per second, at which records are
137147 # generated (0 means no rate limit).
138148 # Type: float
149+ # Required: no
139150 rate : " 0.0"
140151 # The time it takes to 'read' a record. Deprecated: use `rate`
141152 # instead.
142153 # Type: duration
154+ # Required: no
143155 readTime : " 0s"
144156 # Number of records to be generated (0 means infinite).
145157 # Type: int
158+ # Required: no
146159 recordCount : " 0"
147160 # Maximum delay before an incomplete batch is read from the source.
148161 # Type: duration
162+ # Required: no
149163 sdk.batch.delay : " 0"
150164 # Maximum size of batch before it gets read from the source.
151165 # Type: int
166+ # Required: no
152167 sdk.batch.size : " 0"
153168 # Specifies whether to use a schema context name. If set to false, no
154169 # schema context name will be used, and schemas will be saved with the
155170 # subject name specified in the connector (not safe because of name
156171 # conflicts).
157172 # Type: bool
173+ # Required: no
158174 sdk.schema.context.enabled : " true"
159175 # Schema context name to be used. Used as a prefix for all schema
160176 # subject names. If empty, defaults to the connector ID.
161177 # Type: string
178+ # Required: no
162179 sdk.schema.context.name : " "
163180 # Whether to extract and encode the record key with a schema.
164181 # Type: bool
182+ # Required: no
165183 sdk.schema.extract.key.enabled : " true"
166184 # The subject of the key schema. If the record metadata contains the
167185 # field "opencdc.collection" it is prepended to the subject name and
168186 # separated with a dot.
169187 # Type: string
188+ # Required: no
170189 sdk.schema.extract.key.subject : " key"
171190 # Whether to extract and encode the record payload with a schema.
172191 # Type: bool
192+ # Required: no
173193 sdk.schema.extract.payload.enabled : " true"
174194 # The subject of the payload schema. If the record metadata contains
175195 # the field "opencdc.collection" it is prepended to the subject name
176196 # and separated with a dot.
177197 # Type: string
198+ # Required: no
178199 sdk.schema.extract.payload.subject : " payload"
179200 # The type of the payload schema.
180201 # Type: string
202+ # Required: no
181203 sdk.schema.extract.type : " avro"
182204` ` `
183205<!-- /readmegen:source.parameters.yaml -->
0 commit comments