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
The table below describes the configuration settings relevant to the dead
285
+
letter queue.
286
+
287
+
.. list-table::
288
+
:header-rows: 1
289
+
:stub-columns: 1
290
+
:widths: 2 1 4
291
+
292
+
293
+
* - Name
294
+
- Type
295
+
- Description
296
+
297
+
* - errors.tolerance
298
+
- string
299
+
- | Which errors to allow before the message processing task fails. When the connector encounters an error when tolerance is set to "none", it reports an error and blocks further processing of the rest of the records. When set to "all", the connector silently ignores any bad messages.
300
+
|
301
+
| **Default:** "none"
302
+
| **Accepted Values**: "none" or "all"
303
+
304
+
* - errors.log.enable
305
+
- boolean
306
+
- | Whether details of failed operations should be written to the log file. When set to **true**, both errors that are tolerated (determined by the **errors.tolerance** setting) and not tolerated are written. When set to **false**, errors that are tolerated are omitted.
307
+
|
308
+
| **Default:** false
309
+
| **Accepted Values**: ``true`` or ``false``
310
+
311
+
* - errors.log.include.messages
312
+
- boolean
313
+
- | Whether to include the invalid message, including record keys, values, and headers, in the error log file.
314
+
|
315
+
| **Default:** false
316
+
| **Accepted Values**: ``true`` or ``false``
317
+
318
+
* - errors.deadletterqueue.topic.name
319
+
- string
320
+
- | Name of topic to use as the dead letter queue. If blank, none of the invalid messages are written to the dead letter queue.
321
+
|
322
+
| **Default:** ""
323
+
| **Accepted Values**: A valid Kafka topic name
324
+
325
+
* - errors.deadletterqueue.context.headers.enable
326
+
- boolean
327
+
- | Whether to provide the context headers in messages written to the dead letter queue.
0 commit comments