Skip to content

Commit 5f52b5a

Browse files
authored
[docs] Fix some wrong docs contents in engine-flink (#782)
1 parent 37d7fb6 commit 5f52b5a

File tree

2 files changed

+17
-14
lines changed

2 files changed

+17
-14
lines changed

website/docs/engine-flink/getting-started.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,10 @@ Fluss only supports Apache Flink's Table API.
4646
| [SQL add partiiton](ddl.md#add-partition) | ✔️ | |
4747
| [SQL drop partiiton](ddl.md#drop-partition) | ✔️ | |
4848
| [SQL select](reads.md) | ✔️ | Support both streaming and batch mode. |
49+
| [SQL limit](reads.md#limit-read) | ✔️ | Only for Log Table |
4950
| [SQL insert into](writes.md) | ✔️ | Support both streaming and batch mode. |
51+
| [SQL delete from](writes.md#delete-from) | ✔️ | Only in batch mode. |
52+
| [SQL update](writes.md#update) | ✔️ | Only in batch mode. |
5053
| [SQL lookup join](lookups.md) | ✔️ | |
5154

5255
## Preparation when using Flink SQL Client

website/docs/engine-flink/options.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ For example, the following SQL statements temporarily disables the CRC check for
5858

5959
```sql
6060
-- SQL hints on source tables
61-
SELECT * FROM log_table /*+ OPTIONS('client.scanner.log.check-crc' = '7d') */;
61+
SELECT * FROM log_table /*+ OPTIONS('client.scanner.log.check-crc' = 'false') */;
6262

6363
-- SQL hints on sink tables
6464
INSERT INTO pk_table2 /*+ OPTIONS('sink.ignore-delete'='true') */ select * from pk_table1;
@@ -116,19 +116,19 @@ ALTER TABLE log_table SET ('table.log.ttl' = '7d');
116116

117117
## Lookup Options
118118

119-
| Option | Type | Default | Description |
120-
|------------------------------------------|------------|------------|-----------------------------------------------------------------------------------------------------------------------------|
121-
| lookup.async | Boolean | true | Whether to use asynchronous lookup. Asynchronous lookup has better throughput performance than synchronous lookup. |
122-
| lookup.cache | Enum | optional | NONE | The caching strategy for this lookup table, including NONE, PARTIAL. |
123-
| lookup.max-retries | Integer | optional | 3 | The maximum allowed retries if a lookup operation fails. |
124-
| lookup.partial-cache.expire-after-access | Duration | optional | (none) | Duration to expire an entry in the cache after accessing. |
125-
| lookup.partial-cache.expire-after-write | Duration | optional | (none) | Duration to expire an entry in the cache after writing. |
126-
| lookup.partial-cache.cache-missing-key | Boolean | optional | true | Whether to store an empty value into the cache if the lookup key doesn't match any rows in the table. |
127-
| lookup.partial-cache.max-rows | Long | optional | true | The maximum number of rows to store in the cache. |
128-
| client.lookup.queue-size | Integer | 25600 | The maximum number of pending lookup operations. |
129-
| client.lookup.max-batch-size | Integer | 128 | The maximum batch size of merging lookup operations to one lookup request. |
130-
| client.lookup.max-inflight-requests | Integer | 128 | The maximum number of unacknowledged lookup requests for lookup operations. |
131-
| client.lookup.batch-timeout | Duration | 100ms | The maximum time to wait for the lookup batch to full, if this timeout is reached, the lookup batch will be closed to send. |
119+
| Option | Type | Default | Description |
120+
|------------------------------------------|------------|---------|-----------------------------------------------------------------------------------------------------------------------------|
121+
| lookup.async | Boolean | true | Whether to use asynchronous lookup. Asynchronous lookup has better throughput performance than synchronous lookup. |
122+
| lookup.cache | Enum | NONE | The caching strategy for this lookup table, including NONE, PARTIAL. | |
123+
| lookup.max-retries | Integer | 3 | The maximum allowed retries if a lookup operation fails. | |
124+
| lookup.partial-cache.expire-after-access | Duration | (none) | Duration to expire an entry in the cache after accessing. | |
125+
| lookup.partial-cache.expire-after-write | Duration | (none) | Duration to expire an entry in the cache after writing. | |
126+
| lookup.partial-cache.cache-missing-key | Boolean | true | Whether to store an empty value into the cache if the lookup key doesn't match any rows in the table. | |
127+
| lookup.partial-cache.max-rows | Long | (none) | The maximum number of rows to store in the cache. | |
128+
| client.lookup.queue-size | Integer | 25600 | The maximum number of pending lookup operations. |
129+
| client.lookup.max-batch-size | Integer | 128 | The maximum batch size of merging lookup operations to one lookup request. |
130+
| client.lookup.max-inflight-requests | Integer | 128 | The maximum number of unacknowledged lookup requests for lookup operations. |
131+
| client.lookup.batch-timeout | Duration | 100ms | The maximum time to wait for the lookup batch to full, if this timeout is reached, the lookup batch will be closed to send. |
132132

133133

134134
## Write Options

0 commit comments

Comments
 (0)