Skip to content
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

[Fix](flexible update) Remove version info #2146

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/data-operate/update/update-of-unique-model.md
Original file line number Diff line number Diff line change
Expand Up @@ -138,13 +138,13 @@ Performance optimization suggestions:

Currently, all rows in the same batch data writing task (whether a load task or `INSERT INTO`) can only update the same columns. To update data with different columns, write in different batches.

## Flexible Partial Column Updates
## Flexible Partial Column Updates (Experimental Feature)

Before version x.x.x, Doris's partial update feature required that every row in an import update the same columns. Starting from version x.x.x, Doris supports a more flexible partial update method that allows each row in a single import to update different columns.
Previously, Doris's partial update feature required that every row in an import update the same columns. Now, Doris supports a more flexible partial update method that allows each row in a single import to update different columns(only supported on the master branch).

:::caution Note:

1. The flexible partial update feature is supported since version x.x.x.
1. The flexible partial update feature is still in the internal testing.
2. Currently, only the Stream Load import method and tools using Stream Load (e.g. Doris-Flink-Connector) support this feature.
3. The import file must be in JSON format when using flexible column updates.
:::
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -138,13 +138,13 @@ INSERT INTO order_tbl (order_id, order_status) VALUES (1, '待发货');

目前,同一批次数据写入任务(无论是导入任务还是 `INSERT INTO`)的所有行只能更新相同的列。如果需要更新不同列的数据,则需要分不同批次进行写入。

## 灵活部分列更新
## 灵活部分列更新(实验性功能)

在 x.x.x 版本之前,doris 支持的部分列更新功能限制了一次导入中每一行必须更新相同的列,从 x.x.x 版本开始,doris 支持一种更加灵活的更新方式,它使得一次导入中的每一行可以更新不同的列。
此前,doris 支持的部分列更新功能限制了一次导入中每一行必须更新相同的列。现在,doris 支持一种更加灵活的更新方式,它使得一次导入中的每一行可以更新不同的列(仅 master 分支支持)

:::caution 注意:

1. 灵活列更新这一功能从 x.x.x 版本开始支持
1. 灵活列更新这一功能还在内测中
2. 目前只有 stream load 这一种导入方式以及使用 stream load 作为其导入方式的工具 (如 doris-flink-connector) 支持灵活列更新功能
3. 在使用灵活列更新时导入文件必须为 json 格式的数据
:::
Expand Down