This is an automated email from the ASF dual-hosted git repository.
albumenj 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 a4fdc38298 Add Scene (#1877)
a4fdc38298 is described below
commit a4fdc382987c8a9a241ad3cd52026c7bfcf9f6d3
Author: mfordjody <[email protected]>
AuthorDate: Tue Jan 17 14:14:36 2023 +0800
Add Scene (#1877)
---
.../advanced-features-and-usage/performance/config-connections.md | 4 ++++
1 file changed, 4 insertions(+)
diff --git
a/content/zh/docs3-v2/java-sdk/advanced-features-and-usage/performance/config-connections.md
b/content/zh/docs3-v2/java-sdk/advanced-features-and-usage/performance/config-connections.md
index a631912a84..c3b906e2cb 100644
---
a/content/zh/docs3-v2/java-sdk/advanced-features-and-usage/performance/config-connections.md
+++
b/content/zh/docs3-v2/java-sdk/advanced-features-and-usage/performance/config-connections.md
@@ -9,6 +9,10 @@ description: "Dubbo 中服务端和客户端的连接控制"
连接控制功能可以使用户能够控制和管理进出服务器连接数,限制连接数并设置超时,以确保 Dubbo 系统的稳定性和性能,还允许用户根据 IP
地址、端口和协议配置不同级别的访问控制,保护系统免受恶意流量的影响,并降低服务中断的风险,此外提供了一种监视当前流量和连接状态的方法。
## 使用场景
+1. 服务器过载时减少连接数:当服务器过载时,使用 Dubbo 通过设置最大连接限制来减少连接数减少服务器上的负载并防止其崩溃。
+2. 减少服务器受到攻击时的连接数:Dubbo 可以限制服务器受到攻击的连接数防止恶意连接充斥服务器并导致服务器崩溃。
+3. 限制特定服务的连接数:Dubbo 可以限制特定服务连接数防止服务过载过多的请求并确保及时响应所有请求。
+4. 限制来自单个IP地址的连接数:Dubbo 可以限制来自单个地址的连接数降低来自单个IP地址的恶意活动的风险。
## 使用方式
### 服务端连接控制