From c90e1c4aa232559172dc76e891f6ab61af44a1e4 Mon Sep 17 00:00:00 2001 From: Tao Wu Date: Fri, 26 Jan 2024 12:29:15 +0100 Subject: [PATCH] fix doc --- src/connector/src/sink/starrocks.rs | 4 ++-- src/connector/with_options_sink.yaml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/connector/src/sink/starrocks.rs b/src/connector/src/sink/starrocks.rs index 3ab673dc9bb7d..d1c1f97f6a60c 100644 --- a/src/connector/src/sink/starrocks.rs +++ b/src/connector/src/sink/starrocks.rs @@ -50,10 +50,10 @@ pub struct StarrocksCommon { /// The StarRocks host address. #[serde(rename = "starrocks.host")] pub host: String, - /// The address that connects to the MySQL client of the frontend. + /// The port to the MySQL server of StarRocks FE. #[serde(rename = "starrocks.mysqlport")] pub mysql_port: String, - /// The http port for data import. + /// The port to the HTTP server of StarRocks FE. #[serde(rename = "starrocks.httpport")] pub http_port: String, /// The user name used to access the StarRocks database. diff --git a/src/connector/with_options_sink.yaml b/src/connector/with_options_sink.yaml index c25a75da8dfc2..15f9d40f67807 100644 --- a/src/connector/with_options_sink.yaml +++ b/src/connector/with_options_sink.yaml @@ -460,11 +460,11 @@ StarrocksConfig: required: true - name: starrocks.mysqlport field_type: String - comments: The address that connects to the MySQL client of the frontend. By default, this is 9030. + comments: The port to the MySQL server of StarRocks FE. required: true - name: starrocks.httpport field_type: String - comments: The http port for data import. By default, this is 8030. + comments: The port to the HTTP server of StarRocks FE. required: true - name: starrocks.user field_type: String