-
Notifications
You must be signed in to change notification settings - Fork 7.7k
GoAgent Connection statusEn
Michael-X-Net edited this page Feb 4, 2023
·
1 revision
The connected link on the status page indicates the number of active connections that have been established. There are currently two numbers, explained below:
- The google server allows 240 seconds after establishing the ssl handshake.
- Once an ssl is used to access a certain host, it cannot be replaced by another host
Therefore, 2 important connection pools are established:
- unused ssl connection pool
- Generic gae connection pool
The rules are as follows:
- The gae connection can be used repeatedly, as long as there is no abnormality in the use process.
- The unused connection pool can be used by gae connection when needed, and can also be used by Direct mode, that is, the host is a website such as www.googleapi.com.
As long as there are available connections in these two connection pools, they can be used normally.