Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add encode password description for ticdc doc (#14042) #14066

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ticdc/ticdc-open-api.md
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ The configuration parameters of sink are as follows:

### Example

The following request creates a replication task with an ID of `test5` and a `sink_uri` of `blackhome://`.
The following request creates a replication task with an ID of `test5` and a `sink_uri` of `blackhole://`.

{{< copyable "shell-regular" >}}

Expand Down
4 changes: 2 additions & 2 deletions ticdc/ticdc-sink-to-kafka.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,14 +68,14 @@ The following are descriptions of sink URI parameters and values that can be con
| `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). |
| `sasl-user` | The identity (authcid) of SASL/PLAIN or SASL/SCRAM authentication needed to connect to the downstream Kafka instance (optional). |
| `sasl-password` | The password of SASL/PLAIN or SASL/SCRAM authentication needed to connect to the downstream Kafka instance (optional). |
| `sasl-password` | The password of SASL/PLAIN or SASL/SCRAM authentication needed to connect to the downstream Kafka instance (optional). If it contains special characters, they need to be URL encoded. |
| `sasl-mechanism` | The name of SASL authentication needed to connect to the downstream Kafka instance. The value can be `plain`, `scram-sha-256`, `scram-sha-512`, or `gssapi`. |
| `sasl-gssapi-auth-type` | The gssapi authentication type. Values can be `user` or `keytab` (optional). |
| `sasl-gssapi-keytab-path` | The gssapi keytab path (optional).|
| `sasl-gssapi-kerberos-config-path` | The gssapi kerberos configuration path (optional). |
| `sasl-gssapi-service-name` | The gssapi service name (optional). |
| `sasl-gssapi-user` | The user name of gssapi authentication (optional). |
| `sasl-gssapi-password` | The password of gssapi authentication (optional). |
| `sasl-gssapi-password` | The password of gssapi authentication (optional). If it contains special characters, they need to be URL encoded. |
| `sasl-gssapi-realm` | The gssapi realm name (optional). |
| `sasl-gssapi-disable-pafxfast` | Whether to disable the gssapi PA-FX-FAST (optional). |
| `dial-timeout` | The timeout in establishing a connection with the downstream Kafka. The default value is `10s`. |
Expand Down
Loading