This is an automated email from the ASF dual-hosted git repository.
yizhenqiang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/dubbo-website.git
The following commit(s) were added to refs/heads/master by this push:
new 342374444c6 Update isolation-executor.md
342374444c6 is described below
commit 342374444c6919861a060a0e06c4c323dd6dcf2c
Author: yizhenqiang <[email protected]>
AuthorDate: Wed Dec 20 20:40:47 2023 +0800
Update isolation-executor.md
ApplicationConfig adds String executor-management-mode parameter, the
configuration values are default and isolation, and the default is isolation.
---
.../advanced-features-and-usage/service/isolation-executor.md | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git
a/content/zh-cn/overview/mannual/java-sdk/advanced-features-and-usage/service/isolation-executor.md
b/content/zh-cn/overview/mannual/java-sdk/advanced-features-and-usage/service/isolation-executor.md
index 961d7cb6d28..95691105c65 100644
---
a/content/zh-cn/overview/mannual/java-sdk/advanced-features-and-usage/service/isolation-executor.md
+++
b/content/zh-cn/overview/mannual/java-sdk/advanced-features-and-usage/service/isolation-executor.md
@@ -26,7 +26,7 @@ weight: 4
目前可以以 API、XML、Annotation 的方式进行配置
**配置参数**
-- `ApplicationConfig` 新增 `String executor-management-mode` 参数,配置值为 `default` 和
`isolation` ,默认为 `default`。
+- `ApplicationConfig` 新增 `String executor-management-mode` 参数,配置值为 `default` 和
`isolation` ,默认为 `isolation`。
- `executor-management-mode = default` 使用原有 **以协议端口为粒度、服务间共享** 的线程池管理方式
- `executor-management-mode = isolation` 使用新增的 **以服务三元组为粒度、服务间隔离** 的线程池管理方式
- `ServiceConfig` 新增 `Executor executor`
参数,**用以服务间隔离的线程池**,可以由用户配置化、提供自己想要的线程池,若没有指定,则会根据协议配置(`ProtocolConfig`)信息构建默认的线程池用以服务隔离。
@@ -237,4 +237,4 @@ public class HelloServiceImplV3 implements HelloService {
return "server hello";
}
}
-```
\ No newline at end of file
+```