xref: /aosp_15_r20/external/grpc-grpc/doc/core/grpc-client-server-polling-engine-usage.md (revision cc02d7e222339f7a4f6ba5f422e6413f4bd931f2)
1# Polling Engine Usage on gRPC client and Server
2
3_Author: Sree Kuchibhotla (@sreecha) - Sep 2018_
4
5
6This document talks about how polling engine is used in gRPC core (both on client and server code paths).
7
8## gRPC client
9
10### Relation between Call, Channel (sub-channels), Completion queue, `grpc_pollset`
11- A gRPC Call is tied to a channel (more specifically a sub-channel) and a completion queue for the lifetime of the call.
12- Once a _sub-channel_ is picked for the call, the file-descriptor (socket fd in case of TCP channels) is added to the pollset corresponding to call's completion queue. (Recall that as per [grpc-cq](grpc-cq.md), a completion queue has a pollset by default)
13
14![image](../images/grpc-call-channel-cq.png)
15
16
17### Making progress on Async `connect()` on sub-channels  (`grpc_pollset_set` usecase)
18- A gRPC channel is created between a client and a 'target'. The 'target' may resolve in to one or more backend servers.
19- A sub-channel is the 'connection' from a client to the backend server
20- While establishing sub-channels (i.e connections) to the backends, gRPC issues async [`connect()`](https://github.com/grpc/grpc/blob/v1.15.1/src/core/lib/iomgr/tcp_client_posix.cc#L296) calls which may not complete right away.  When the `connect()` eventually succeeds, the socket fd is make 'writable'
21  - This means that the polling engine must be monitoring all these sub-channel `fd`s for writable events and we need to make sure there is a polling thread that monitors all these fds
22  - To accomplish this, the `grpc_pollset_set` is used the following way (see picture below)
23
24![image](../images/grpc-client-lb-pss.png)
25
26## gRPC server
27
28- The listening fd (i.e., the socket fd corresponding to the server listening port) is added to each of the server completion queues. Note that in gRPC we use SO_REUSEPORT option and create multiple listening fds but all of them map to the same listening port
29- A new incoming channel is assigned to some server completion queue picked randomly (note that we currently [round-robin](https://github.com/grpc/grpc/blob/v1.15.1/src/core/lib/iomgr/tcp_server_posix.cc#L231) over the server completion queues)
30
31![image](../images/grpc-server-cq-fds.png)
32
33