Skip to content
Merged
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
2 changes: 1 addition & 1 deletion docs/data-operate/update/update-overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ The following diagram shows how `DORIS_DELETE_SIGN` works:

Starting from version 2.0, Doris supports powerful partial column update capabilities on Unique Key Models (MoW). When loading data, users only need to provide the primary key and columns to be updated; unprovided columns will maintain their original values unchanged. This greatly simplifies ETL processes for scenarios like wide table joining and real-time tag updates.

To enable this feature, you need to enable the write-time Merge (MoW) mode when creating the unique key model table, and set the session variable parameter 'enable_unique_key_partial_update' to 'true'. And configure the 'partial_columns' parameter during data loading.
To enable this feature, you need to enable Merge-on-Write (MoW) mode when creating the Unique Key Model table. For INSERT INTO, set the session variable `enable_unique_key_partial_update` to `true` to enable partial column updates; for Stream Load and other import methods, configure the `partial_columns` parameter to enable partial column updates.

```sql
CREATE TABLE user_profiles (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ PROPERTIES (

从 2.0 版本开始,Doris 在主键模型(MoW)上支持了强大的部分列更新能力。用户在导入数据时,只需提供主键和待更新的列,未提供的列将保持其原值不变。这极大地简化了宽表拼接、实时标签更新等场景的ETL流程。

要启用此功能,需在创建主键模型表时,开启 Merge-on-Write (MoW) 模式,并设置变量 `enable_unique_key_partial_update` 为 `true`。并且在数据导入时配置`"partial_columns"`参数
要启用此功能,需在创建主键模型表时,开启 Merge-on-Write (MoW) 模式。对于 INSERT INTO 导入,通过设置 session 变量 `enable_unique_key_partial_update` 为 `true` 来开启部分列更新;对于 Stream Load 等其他导入方式,通过配置 `partial_columns` 参数来开启部分列更新

```sql
CREATE TABLE user_profiles (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ PROPERTIES (

从 2.0 版本开始,Doris 在主键模型(MoW)上支持了强大的部分列更新能力。用户在导入数据时,只需提供主键和待更新的列,未提供的列将保持其原值不变。这极大地简化了宽表拼接、实时标签更新等场景的ETL流程。

要启用此功能,需在创建主键模型表时,开启 Merge-on-Write (MoW) 模式,并设置变量 `enable_unique_key_partial_update` 为 `true`,并且在数据导入时配置`"partial_columns"`参数
要启用此功能,需在创建主键模型表时,开启 Merge-on-Write (MoW) 模式。对于 INSERT INTO 导入,通过设置 session 变量 `enable_unique_key_partial_update` 为 `true` 来开启部分列更新;对于 Stream Load 等其他导入方式,通过配置 `partial_columns` 参数来开启部分列更新

```sql
CREATE TABLE user_profiles (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ PROPERTIES (

从 2.0 版本开始,Doris 在主键模型(MoW)上支持了强大的部分列更新能力。用户在导入数据时,只需提供主键和待更新的列,未提供的列将保持其原值不变。这极大地简化了宽表拼接、实时标签更新等场景的ETL流程。

要启用此功能,需在创建主键模型表时,开启 Merge-on-Write (MoW) 模式,并设置变量 `enable_unique_key_partial_update` 为 `true`,并且在数据导入时配置`"partial_columns"`参数
要启用此功能,需在创建主键模型表时,开启 Merge-on-Write (MoW) 模式。对于 INSERT INTO 导入,通过设置 session 变量 `enable_unique_key_partial_update` 为 `true` 来开启部分列更新;对于 Stream Load 等其他导入方式,通过配置 `partial_columns` 参数来开启部分列更新

```sql
CREATE TABLE user_profiles (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ PROPERTIES (

从 2.0 版本开始,Doris 在主键模型(MoW)上支持了强大的部分列更新能力。用户在导入数据时,只需提供主键和待更新的列,未提供的列将保持其原值不变。这极大地简化了宽表拼接、实时标签更新等场景的ETL流程。

要启用此功能,需在创建主键模型表时,开启 Merge-on-Write (MoW) 模式,并设置变量 `enable_unique_key_partial_update` 为 `true`,并且在数据导入时配置`"partial_columns"`参数
要启用此功能,需在创建主键模型表时,开启 Merge-on-Write (MoW) 模式。对于 INSERT INTO 导入,通过设置 session 变量 `enable_unique_key_partial_update` 为 `true` 来开启部分列更新;对于 Stream Load 等其他导入方式,通过配置 `partial_columns` 参数来开启部分列更新

```sql
CREATE TABLE user_profiles (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ The following diagram shows how `DORIS_DELETE_SIGN` works:

Starting from version 2.0, Doris supports powerful partial column update capabilities on Unique Key Models (MoW). When loading data, users only need to provide the primary key and columns to be updated; unprovided columns will maintain their original values unchanged. This greatly simplifies ETL processes for scenarios like wide table joining and real-time tag updates.

To enable this feature, you need to enable the write-time Merge (MoW) mode when creating the unique key model table, and set the session variable parameter 'enable_unique_key_partial_update' to 'true'. And configure the 'partial_columns' parameter during data loading.
To enable this feature, you need to enable Merge-on-Write (MoW) mode when creating the Unique Key Model table. For INSERT INTO, set the session variable `enable_unique_key_partial_update` to `true` to enable partial column updates; for Stream Load and other import methods, configure the `partial_columns` parameter to enable partial column updates.

```sql
CREATE TABLE user_profiles (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ The following diagram shows how `DORIS_DELETE_SIGN` works:

Starting from version 2.0, Doris supports powerful partial column update capabilities on Unique Key Models (MoW). When loading data, users only need to provide the primary key and columns to be updated; unprovided columns will maintain their original values unchanged. This greatly simplifies ETL processes for scenarios like wide table joining and real-time tag updates.

To enable this feature, you need to enable the write-time Merge (MoW) mode when creating the unique key model table, and set the session variable parameter 'enable_unique_key_partial_update' to 'true'. And configure the 'partial_columns' parameter during data loading.
To enable this feature, you need to enable Merge-on-Write (MoW) mode when creating the Unique Key Model table. For INSERT INTO, set the session variable `enable_unique_key_partial_update` to `true` to enable partial column updates; for Stream Load and other import methods, configure the `partial_columns` parameter to enable partial column updates.

```sql
CREATE TABLE user_profiles (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ The following diagram shows how `DORIS_DELETE_SIGN` works:

Starting from version 2.0, Doris supports powerful partial column update capabilities on Unique Key Models (MoW). When loading data, users only need to provide the primary key and columns to be updated; unprovided columns will maintain their original values unchanged. This greatly simplifies ETL processes for scenarios like wide table joining and real-time tag updates.

To enable this feature, you need to enable the write-time Merge (MoW) mode when creating the unique key model table, and set the session variable parameter 'enable_unique_key_partial_update' to 'true'. And configure the 'partial_columns' parameter during data loading.
To enable this feature, you need to enable Merge-on-Write (MoW) mode when creating the Unique Key Model table. For INSERT INTO, set the session variable `enable_unique_key_partial_update` to `true` to enable partial column updates; for Stream Load and other import methods, configure the `partial_columns` parameter to enable partial column updates.

```sql
CREATE TABLE user_profiles (
Expand Down
Loading