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

Add information about retrying on 429 error code #23153

Merged
merged 1 commit into from
Sep 2, 2024
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
9 changes: 7 additions & 2 deletions docs/src/main/sphinx/develop/client-protocol.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,13 @@ links.
If the client request returns an HTTP 502, 503, or 504, that means there was
an intermittent problem processing request and the client should try again in
50-100 ms. Trino does not generate those codes by itself, but those can be
generated by gateways/load balancers in front of Trino. Any HTTP status other
than 502, 503, 504 or 200 means that query processing has failed.
generated by load balancers in front of Trino.

Additionally, if the request returns a 429 status code, the client should
retry the request using the `Retry-After` header value provided.

Any HTTP status other than 502, 503, 504 or 200 means that query processing
has failed.

The `/v1/statement` `POST` request returns a JSON document of type
`QueryResults`, as well as a collection of response headers. The `QueryResults`
Expand Down