Skip to content

Commit

Permalink
Docs updated for GRPC Error codes
Browse files Browse the repository at this point in the history
  • Loading branch information
indrajit96 committed Aug 14, 2024
1 parent db1fe34 commit b6a0918
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -585,11 +585,14 @@ server side.
If writing your own gRPC clients in the language of choice consult
gRPC guide on [cancellation](https://grpc.io/docs/guides/cancellation/#cancelling-an-rpc-call-on-the-client-side).

### GRPC Error Status Codes
### GRPC Status Codes

Starting from release 24.09, the Triton Python gRPC client introduces support for gRPC error codes in streaming mode, enhancing error reporting capabilities. When this feature is enabled, the Triton server will return standard gRPC error codes and subsequently close the stream after delivering an error
gRPC guide on [status-codes](https://grpc.io/docs/guides/status-codes/)
Starting from release 24.09, Triton server introduces support for gRPC error codes in streaming mode for all clients enhancing error reporting capabilities. When this feature is enabled, the Triton server will return standard gRPC error codes and subsequently close the stream after delivering the error.
This feature is optional can be enabled by adding header with `triton_grpc_error` key and `true` as value.
See [grpc error codes](https://github.com/triton-inference-server/server/tree/main#GRPC-Status-Codes)
in the server to learn about how this is handled on the server side.
See gRPC guide on [status-codes](https://grpc.io/docs/guides/status-codes/) for more details.
Below is a Python snippet to enable the feature.

```python
triton_client = grpcclient.InferenceServerClient(triton_server_url)
Expand Down

0 comments on commit b6a0918

Please sign in to comment.