Lines Matching +full:minimum +full:- +full:bulk
1 ## Demo of Flow-Control mechanism in gRPC Python
2 …h flow-control by default and this example can be used to see this in action. [Read more about Flo…
6 1. The client sends a bulk amount of data(approx. 2 KB in each iteration) to the server in a stream…
7 2. The server applies back-pressure by delaying reading of the requests, which makes the client pau…
31 …, we want to use the smallest size for this example. 16384 (16kB) is the minimum value allowed by …
33 …<br>Bandwidth Delay Product (BDP) is the bandwidth of a network connection times its round-trip la…
35 2. The client then makes a bi-directional streaming call to the server, sending bulk amounts of dat…
40 * **grpc.http2.max_frame_size: 16384** - (Same reasoning as above)
41 * **grpc.http2.bdp_probe: 0** - (Same reasoning as above)
44 …s before starting to read requests. This is done intentionally to apply back-pressure on the clien…
45 …ch request slowly with a simulated 1 second delay, to continue applying back-pressure on the clien…