From c68d145a56fada9444e5461f218bc3f16808287e Mon Sep 17 00:00:00 2001 From: hellolilyliuyi <96421222+hellolilyliuyi@users.noreply.github.com> Date: Thu, 31 Aug 2023 20:30:46 +0800 Subject: [PATCH] Update connector-sink.md --- docs/content/connector-sink.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/docs/content/connector-sink.md b/docs/content/connector-sink.md index 30474a09..10ab38a7 100644 --- a/docs/content/connector-sink.md +++ b/docs/content/connector-sink.md @@ -132,8 +132,6 @@ In your Maven project's `pom.xml` file, add the Flink connector as a dependency ## Usage notes -When you load data from Apache FlinkĀ® into StarRocks, take note of the following points: - - Loading data into StarRocks tables needs INSERT privilege. If you do not have the INSERT privilege, follow the instructions provided in [GRANT](https://docs.starrocks.io/en-us/latest/sql-reference/sql-statements/account-management/GRANT) to grant the INSERT privilege to the user that you use to connect to your StarRocks cluster. - Since v2.4, StarRocks provides a Stream Load transaction interface. Since Flink connector version 1.2.4, the Sink is redesigned to implement exactly-once semantics based on transactional interfaces. Compared to the previous implementation based on non-transactional interfaces, the new implementation reduces memory usage and checkpoint overhead, thereby enhancing real-time performance and stability of loading. Starting from Flink connector version 1.2.4, the Sink implements transactional interfaces by default. To enable non-transactional interfaces, the `sink.version` needs to be configured as `V1`.