This is an automated email from the ASF dual-hosted git repository. w41ter pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/master by this push: new 314b708cb5e [chore](config) disable restore_reset_index_id by default (#46104) 314b708cb5e is described below commit 314b708cb5e41d118ee2f4ba49a09602dd638f0c Author: walter <maoch...@selectdb.com> AuthorDate: Fri Dec 27 20:40:04 2024 +0800 [chore](config) disable restore_reset_index_id by default (#46104) otherwise, the restored inverted index files are not readable. --- fe/fe-common/src/main/java/org/apache/doris/common/Config.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fe/fe-common/src/main/java/org/apache/doris/common/Config.java b/fe/fe-common/src/main/java/org/apache/doris/common/Config.java index a972d1bd86c..c796a594537 100644 --- a/fe/fe-common/src/main/java/org/apache/doris/common/Config.java +++ b/fe/fe-common/src/main/java/org/apache/doris/common/Config.java @@ -1658,7 +1658,7 @@ public class Config extends ConfigBase { * two clusters must be the same. */ @ConfField(mutable = true, masterOnly = true) - public static boolean restore_reset_index_id = true; + public static boolean restore_reset_index_id = false; /** * Control the max num of tablets per backup job involved. --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org