Skip to content

Commit

Permalink
Add debezium disable schema doc for ticdc (#16873) (#18468)
Browse files Browse the repository at this point in the history
  • Loading branch information
ti-chi-bot authored Aug 28, 2024
1 parent 1b8807c commit a26fd6c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions releases/release-8.0.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -344,6 +344,7 @@ TiDB 版本:8.0.0
| TiDB Lightning | [`logical-import-batch-rows`](/tidb-lightning/tidb-lightning-configuration.md#tidb-lightning-任务配置) | 新增 | 在逻辑导入模式下,用于限制每个事务中可插入的最大行数,默认值为 `65536`|
| TiDB Lightning | [`logical-import-batch-size`](/tidb-lightning/tidb-lightning-configuration.md#tidb-lightning-任务配置) | 新增 | 在逻辑导入模式下,用于设置下游 TiDB 服务器上执行的每条 SQL 语句的最大值。默认值为 `"96KiB"`,单位可以为 KB、KiB、MB、MiB 等存储单位。 |
| Data Migration | [`secret-key-path`](/dm/dm-master-configuration-file.md) | 新增 | 用于指定加解密上下游密码的密钥文件所在的路径。该文件内容必须是长度为 64 个字符的十六进制的 AES-256 密钥。 |
| TiCDC | [`debezium-disable-schema`](/ticdc/ticdc-changefeed-config.md) | 新增 | 用于控制是否关闭 schema 信息的输出。该参数只有当 sink 类型为 MQ 且输出协议为 Debezium 时才生效。 |
| TiCDC | [`tls-certificate-file`](/ticdc/ticdc-sink-to-pulsar.md) | 新增 | 用于指定 Pulsar 启用 TLS 加密传输时,客户端的加密证书文件路径。 |
| TiCDC | [`tls-key-file-path`](/ticdc/ticdc-sink-to-pulsar.md) | 新增 | 用于指定 Pulsar 启用 TLS 加密传输时,客户端的加密私钥路径。 |

Expand Down
4 changes: 4 additions & 0 deletions ticdc/ticdc-changefeed-config.md
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,10 @@ date-separator = 'day'
# 注意:该参数只有当下游为存储服务时,才会生效。
enable-partition-separator = true
# 是否关闭 schema 信息的输出。默认值为 false,即输出 schema 信息。
# 注意:该参数只有当 sink 类型为 MQ 且输出协议为 Debezium 时才生效。
debezium-disable-schema = false
# 从 v6.5.0 开始,TiCDC 支持以 CSV 格式将数据变更记录保存至存储服务中,在 MQ 和 MySQL 类 sink 中无需设置。
# [sink.csv]
# 字段之间的分隔符。必须为 ASCII 字符,默认值为 `,`。
Expand Down

0 comments on commit a26fd6c

Please sign in to comment.