Triton Inference Server is an inference engine developed by NVIDIA. It lets you deploy models from various AI frameworks—such as TensorRT, TensorFlow, PyTorch, and ONNX—as online inference services and supports multi-model management and custom backends. You can quickly deploy Triton-based inference services on PAI Elastic Algorithm Service (EAS).
Prerequisites
-
An Object Storage Service (OSS) bucket in the same region as PAI.
-
Trained model files, such as
.pt,.onnx,.plan, or.savedmodel.
Quick start: Deploy a single-model service
Step 1: Prepare the model repository
Triton requires a specific directory structure in an Object Storage Service (OSS) bucket. Create the directories in the following format. For instructions, see Manage directories and Upload files.
oss://your-bucket/models/triton/
└── your_model_name/
├── 1/ # Version directory (must be a number)
│ └── model.pt # Model file
└── config.pbtxt # Model configuration file
Key requirements:
-
The version directory name must be a number, such as
1,2, or3. -
A higher number indicates a newer version.
-
Each model requires a
config.pbtxtconfiguration file.
Step 2: Create the model configuration file
Create a config.pbtxt file to configure the basic information for your model. The following is an example:
name: "your_model_name"
platform: "pytorch_libtorch"
max_batch_size: 128
input [
{
name: "INPUT__0"
data_type: TYPE_FP32
dims: [ 3, -1, -1 ]
}
]
output [
{
name: "OUTPUT__0"
data_type: TYPE_FP32
dims: [ 1000 ]
}
]
# Use a GPU for inference
# instance_group [
# {
# kind: KIND_GPU
# }
# ]
# Model version configuration
# Load only the latest version (default behavior)
# version_policy: { latest: { num_versions: 1 }}
# Load all versions
# version_policy: { all { }}
# Load the two latest versions
# version_policy: { latest: { num_versions: 2 }}
# Load specific versions
# version_policy: { specific: { versions: [1, 3] }}
Parameters
|
Parameter |
Required |
Description |
|
|
No |
The name of the model. If specified, this name must match the model directory name. |
|
|
Yes |
The model framework. Valid values: |
|
|
Yes |
An alternative to |
|
|
Yes |
The maximum batch size. Set this to |
|
|
Yes |
The input tensor configuration, including |
|
|
Yes |
The output tensor configuration, including |
|
|
No |
Specifies the inference device: |
|
|
No |
Controls which model versions are loaded. For a configuration example, see the preceding |
You must specify either the platform or the backend parameter.
Step 3: Deploy the service
-
Log on to the PAI console and select your target region in the top navigation bar.
-
In the left-side navigation pane, click Elastic Algorithm Service (EAS), select the target workspace, and then click Deploy Service.
-
In the Scenario-based Model Deployment section, click Triton Deployment.
-
Configure the deployment parameters:
-
Service Name: Enter a custom name for the service.
-
Model Configuration: For the configuration type, select OSS, and then enter the path to your model repository, such as
oss://your-bucket/models/triton/. -
Number of Replicas and Resource Specification: Select values based on your requirements. For help estimating the required GPU memory, see Estimate the GPU memory required for large models.
-
-
Click Deploy and wait for the service to start.
Step 4: Enable gRPC (Optional)
By default, Triton provides an HTTP service on port 8000. To use gRPC, perform the following steps:
-
In the upper-right corner of the service configuration page, click Convert to Custom Deployment.
-
In the Environment Information section, set the Port Number to
8001. -
Under Features > Advanced Networking, enable the gRPC option.
-
Click Deploy.
After the model is deployed, you can call the service.
Deploy a multi-model service
To deploy multiple models in a single Triton instance, place them in the same model repository directory:
oss://your-bucket/models/triton/
├── resnet50_pytorch/
│ ├── 1/
│ │ └── model.pt
│ └── config.pbtxt
├── densenet_onnx/
│ ├── 1/
│ │ └── model.onnx
│ └── config.pbtxt
└── classifier_tensorflow/
├── 1/
│ └── model.savedmodel/
│ ├── saved_model.pb
│ └── variables/
└── config.pbtxt
The deployment steps are the same as for a single model. Triton automatically loads all models in the repository.
Python backend for custom inference
When you need to customize pre-processing, post-processing, or inference logic, you can use Triton's Python backend.
Directory structure
your_model_name/
├── 1/
│ ├── model.pt # Model file
│ └── model.py # Custom inference logic
└── config.pbtxt
Implement the Python backend
Create a model.py file and define the TritonPythonModel class:
import json
import os
import torch
from torch.utils.dlpack import from_dlpack, to_dlpack
import triton_python_backend_utils as pb_utils
class TritonPythonModel:
"""The class name must be 'TritonPythonModel'."""
def initialize(self, args):
"""
Triton calls this optional function once when it loads a model.
Use it to initialize information related to model properties and configurations.
Parameters
----------
args : A dictionary where both keys and values are strings. It includes:
* model_config: Model configuration information in JSON format.
* model_instance_kind: The device type.
* model_instance_device_id: The device ID.
* model_repository: The path to the model repository.
* model_version: The model version.
* model_name: The model name.
"""
# Parse the model configuration from the JSON string into a Python dictionary.
self.model_config = model_config = json.loads(args["model_config"])
# Get properties from the model configuration file.
output_config = pb_utils.get_output_config_by_name(model_config, "OUTPUT__0")
# Convert Triton types to NumPy types.
self.output_dtype = pb_utils.triton_string_to_numpy(output_config["data_type"])
# Get the path to the model repository.
self.model_directory = os.path.dirname(os.path.realpath(__file__))
# Get the device for model inference. This example uses a GPU.
self.device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
print("device: ", self.device)
model_path = os.path.join(self.model_directory, "model.pt")
if not os.path.exists(model_path):
raise pb_utils.TritonModelException("Cannot find the pytorch model")
# Load the PyTorch model to the GPU by using .to(self.device).
self.model = torch.jit.load(model_path).to(self.device)
print("Initialized...")
def execute(self, requests):
"""
This required function executes the model. Triton calls it for every inference request.
If batching is enabled, you must implement the batch processing logic.
Parameters
----------
requests : A list of pb_utils.InferenceRequest objects.
Returns
-------
A list of pb_utils.InferenceResponse objects. The list must have the same length as the requests list.
"""
output_dtype = self.output_dtype
responses = []
# Iterate through the requests list and create a corresponding response for each request.
for request in requests:
# Get the input tensor.
input_tensor = pb_utils.get_input_tensor_by_name(request, "INPUT__0")
# Convert the Triton tensor to a Torch tensor.
pytorch_tensor = from_dlpack(input_tensor.to_dlpack())
if pytorch_tensor.shape[2] > 1000 or pytorch_tensor.shape[3] > 1000:
responses.append(
pb_utils.InferenceResponse(
output_tensors=[],
error=pb_utils.TritonError(
"Image shape should not be larger than 1000"
),
)
)
continue
# Run inference on the GPU.
prediction = self.model(pytorch_tensor.to(self.device))
# Convert the Torch output tensor to a Triton tensor.
out_tensor = pb_utils.Tensor.from_dlpack("OUTPUT__0", to_dlpack(prediction))
inference_response = pb_utils.InferenceResponse(output_tensors=[out_tensor])
responses.append(inference_response)
return responses
def finalize(self):
"""
This optional function is called when the model is unloaded. Use it for cleanup tasks.
"""
print("Cleaning up...")
When you use a Python backend, be aware that some Triton behaviors change:
-
max_batch_sizeis ignored: Themax_batch_sizeparameter in theconfig.pbtxtfile does not enable dynamic batching for the Python backend. You must iterate through therequestslist in yourexecutemethod and manually build batches for inference. -
instance_groupis ignored: Theinstance_groupsetting inconfig.pbtxtdoes not control whether the Python backend uses a CPU or GPU. You must explicitly move the model and data to the target device in yourinitializeandexecutemethods with code such aspytorch_tensor.to(torch.device("cuda")).
Update the configuration file
name: "resnet50_pt"
backend: "python"
max_batch_size: 128
input [
{
name: "INPUT__0"
data_type: TYPE_FP32
dims: [ 3, -1, -1 ]
}
]
output [
{
name: "OUTPUT__0"
data_type: TYPE_FP32
dims: [ 1000 ]
}
]
parameters: {
key: "FORCE_CPU_ONLY_INPUT_TENSORS"
value: {string_value: "no"}
}
Key parameter descriptions:
-
backend: Must be set to
python. -
parameters: This is an optional configuration. If you run inference on a GPU, set the
FORCE_CPU_ONLY_INPUT_TENSORSparameter tonoto avoid unnecessary overhead from copying input tensors between the CPU and GPU.
Deploy the service
When using the Python backend, you must configure shared memory. Navigate to , enter the following JSON configuration, and then deploy the service.
{
"metadata": {
"name": "triton_server_test",
"instance": 1
},
"cloud": {
"computing": {
"instance_type": "ml.gu7i.c8m30.1-gu30",
"instances": null
}
},
"containers": [
{
"command": "tritonserver --model-repository=/models",
"image": "eas-registry-vpc.<region>.cr.aliyuncs.com/pai-eas/tritonserver:25.03-py3",
"port": 8000,
"prepare": {
"pythonRequirements": [
"torch==2.0.1"
]
}
}
],
"storage": [
{
"mount_path": "/models",
"oss": {
"path": "oss://oss-test/models/triton_backend/"
}
},
{
"empty_dir": {
"medium": "memory",
// Configure 1 GB of shared memory.
"size_limit": 1
},
"mount_path": "/dev/shm"
}
]
}
Key JSON configuration parameters:
-
containers[0].image: The official Triton image. Replace<region>with the region where your service is located. -
containers[0].prepare.pythonRequirements: List your Python dependencies here. EAS automatically installs them before the service starts. -
storage: This contains two mount items.-
The first item mounts your OSS model repository path to the
/modelsdirectory in the container. -
The second item is a required configuration for shared memory. The Triton Server and Python backend processes use the
/dev/shmshared memory path to pass tensor data with zero-copy for maximum performance. Thesize_limitis specified in GB. Estimate the required size based on your model and expected concurrency.
-
Call the service
Get the service endpoint and token
-
Go to the Elastic Algorithm Service (EAS) page and click the name of your service.
-
On the Service Details tab, click View Endpoint Information. Copy the Internet Endpoint and Token.
Send an HTTP request
If the port number is set to 8000, the service supports HTTP requests.
import numpy as np
# To install the tritonclient package, run the following command: pip install tritonclient
import tritonclient.http as httpclient
# The public endpoint generated after the service is deployed. Do not include the http:// prefix.
url = '1859257******.cn-hangzhou.pai-eas.aliyuncs.com/api/predict/triton_server_test'
triton_client = httpclient.InferenceServerClient(url=url)
image = np.ones((1,3,224,224))
image = image.astype(np.float32)
inputs = []
inputs.append(httpclient.InferInput('INPUT__0', image.shape, "FP32"))
inputs[0].set_data_from_numpy(image, binary_data=False)
outputs = []
outputs.append(httpclient.InferRequestedOutput('OUTPUT__0', binary_data=False)) # Get a 1000-dimensional vector.
# Specify the model name, request token, inputs, and outputs.
results = triton_client.infer(
model_name="<your-model-name>",
model_version="<version-num>",
inputs=inputs,
outputs=outputs,
headers={"Authorization": "<your-service-token>"},
)
output_data0 = results.as_numpy('OUTPUT__0')
print(output_data0.shape)
print(output_data0)
Send a gRPC request
If you set the port to 8001 and enable gRPC, the service supports gRPC requests.
The gRPC endpoint is different from the HTTP endpoint. Be sure to get the correct endpoint from the service details page.
#!/usr/bin/env python
import grpc
# To install the tritonclient package, run the following command: pip install tritonclient
from tritonclient.grpc import service_pb2, service_pb2_grpc
import numpy as np
if __name__ == "__main__":
# The service endpoint generated after service deployment. Do not include http://. Append :80 to the end.
host = (
"service_name.115770327099****.cn-beijing.pai-eas.aliyuncs.com:80"
)
# The service token. In a real application, you should use an actual token.
token = "<your-service-token>"
# The model name and version.
model_name = "<your-model-name>"
model_version = "<version-num>"
# Create gRPC metadata for token authentication.
metadata = (("authorization", token),)
# Create a gRPC channel and stub to communicate with the server.
channel = grpc.insecure_channel(host)
grpc_stub = service_pb2_grpc.GRPCInferenceServiceStub(channel)
# Build the inference request.
request = service_pb2.ModelInferRequest()
request.model_name = model_name
request.model_version = model_version
# Construct the input tensor, which corresponds to the input parameter defined in the model configuration file.
input = service_pb2.ModelInferRequest().InferInputTensor()
input.name = "INPUT__0"
input.datatype = "FP32"
input.shape.extend([1, 3, 224, 224])
# Construct the output tensor, which corresponds to the output parameter defined in the model configuration file.
output = service_pb2.ModelInferRequest().InferRequestedOutputTensor()
output.name = "OUTPUT__0"
# Add the input and output specifications to the request.
request.inputs.extend([input])
request.outputs.extend([output])
# Construct a random array and serialize it into a byte sequence as the input data.
request.raw_input_contents.append(np.random.rand(1, 3, 224, 224).astype(np.float32).tobytes())
# Send the inference request and receive the response.
response, _ = grpc_stub.ModelInfer.with_call(request, metadata=metadata)
# Extract the output tensor from the response.
output_contents = response.raw_output_contents[0] # Assume there is only one output tensor.
output_shape = [1, 1000] # Assume the output tensor shape is [1, 1000].
# Convert the output bytes to a NumPy array.
output_array = np.frombuffer(output_contents, dtype=np.float32)
output_array = output_array.reshape(output_shape)
# Print the model's output result.
print("Model output:\n", output_array)
Debugging tips
Enable verbose logging
Set verbose=True to print the JSON data for requests and responses:
client = httpclient.InferenceServerClient(url=url, verbose=True)
Example output:
POST /api/predict/triton_test/v2/models/resnet50_pt/versions/1/infer, headers {'Authorization': '************1ZDY3OTEzNA=='}
b'{"inputs":[{"name":"INPUT__0","shape":[1,3,32,32],"datatype":"FP32","data":[1.0,1.0,1.0,.....,1.0]}],"outputs":[{"name":"OUTPUT__0","parameters":{"binary_data":false}}]}'
Online debugging
You can test the service directly with the online debugging feature in the console. Complete the request URL with /api/predict/triton_test/v2/models/resnet50_pt/versions/1/infer and use the JSON request data from the verbose logs as the request body.

