You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: website/docs/engine-flink/ddl.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -27,7 +27,7 @@ The following properties can be set if using the Fluss catalog:
27
27
| bootstrap.servers | required | (none) | Comma separated list of Fluss servers. |
28
28
| default-database | optional | fluss | The default database to use when switching to this catalog. |
29
29
| client.security.protocol | optional | PLAINTEXT | The security protocol used to communicate with brokers. Currently, only `PLAINTEXT` and `SASL` are supported, the configuration value is case insensitive. |
30
-
|`client.security.{protocol}.*`| optional | (none) | Client-side configuration properties for a specific authentication protocol. E.g., client.security.sasl.jaas.config. More Details in [authentication](../../security/authentication.md)|
30
+
|`client.security.{protocol}.*`| optional | (none) | Client-side configuration properties for a specific authentication protocol. E.g., client.security.sasl.jaas.config. More Details in [authentication](../security/authentication.md)|
31
31
|`{lake-format}.*`| optional | (none) | Extra properties to be passed to the lake catalog. This is useful for configuring sensitive settings, such as the username and password required for lake catalog authentication. E.g., `paimon.jdbc.password = pass`. |
32
32
33
33
The following statements assume that the current catalog has been switched to the Fluss catalog using the `USE CATALOG <catalog_name>` statement.
Fluss partitioned table supports dynamic partition creation, which means you can write data into a partition without pre-creating it.
126
126
You can use the `INSERT INTO` statement to write data into a partitioned table, and Fluss will automatically create the partition if it does not exist.
127
127
See the [Dynamic Partitioning](table-design/data-distribution/partitioning.md#dynamic-partitioning) for more details.
128
-
But you can still use the [Add Partition](engine-flink/ddl/index.md#add-partition) statement to manually add partitions if needed.
128
+
But you can still use the [Add Partition](engine-flink/ddl.md#add-partition) statement to manually add partitions if needed.
Copy file name to clipboardExpand all lines: website/docs/engine-flink/options.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
---
2
2
title: Connector Options
3
-
sidebar_position: 8
3
+
sidebar_position: 9
4
4
---
5
5
6
6
# Connector Options
@@ -57,7 +57,7 @@ Using `ALTER TABLE ... SET` statement to modify the table options. For example,
57
57
ALTERTABLE log_table SET ('table.datalake.enable'='true');
58
58
```
59
59
60
-
See more details about [ALTER TABLE ... SET](engine-flink/ddl/index.md#set-properties) and [ALTER TABLE ... RESET](engine-flink/ddl/index.md#reset-properties) documentation.
60
+
See more details about [ALTER TABLE ... SET](engine-flink/ddl.md#set-properties) and [ALTER TABLE ... RESET](engine-flink/ddl.md#reset-properties) documentation.
Copy file name to clipboardExpand all lines: website/docs/engine-flink/procedures.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,9 +18,9 @@ SHOW PROCEDURES;
18
18
19
19
## Access Control Procedures
20
20
21
-
Fluss provides procedures to manage Access Control Lists (ACLs) for security and authorization.
21
+
Fluss provides procedures to manage Access Control Lists (ACLs) for security and authorization. See the [Security](../security/overview.md) documentation for more details.
22
22
23
-
## add_acl
23
+
###add_acl
24
24
25
25
Add an ACL entry to grant permissions to a principal.
26
26
@@ -69,7 +69,7 @@ CALL sys.add_acl(
69
69
);
70
70
```
71
71
72
-
## drop_acl
72
+
###drop_acl
73
73
74
74
Remove an ACL entry to revoke permissions.
75
75
@@ -114,7 +114,7 @@ CALL sys.drop_acl(
114
114
);
115
115
```
116
116
117
-
## list_acl
117
+
###list_acl
118
118
119
119
List ACL entries matching the specified filters.
120
120
@@ -162,7 +162,7 @@ CALL sys.list_acl(
162
162
163
163
Fluss provides procedures to dynamically manage cluster configurations without requiring a server restart.
164
164
165
-
## get_cluster_config
165
+
###get_cluster_config
166
166
167
167
Retrieve cluster configuration values.
168
168
@@ -200,7 +200,7 @@ CALL sys.get_cluster_config(
200
200
CALL sys.get_cluster_config();
201
201
```
202
202
203
-
## set_cluster_config
203
+
###set_cluster_config
204
204
205
205
Set or delete a cluster configuration dynamically.
Copy file name to clipboardExpand all lines: website/docs/maintenance/operations/updating-configs.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,7 @@ Currently, the supported dynamically updatable server configurations include:
18
18
-`kv.rocksdb.shared-rate-limiter.bytes-per-sec`: Control RocksDB flush and compaction write rate shared across all RocksDB instances on the TabletServer. The rate limiter is always enabled. Set to a lower value (e.g., 100MB) to limit the rate, or a very high value to effectively disable rate limiting.
19
19
20
20
21
-
You can update the configuration of a cluster with [Java client](#using-java-client) or [Flink Stored Procedures](../../engine-flink/ddl/procedures.md#cluster-configuration-procedures).
21
+
You can update the configuration of a cluster with [Java client](#using-java-client) or [Flink Procedures](../../engine-flink/procedures.md#cluster-configuration-procedures).
22
22
23
23
### Using Java Client
24
24
@@ -48,11 +48,11 @@ The `AlterConfig` class contains three properties:
48
48
49
49
### Using Flink Stored Procedures
50
50
51
-
For certain configurations, Fluss provides convenient Flink stored procedures that can be called directly from Flink SQL. See [Procedures](engine-flink/ddl/procedures.md#cluster-configuration-procedures) for detailed documentation on using `get_cluster_config` and `set_cluster_config` procedures.
51
+
For certain configurations, Fluss provides convenient Flink stored procedures that can be called directly from Flink SQL. See [Procedures](engine-flink/procedures.md#cluster-configuration-procedures) for detailed documentation on using `get_cluster_config` and `set_cluster_config` procedures.
52
52
53
53
## Updating Table Configs
54
54
55
-
The connector options on a table including [Storage Options](engine-flink/options.md#storage-options) can be updated dynamically by [ALTER TABLE ... SET](engine-flink/ddl/index.md#alter-table) statement. See the example below:
55
+
The connector options on a table including [Storage Options](engine-flink/options.md#storage-options) can be updated dynamically by [ALTER TABLE ... SET](engine-flink/ddl.md#alter-table) statement. See the example below:
0 commit comments