Skip to content

Commit 0cc6976

Browse files
authored
[BugFix] Disable enable_backup_materialized_view by default since it's experimental (backport #57483) (backport #57490) (#57520)
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
1 parent 548051f commit 0cc6976

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

docs/en/administration/management/FE_configuration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1213,7 +1213,7 @@ ADMIN SET FRONTEND CONFIG ("key" = "value");
12131213

12141214
##### enable_backup_materialized_view
12151215

1216-
- Default: true
1216+
- Default: false
12171217
- Type: Boolean
12181218
- Unit: -
12191219
- Is mutable: Yes

docs/ja/administration/management/FE_configuration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -845,7 +845,7 @@ ADMIN SET FRONTEND CONFIG ("key" = "value");
845845

846846
##### enable_backup_materialized_view
847847

848-
- デフォルト: true
848+
- デフォルト: false
849849
- タイプ: Boolean
850850
- 単位: -
851851
- 変更可能: はい

docs/zh/administration/management/FE_configuration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1205,7 +1205,7 @@ ADMIN SET FRONTEND CONFIG ("key" = "value");
12051205

12061206
##### enable_backup_materialized_view
12071207

1208-
- 默认值:true
1208+
- 默认值:false
12091209
- 类型:Boolean
12101210
- 单位:-
12111211
- 是否动态:是

fe/fe-core/src/main/java/com/starrocks/common/Config.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1328,7 +1328,7 @@ public class Config extends ConfigBase {
13281328
* whether backup materialized views in backing databases. If not, will skip backing materialized views.
13291329
*/
13301330
@ConfField(mutable = true)
1331-
public static boolean enable_backup_materialized_view = true;
1331+
public static boolean enable_backup_materialized_view = false;
13321332

13331333
/**
13341334
* Whether to display all task runs or only the newest task run in ShowMaterializedViews command to be

0 commit comments

Comments
 (0)