Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Edit Nginx timeouts diagram to match Envoy's in gep-1742.md #2117

Merged
merged 1 commit into from
Jun 22, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 7 additions & 4 deletions geps/gep-1742.md
Original file line number Diff line number Diff line change
Expand Up @@ -161,24 +161,27 @@ sequenceDiagram
participant P as Nginx
participant U as Upstream
C->>P: Connection Started
activate P
C->>P: Starts sending Request
C->>P: Finishes Headers
Note right of P: client_headers_timeout
deactivate P
C->>P: Finishes request
activate U
note left of U: proxy_connect_timeout<br/>grpc_connect_timeout
deactivate U
P->>U: Connection Started
Activate U
Activate U
P->>U: Starts sending Request
activate U
note left of U: proxy_connect_timeout<br/>grpc_connect_timeout
deactivate U
P->>U: Finishes Headers
P->>U: Finishes request
Note right of U: (between write operations)<br/>proxy_send_timeout<br/>grpc_send_timeout
deactivate U
activate U
U->>P: Starts Response
U->>P: Finishes Headers
Note right of U: proxy_read_timeout<br/>grpc_read_timeout
Note right of U: (between read operations)<br/>proxy_read_timeout<br/>grpc_read_timeout
U->>P: Finishes Response
deactivate U
P->>C: Starts Response
Expand Down