Skip to content

Commit c4046c5

Browse files
authored
Add debezium disable schema doc for ticdc (#18676) (#18726)
1 parent be71fad commit c4046c5

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

releases/release-8.0.0.md

+2
Original file line numberDiff line numberDiff line change
@@ -344,6 +344,8 @@ Quick access: [Quick start](https://docs.pingcap.com/tidb/v8.0/quick-start-with-
344344
| TiDB Lightning | [`logical-import-batch-rows`](/tidb-lightning/tidb-lightning-configuration.md#tidb-lightning-task) | Newly added | Controls the maximum number of rows inserted per transaction in the logical import mode. The default value is `65536` rows. |
345345
| TiDB Lightning | [`logical-import-batch-size`](/tidb-lightning/tidb-lightning-configuration.md#tidb-lightning-task) | Newly added | Controls the maximum size of each SQL query executed on the downstream TiDB server in the logical import mode. The default value is `"96KiB"`. The unit can be KB, KiB, MB, or MiB. |
346346
| Data Migration | [`secret-key-path`](/dm/dm-master-configuration-file.md) | Newly added | Specifies the file path of the secret key, which is used to encrypt and decrypt upstream and downstream passwords. The file must contain a 64-character hexadecimal AES-256 secret key. |
347+
| TiCDC | [`debezium-disable-schema`](/ticdc/ticdc-changefeed-config.md) | Newly added | Controls whether to disable the output of schema information. This parameter only takes effect when the sink type is MQ and the output protocol is Debezium. |
348+
347349
| TiCDC | [`tls-certificate-file`](/ticdc/ticdc-sink-to-pulsar.md) | Newly added | Specifies the path to the encrypted certificate file on the client, which is required when Pulsar enables TLS encrypted transmission. |
348350
| TiCDC | [`tls-key-file-path`](/ticdc/ticdc-sink-to-pulsar.md) | Newly added | Specifies the path to the encrypted private key on the client, which is required when Pulsar enables TLS encrypted transmission. |
349351

ticdc/ticdc-changefeed-config.md

+4
Original file line numberDiff line numberDiff line change
@@ -187,6 +187,10 @@ date-separator = 'day'
187187
# Note: This configuration item only takes effect if the downstream is a storage service.
188188
enable-partition-separator = true
189189
190+
# Controls whether to disable the output of schema information. The default value is false, which means enabling the output of schema information.
191+
# Note: This parameter only takes effect when the sink type is MQ and the output protocol is Debezium.
192+
debezium-disable-schema = false
193+
190194
# Since v6.5.0, TiCDC supports saving data changes to storage services in CSV format. Ignore the following configurations if you replicate data to MQ or MySQL sinks.
191195
# [sink.csv]
192196
# The character used to separate fields in the CSV file. The value must be an ASCII character and defaults to `,`.

0 commit comments

Comments
 (0)