diff options
author | Reo Kimura <reo.kimura@mongodb.com> | 2020-07-13 21:51:49 +0000 |
---|---|---|
committer | Evergreen Agent <no-reply@evergreen.mongodb.com> | 2020-07-15 20:19:42 +0000 |
commit | 7d05508e1761d256cff378647b0a9a81fbe4f811 (patch) | |
tree | d71d507ed1d2f0e8f5c66f5238945a4033762591 /docs | |
parent | 061abbb10a04f3f8856b6eb1105ed08f5f93b053 (diff) | |
download | mongo-7d05508e1761d256cff378647b0a9a81fbe4f811.tar.gz |
SERVER-48755 linked ingress and egress networking to one another
Diffstat (limited to 'docs')
-rw-r--r-- | docs/egress_networking.md | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/docs/egress_networking.md b/docs/egress_networking.md index 5cf9e3f96ba..4b4fd387b49 100644 --- a/docs/egress_networking.md +++ b/docs/egress_networking.md @@ -22,7 +22,10 @@ The scheduling of requests is managed by the [task executor][task_executor_h], w Client-side legacy networking draws upon the `DBClientBase` class, of which there are multiple subclasses residing in the `src/mongo/client` folder. The [replica set DBClient][dbclient_rs_h] discerns which one of multiple servers in a replica set is the primary/master at construction time, and establishes a connection (using the `DBClientConnection` wrapper class, also extended from `DBClientBase`) with the replica set via the primary/master. In cases where the primary/master server is unresponsive within a specified time range, the RS DBClient will automatically attempt to establish a secondary/slave server as the new primary/master (see [automatic failover][automatic_failover]). -**See also:** [Internal Ingress Networking][ingress_networking] +## See Also +Below are links to relevant server-related internal documentation. +- [Ingress Networking][ingress_networking] +- Transport Layer (in progress) [remote_command_request_h]: ../src/mongo/executor/remote_command_request.h [remote_command_response_h]: ../src/mongo/executor/remote_command_response.h |