This is an automated email from the ASF dual-hosted git repository.
yiguolei 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 22aa54e335 [enhancement](config) enlarge max_bytes_per_broker_scanner
to 5G #22099
22aa54e335 is described below
commit 22aa54e33548b25c19e278008354eae1084750fb
Author: Siyang Tang <[email protected]>
AuthorDate: Sun Jul 23 12:00:32 2023 +0800
[enhancement](config) enlarge max_bytes_per_broker_scanner to 5G #22099
---
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 65911bf27a..e911001143 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:`3 * 1024 * 1024 * 1024L` (3G)
+Default:`5 * 1024 * 1024 * 1024L` (5G)
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 f4e481c55a..49de96087e 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 3G, the unit is
bytes.
+ Parameter name: max_bytes_per_broker_scanner, the default is 5G, 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 64763f59d8..5737f042ef 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`
-默认值:3 * 1024 * 1024 * 1024L (3G)
+默认值:5 * 1024 * 1024 * 1024L (5G)
是否可以动态配置: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 73b1c297c8..56e2e0d852 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,默认 3G,单位bytes。
+ 参数名:max_bytes_per_broker_scanner,默认 5G,单位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 f336579a38..6464f98d2d 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 = 3 * 1024 * 1024 * 1024L;
// 3G
+ public static long max_bytes_per_broker_scanner = 5 * 1024 * 1024 * 1024L;
// 5G
/**
* Max number of load jobs, include PENDING、ETL、LOADING、QUORUM_FINISHED.
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]