Skip to content

Commit

Permalink
[INLONG-1083][Doc] Correct description of connector name for sort-con…
Browse files Browse the repository at this point in the history
…nector Kafka and ElasticSearch (#1084)
  • Loading branch information
PeterZh6 authored Dec 3, 2024
1 parent f0e10f8 commit 99bade7
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docs/data_node/extract_node/kafka.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ Flink SQL> CREATE TABLE kafka_extract_node (
-- Read data
Flink SQL> SELECT * FROM kafka_extract_node;
```
* connector is `upsert-kafka`
* connector is `upsert-kafka-inlong`
```sql
-- Set checkpoint every 3000 milliseconds
Flink SQL> SET 'execution.checkpointing.interval' = '3s';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ Flink SQL> CREATE TABLE kafka_extract_node (
-- 读取数据
Flink SQL> SELECT * FROM kafka_extract_node;
```
* 连接器是 `upsert-kafka`
* 连接器是 `upsert-kafka-inlong`
```sql
-- 设置 Checkpoint 为 3000 毫秒
Flink SQL> SET 'execution.checkpointing.interval' = '3s';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ CREATE TABLE myUserTable (
pv BIGINT,
PRIMARY KEY (user_id) NOT ENFORCED
) WITH (
'connector' = 'elasticsearch-7',
'connector' = 'elasticsearch7-inlong',
'hosts' = 'http://localhost:9200',
'index' = 'users'
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ CREATE TABLE myUserTable (
pv BIGINT,
PRIMARY KEY (user_id) NOT ENFORCED
) WITH (
'connector' = 'elasticsearch-7',
'connector' = 'elasticsearch7-inlong',
'hosts' = 'http://localhost:9200',
'index' = 'users'
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ Flink SQL> CREATE TABLE kafka_load_node (
'format' = 'csv'
)
```
* 连接器是 `upsert-kafka`
* 连接器是 `upsert-kafka-inlong`
```sql
-- 使用 Flink SQL 创建 Kafka 表 'kafka_load_node'
Flink SQL> CREATE TABLE kafka_load_node (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ Flink SQL> CREATE TABLE kafka_extract_node (
-- Read data
Flink SQL> SELECT * FROM kafka_extract_node;
```
* connector is `upsert-kafka`
* connector is `upsert-kafka-inlong`
```sql
-- Set checkpoint every 3000 milliseconds
Flink SQL> SET 'execution.checkpointing.interval' = '3s';
Expand Down

0 comments on commit 99bade7

Please sign in to comment.