This is an automated email from the ASF dual-hosted git repository. dataroaring 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 0205f540ac [enhancement](config) Enlarge broker scanner bytes conf to 500G, 5G is still not enough (#22126) 0205f540ac is described below commit 0205f540ac1b60ede556925122cf52b7252f1c3b Author: Siyang Tang <82279870+tangsiyang2...@users.noreply.github.com> AuthorDate: Mon Jul 24 19:49:39 2023 +0800 [enhancement](config) Enlarge broker scanner bytes conf to 500G, 5G is still not enough (#22126) --- docs/en/docs/admin-manual/config/fe-config.md | 2 +- docs/en/docs/data-operate/import/import-way/broker-load-manual.md | 2 +- docs/zh-CN/docs/admin-manual/config/fe-config.md | 2 +- docs/zh-CN/docs/data-operate/import/import-way/broker-load-manual.md | 2 +- fe/fe-common/src/main/java/org/apache/doris/common/Config.java | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/en/docs/admin-manual/config/fe-config.md b/docs/en/docs/admin-manual/config/fe-config.md index e911001143..3ea9052c84 100644 --- a/docs/en/docs/admin-manual/config/fe-config.md +++ b/docs/en/docs/admin-manual/config/fe-config.md @@ -1141,7 +1141,7 @@ fetch stream load record interval. #### `max_bytes_per_broker_scanner` -Default:`5 * 1024 * 1024 * 1024L` (5G) +Default:`500 * 1024 * 1024 * 1024L` (500G) IsMutable:true diff --git a/docs/en/docs/data-operate/import/import-way/broker-load-manual.md b/docs/en/docs/data-operate/import/import-way/broker-load-manual.md index 49de96087e..1c040d25a0 100644 --- a/docs/en/docs/data-operate/import/import-way/broker-load-manual.md +++ b/docs/en/docs/data-operate/import/import-way/broker-load-manual.md @@ -320,7 +320,7 @@ The following configurations belong to the system-level configuration of Broker ````text Parameter name: min_bytes_per_broker_scanner, the default is 64MB, the unit is bytes. Parameter name: max_broker_concurrency, default 10. - Parameter name: max_bytes_per_broker_scanner, the default is 5G, the unit is bytes. + Parameter name: max_bytes_per_broker_scanner, the default is 500G, the unit is bytes. ```` ## Best Practices diff --git a/docs/zh-CN/docs/admin-manual/config/fe-config.md b/docs/zh-CN/docs/admin-manual/config/fe-config.md index 5737f042ef..c990a17177 100644 --- a/docs/zh-CN/docs/admin-manual/config/fe-config.md +++ b/docs/zh-CN/docs/admin-manual/config/fe-config.md @@ -1141,7 +1141,7 @@ current running txns on db xxx is xx, larger than limit xx #### `max_bytes_per_broker_scanner` -默认值:5 * 1024 * 1024 * 1024L (5G) +默认值:500 * 1024 * 1024 * 1024L (500G) 是否可以动态配置:true diff --git a/docs/zh-CN/docs/data-operate/import/import-way/broker-load-manual.md b/docs/zh-CN/docs/data-operate/import/import-way/broker-load-manual.md index 56e2e0d852..2dca54baa1 100644 --- a/docs/zh-CN/docs/data-operate/import/import-way/broker-load-manual.md +++ b/docs/zh-CN/docs/data-operate/import/import-way/broker-load-manual.md @@ -320,7 +320,7 @@ Broker Load 需要借助 Broker 进程访问远端存储,不同的 Broker 需 ```text 参数名:min_bytes_per_broker_scanner, 默认 64MB,单位bytes。 参数名:max_broker_concurrency, 默认 10。 - 参数名:max_bytes_per_broker_scanner,默认 5G,单位bytes。 + 参数名:max_bytes_per_broker_scanner,默认 500G,单位bytes。 ``` ## 最佳实践 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 6464f98d2d..8135696228 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 @@ -803,7 +803,7 @@ public class Config extends ConfigBase { * Commonly, each Backends has one broker scanner. */ @ConfField(mutable = true, masterOnly = true) - public static long max_bytes_per_broker_scanner = 5 * 1024 * 1024 * 1024L; // 5G + public static long max_bytes_per_broker_scanner = 500 * 1024 * 1024 * 1024L; // 500G /** * Max number of load jobs, include PENDING、ETL、LOADING、QUORUM_FINISHED. --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org