You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Update getting_started.zh-cn.md
* Update getting_started.zh-cn.md
Modify some language expressions
* Update getting_started.zh-cn.md
Modify some language expressions
* Modify some language expressions
* Update applicability.zh-cn.md
* Update components.zh-cn.md
* Update errors.zh-cn.md
make sentences more fluent
* Update components.zh-cn.md
add some notes
* Update windows.zh-cn.md
format java code
* Update errors.zh-cn.md
wrap some lines
---------
Co-authored-by: ian zhang <[email protected]>
When a new session request is sent to the **Router**, it gets forwarded to the **New Session Queue**,
60
-
where it will wait in the queue. The **Distributor** will poll the **New Session Queue** for pending
61
-
new session requests, and then finds a suitable **Node** where the session can be created. After the
62
-
session has been created, the **Distributor** stores in the **Session Map** the relation between the
63
-
session id and **Node** where the session is being executed.
46
+
#### 查询新会话队列并处理任何未决的新会话请求
64
47
65
-
## Session Map
48
+
当一个新的会话请求被发送到**路由器**时,它被转发到**新会话队列**,它将在队列中等待。 **Distributor** 将轮询**新会话队列**以查找未决的新会话请求,然后找到可以创建会话的合适**Node**。会话创建后,**分发器**将会话 ID 与正在执行会话的**Node**之间的关系存储在**会话映射**中。
66
49
67
-
The **Session Map** is a data store that keeps the relationship between the session id and the **Node**
68
-
where the session is running. It supports the **Router** in the process of forwarding a request to the
69
-
**Node**. The **Router** will ask the **Session Map** for the **Node** associated to a session id.
50
+
## 会话映射(Session Map)
70
51
71
-
## New Session Queue
52
+
**会话映射** 是一个数据存储,用于保存会话 ID 和运行会话的**Node**之间的关系。它支持**路由器**在将请求转发到**Node**的过程中进行查询。**路由器**将向**会话映射**询问与会话 ID 关联的**Node**。
72
53
73
-
The **New Session Queue** holds all the new session requests in a FIFO order. It has configurable
74
-
parameters for setting the request timeout and request retry interval (how often the timeout will
75
-
be checked).
54
+
## 新会话队列(New Session Queue)
76
55
77
-
The **Router** adds the new session request to the **New Session Queue** and waits for the response.
78
-
The **New Session Queue** regularly checks if any request in the queue has timed out, if so the request
0 commit comments