-
Notifications
You must be signed in to change notification settings - Fork 407
Add documentation for alter table configuration #1870
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
ea9cbaa to
34d6317
Compare
|
@wuchong , CC |
34d6317 to
88e60cf
Compare
website/docs/engine-flink/options.md
Outdated
| | table.delete.behavior | Enum | ALLOW | Controls the behavior of delete operations on primary key tables. Three modes are supported: `ALLOW` (default) - allows normal delete operations; `IGNORE` - silently ignores delete requests without errors; `DISABLE` - rejects delete requests and throws explicit errors. This configuration provides system-level guarantees for some downstream pipelines (e.g., Flink Delta Join) that must not receive any delete events in the changelog of the table. For tables with `first_row` or `versioned` merge engines, this option is automatically set to `IGNORE` and cannot be overridden. Only applicable to primary key tables. | | ||
|
|
||
| Storage Options can be altered by [Alter Table](engine-flink/ddl.md#alter-table). The limitations are as follows: | ||
| 1. `bootstrap.servers`,`bucket.num` and `bucket.key` cannot be altered. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| 1. `bootstrap.servers`,`bucket.num` and `bucket.key` cannot be altered. | |
| 1. `bootstrap.servers`, `bucket.num` and `bucket.key` cannot be altered. |
75053e8 to
f0f8d08
Compare
f0f8d08 to
3b55dcf
Compare
|
@snuyanzin Thanks for your review. Just modified it. |
|
pushed one small change to fix the sidebar ordering |
| * value: The configuration value to be set (e.g., "paimon") | ||
| * opType: The operation type, either AlterConfigOpType.SET or AlterConfigOpType.DELETE | ||
|
|
||
| To disable a cluster, you can use the following code: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is disable correct here? because its a set operation and we have disable later
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
My mistake, enable here.
Conflicts:
website/docs/maintenance/operations/upgrade-notes-0.8.md
Purpose
Linked issue: close #1793 and #1792
Brief change log
Tests
API and Format
Documentation