Add documentation for updating table configs and cluster configs#1870
Merged
wuchong merged 4 commits intoapache:mainfrom Nov 2, 2025
Merged
Add documentation for updating table configs and cluster configs#1870wuchong merged 4 commits intoapache:mainfrom
wuchong merged 4 commits intoapache:mainfrom
Conversation
ea9cbaa to
34d6317
Compare
Contributor
Author
|
@wuchong , CC |
34d6317 to
88e60cf
Compare
snuyanzin
reviewed
Oct 28, 2025
snuyanzin
reviewed
Oct 28, 2025
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. |
Contributor
There was a problem hiding this comment.
Suggested change
| 1. `bootstrap.servers`,`bucket.num` and `bucket.key` cannot be altered. | |
| 1. `bootstrap.servers`, `bucket.num` and `bucket.key` cannot be altered. |
snuyanzin
reviewed
Oct 28, 2025
75053e8 to
f0f8d08
Compare
f0f8d08 to
3b55dcf
Compare
Contributor
Author
|
@snuyanzin Thanks for your review. Just modified it. |
snuyanzin
approved these changes
Oct 30, 2025
Contributor
|
pushed one small change to fix the sidebar ordering |
polyzos
reviewed
Oct 30, 2025
| * 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: |
Contributor
There was a problem hiding this comment.
is disable correct here? because its a set operation and we have disable later
Contributor
Author
There was a problem hiding this comment.
My mistake, enable here.
2 tasks
2 tasks
wuchong
pushed a commit
that referenced
this pull request
Nov 2, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
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