Stress test the service
The following steps show how to perform a stress test using a single data entry. For more information about stress testing, see Service Stress Testing:
-
On the Benchmark Task tab, click Create Stress Testing Task. Select your deployed Triton service and enter the stress test URL.
-
For the data source, select Single Data Entry, and then use the following code to convert the JSON request body to a Base64-encoded string.
import base64 # An existing JSON request body string json_str = '{"inputs":[{"name":"INPUT__0","shape":[1,3,32,32],"datatype":"FP32","data":[1.0,1.0,.....,1.0]}]}' # Encode directly base64_str = base64.b64encode(json_str.encode('utf-8')).decode('ascii') print(base64_str)
FAQ
Q: "no kernel image" CUDA error
This error occurs because of a compatibility issue between the image version and the GPU. You can try switching to a different GPU instance type, such as A10 or T4.
Q: "url should not include the scheme" error
This error occurs because the service URL is incorrect. The format for the endpoint from the "Get the service endpoint and token" section is http://17519301*******.cn-hangzhou.pai-eas.aliyuncs.com/api/predict/wen***** (note that this is different from the gRPC endpoint). You must remove the http:// prefix.
Q: "DNS resolution failed" gRPC error
This error occurs because the service host is incorrect. The format for the endpoint from the "Get the service endpoint and token" section is http://we*****.1751930*****.cn-hangzhou.pai-eas.aliyuncs.com/ (note that this is different from the HTTP endpoint). You must remove the http:// prefix and the trailing /, and then append :80 to the end. The final format should be we*****.1751930*****.cn-hangzhou.pai-eas.aliyuncs.com:80.
Related documents
-
To learn how to deploy an EAS service by using the TensorFlow Serving inference engine, see TensorFlow Serving Image Deployment.
-
You can also develop a custom image to deploy an EAS service. For more information, see Deploy a Service by Using a Custom Image.
-
For more information about NVIDIA Triton, see the official Triton documentation.