This is an automated email from the ASF dual-hosted git repository. kassiez pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/doris-website.git
The following commit(s) were added to refs/heads/master by this push: new 0bdb6d17676 fix some param error in fe-config.md (#1626) 0bdb6d17676 is described below commit 0bdb6d17676234a04fd4d089f1f20bc424780bc5 Author: lixiao <2135929...@qq.com> AuthorDate: Thu Jan 2 14:16:09 2025 +0800 fix some param error in fe-config.md (#1626) ## Versions - [ ] dev - [ ] 3.0 - [x] 2.1 - [x] 2.0 ## Languages - [x] Chinese - [x] English ## Docs Checklist - [ ] Checked by AI - [ ] Test Cases Built --- .../version-2.0/admin-manual/config/fe-config.md | 8 ++++---- .../version-2.1/admin-manual/config/fe-config.md | 10 +++++----- versioned_docs/version-2.0/admin-manual/config/fe-config.md | 8 ++++---- versioned_docs/version-2.1/admin-manual/config/fe-config.md | 8 ++++---- 4 files changed, 17 insertions(+), 17 deletions(-) diff --git a/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.0/admin-manual/config/fe-config.md b/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.0/admin-manual/config/fe-config.md index 0c8522b9529..0da8f04bdaf 100644 --- a/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.0/admin-manual/config/fe-config.md +++ b/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.0/admin-manual/config/fe-config.md @@ -1204,23 +1204,23 @@ broker scanner 的最大并发数。 #### `max_routine_load_task_num_per_be` -默认值:5 +默认值:1024 是否可以动态配置:true 是否为 Master FE 节点独有的配置项:true -每个 BE 的最大并发例 Routine Load 任务数。这是为了限制发送到 BE 的 Routine Load 任务的数量,并且它也应该小于 BE config `routine_load_thread_pool_size`(默认 10),这是 BE 上的 Routine Load 任务线程池大小。 +每个 BE 的最大并发例 Routine Load 任务数。这是为了限制发送到 BE 的 Routine Load 任务的数量,并且它也应该小于 BE config `max_routine_load_thread_pool_size`(默认 1024),这是 BE 上的 Routine Load 任务线程池大小。在2.0版本中,该默认值从2.0.13版本开始为1024。在此之前默认值是5。 #### `max_routine_load_task_concurrent_num` -默认值:5 +默认值:256 是否可以动态配置:true 是否为 Master FE 节点独有的配置项:true -单个 Routine Load 作业的最大并发任务数 +单个 Routine Load 作业的最大并发任务数。在2.0版本中,该默认值从2.0.13版本开始为256。在此之前默认值是5。 #### `max_routine_load_job_num` diff --git a/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/admin-manual/config/fe-config.md b/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/admin-manual/config/fe-config.md index fca04912ca0..995d55c970c 100644 --- a/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/admin-manual/config/fe-config.md +++ b/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/admin-manual/config/fe-config.md @@ -1216,23 +1216,23 @@ broker scanner 的最大并发数。 #### `max_routine_load_task_num_per_be` -默认值:5 +默认值:1024 是否可以动态配置:true 是否为 Master FE 节点独有的配置项:true -每个 BE 的最大并发例 Routine Load 任务数。这是为了限制发送到 BE 的 Routine Load 任务的数量,并且它也应该小于 BE config `routine_load_thread_pool_size`(默认 10),这是 BE 上的 Routine Load 任务线程池大小。 +每个 BE 的最大并发例 Routine Load 任务数。这是为了限制发送到 BE 的 Routine Load 任务的数量,并且它也应该小于 BE config `max_routine_load_thread_pool_size`(默认 1024),这是 BE 上的 Routine Load 任务线程池大小。在2.1版本中,该默认值从2.1.4版本开始为1024。在此之前默认值是5。 #### `max_routine_load_task_concurrent_num` -默认值:5 +默认值:256 是否可以动态配置:true 是否为 Master FE 节点独有的配置项:true -单个 Routine Load 作业的最大并发任务数 +单个 Routine Load 作业的最大并发任务数。在2.1版本中,该默认值从2.1.4版本开始为256。在此之前默认值是5。 #### `max_routine_load_job_num` @@ -2771,4 +2771,4 @@ Doris 为了兼用 mysql 周边工具生态,会内置一个名为 mysql 的数 默认值:1 -用于控制 ProfileManager 进行 Profile 垃圾回收的间隔时间,垃圾回收期间 ProfileManager 会把多余的以及过期的 profile 从内存和磁盘中清理掉,节省内存。 \ No newline at end of file +用于控制 ProfileManager 进行 Profile 垃圾回收的间隔时间,垃圾回收期间 ProfileManager 会把多余的以及过期的 profile 从内存和磁盘中清理掉,节省内存。 diff --git a/versioned_docs/version-2.0/admin-manual/config/fe-config.md b/versioned_docs/version-2.0/admin-manual/config/fe-config.md index f7251ac1495..714b9d7c887 100644 --- a/versioned_docs/version-2.0/admin-manual/config/fe-config.md +++ b/versioned_docs/version-2.0/admin-manual/config/fe-config.md @@ -1208,23 +1208,23 @@ As long as one BE is down, Routine Load cannot be automatically restored #### `max_routine_load_task_num_per_be` -Default:5 +Default:1024 IsMutable:true MasterOnly:true -the max concurrent routine load task num per BE. This is to limit the num of routine load tasks sending to a BE, and it should also less than BE config 'routine_load_thread_pool_size'(default 10), which is the routine load task thread pool size on BE. +the max concurrent routine load task num per BE. This is to limit the num of routine load tasks sending to a BE, and it should also less than BE config 'max_routine_load_thread_pool_size'(default 1024), which is the routine load task thread pool size on BE. In major versions of 2.0, the default value is 1024 starting with version 2.0.13. And before version 2.0.13 the default value was 5. #### `max_routine_load_task_concurrent_num` -Default:5 +Default:256 IsMutable:true MasterOnly:true -the max concurrent routine load task num of a single routine load job +the max concurrent routine load task num of a single routine load job. In major versions of 2.0, the default value is 256 starting with version 2.0.13. And before version 2.0.13 the default value was 5. #### `max_routine_load_job_num` diff --git a/versioned_docs/version-2.1/admin-manual/config/fe-config.md b/versioned_docs/version-2.1/admin-manual/config/fe-config.md index 120fd51f298..6e3c0be4566 100644 --- a/versioned_docs/version-2.1/admin-manual/config/fe-config.md +++ b/versioned_docs/version-2.1/admin-manual/config/fe-config.md @@ -1216,23 +1216,23 @@ As long as one BE is down, Routine Load cannot be automatically restored #### `max_routine_load_task_num_per_be` -Default:5 +Default:1024 IsMutable:true MasterOnly:true -the max concurrent routine load task num per BE. This is to limit the num of routine load tasks sending to a BE, and it should also less than BE config 'routine_load_thread_pool_size'(default 10), which is the routine load task thread pool size on BE. +the max concurrent routine load task num per BE. This is to limit the num of routine load tasks sending to a BE, and it should also less than BE config 'max_routine_load_thread_pool_size'(default 1024), which is the routine load task thread pool size on BE. In major versions of 2.1, the default value is 1024 starting with version 2.1.4. And before version 2.1.4 the default value was 5. #### `max_routine_load_task_concurrent_num` -Default:5 +Default:256 IsMutable:true MasterOnly:true -the max concurrent routine load task num of a single routine load job +the max concurrent routine load task num of a single routine load job. In major versions of 2.1, the default value is 256 starting with version 2.1.4. And before version 2.1.4 the default value was 5. #### `max_routine_load_job_num` --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org