Decoupled Backends and Models#

Triton can support backends and models that send multiple responses for a request or zero responses for a request. A decoupled model/backend may also send responses out-of-order relative to the order that the request batches are executed. This allows backend to deliver response whenever it deems fit. This is specifically useful in Automated Speech Recognition (ASR). The requests with large number of responses, will not block the responses from other requests from being delivered.

Developing Decoupled Backend/Model#

C++ Backend#

Read carefully about the Triton Backend API, Inference Requests and Responses and Decoupled Responses. The repeat backend and square backend demonstrate how the Triton Backend API can be used to implement a decoupled backend. The example is designed to show the flexibility of the Triton API and in no way should be used in production. This example may process multiple batches of requests at the same time without having to increase the instance count. In real deployment, the backend should not allow the caller thread to return from TRITONBACKEND_ModelInstanceExecute until that instance is ready to handle another set of requests. If not designed properly the backend can be easily over-subscribed. This can also cause under-utilization of features like Dynamic Batching as it leads to eager batching.

Python model using Python Backend#

Read carefully about the Python Backend, and specifically execute.

The decoupled examples demonstrates how decoupled API can be used to implement a decoupled python model. As noted in the examples, these are designed to show the flexibility of the decoupled API and in no way should be used in production.

Deploying Decoupled Models#

The decoupled model transaction policy must be set in the provided model configuration file for the model. Triton requires this information to enable special handling required for decoupled models. Deploying decoupled models without this configuration setting will throw errors at the runtime.

Running Inference on Decoupled Models#

Inference Protocols and APIs describes various ways a client can communicate and run inference on the server. For decoupled models, Triton’s HTTP endpoint cannot be used for running inference as it supports exactly one response per request. Even standard ModelInfer RPC in the GRPC endpoint does not support decoupled responses. In order to run inference on a decoupled model, the client must use the bi-directional streaming RPC. See here for more details. The decoupled_test.py demonstrates how the gRPC streaming can be used to infer decoupled models.

If using Triton’s in-process C API, your application should be cognizant that the callback function you registered with TRITONSERVER_InferenceRequestSetResponseCallback can be invoked any number of times, each time with a new response. You can take a look at grpc_server.cc

Knowing When a Decoupled Inference Request is Complete#

An inference request is considered complete when a response containing the TRITONSERVER_RESPONSE_COMPLETE_FINAL flag is received from a model/backend.

  1. Client applications using streaming GRPC can access this information by checking the response parameters for the "triton_final_response" parameter. Decoupled models may not send a response for each request depending on how the model/backend is designed. In these cases where no response is sent by the backend, the streaming GRPC client can opt-in to receive an empty final response for each request. By default, empty final responses are not sent to save on network traffic.

    # Example of streaming GRPC client opting-in
    client.async_stream_infer(
      ...,
      enable_empty_final_response=True
    )
    
  2. Client applications using the C API can check the TRITONSERVER_RESPONSE_COMPLETE_FINAL flag directly in their response handling / callback logic.

The decoupled_test.py demonstrates an example of opting-in through the streaming GRPC Python client API and programmatically identifying when a final response is received through the "triton_final_response" response parameter.