From fbc07ca9242c189957b153cb8228712f5f10536d Mon Sep 17 00:00:00 2001 From: ti-srebot <66930949+ti-srebot@users.noreply.github.com> Date: Fri, 16 Oct 2020 11:50:46 +0800 Subject: [PATCH] ticdc: add more protocol in ticdc sink config (#4069) (#4073) Signed-off-by: ti-srebot --- ticdc/manage-ticdc.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ticdc/manage-ticdc.md b/ticdc/manage-ticdc.md index bc3184554237..49065462cb1e 100644 --- a/ticdc/manage-ticdc.md +++ b/ticdc/manage-ticdc.md @@ -201,7 +201,7 @@ The following are descriptions of parameters and parameter values that can be co | `partition-num` | The number of the downstream Kafka partitions (Optional. The value must be **no greater than** the actual number of partitions. If you do not configure this parameter, the partition number is obtained automatically.) | | `max-message-bytes` | The maximum size of data that is sent to Kafka broker each time (optional, `64MB` by default) | | `replication-factor` | The number of Kafka message replicas that can be saved (optional, `1` by default) | -| `protocol` | The protocol with which messages are output to Kafka. The optional values are `default` and `canal` (`default` by default.) | +| `protocol` | The protocol with which messages are output to Kafka. The value options are `default`, `canal`, `avro`, and `maxwell` (`default` by default) | | `ca` | The path of the CA certificate file needed to connect to the downstream Kafka instance (optional) | | `cert` | The path of the certificate file needed to connect to the downstream Kafka instance (optional) | | `key` | The path of the certificate key file needed to connect to the downstream Kafka instance (optional) | @@ -648,7 +648,7 @@ dispatchers = [ {matcher = ['test3.*', 'test4.*'], dispatcher = "rowid"}, ] # For the sink of MQ type, you can specify the protocol format of the message. -# Currently two protocols are supported: default and canal. The default protocol is TiCDC Open Protocol. +# Currently four protocols are supported: default, canal, avro, and maxwell. The default protocol is TiCDC Open Protocol. protocol = "default" [cyclic-replication]