This is an automated email from the ASF dual-hosted git repository.
morningman 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 4c58d62b2af [fix](config) fe config sync_image_timeout_second should
not be masterOnly (#43954)
4c58d62b2af is described below
commit 4c58d62b2af82337dcb34af2a92bf53026eeae71
Author: nsn_huang <[email protected]>
AuthorDate: Thu Nov 21 14:04:07 2024 +0800
[fix](config) fe config sync_image_timeout_second should not be masterOnly
(#43954)
### What problem does this PR solve?
sync_image_timeout_second is for the follower,should not be masterOnly
Co-authored-by: huangwenbo04 <[email protected]>
---
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 efc2d11a092..689c85940df 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
@@ -2673,7 +2673,7 @@ public class Config extends ConfigBase {
})
public static boolean ignore_unknown_metadata_module = false;
- @ConfField(mutable = true, masterOnly = true, description = {
+ @ConfField(mutable = true, description = {
"从主节点同步image文件的超时时间,用户可根据${meta_dir}/image文件夹下面的image文件大小和节点间的网络环境调整,"
+ "单位为秒,默认值300",
"The timeout for FE Follower/Observer synchronizing an image file
from the FE Master, can be adjusted by "
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]