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 Triton Inference Server Support #34252

Draft
wants to merge 7 commits into
base: master
Choose a base branch
from
Draft
Changes from 1 commit
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
44 changes: 44 additions & 0 deletions sdks/python/apache_beam/ml/inference/vertex_ai_inference.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
from google.api_core.exceptions import ServerError
from google.api_core.exceptions import TooManyRequests
from google.cloud import aiplatform
import requests

from apache_beam.io.components.adaptive_throttler import AdaptiveThrottler
from apache_beam.metrics.metric import Metrics
Expand Down Expand Up @@ -256,3 +257,46 @@ def validate_inference_args(self, inference_args: Optional[Dict[str, Any]]):

def batch_elements_kwargs(self) -> Mapping[str, Any]:
return self._batching_kwargs


class VertexAITritonModelHandler(ModelHandler):
"""
A custom model handler for Vertex AI endpoints hosting Triton Inference Servers.
It constructs a payload that Triton expects and calls the raw predict endpoint.
"""

def __init__(self, endpoint_url: str):
self.endpoint_url = endpoint_url

def load_model(self) -> str:
"""
This method can load or return any model resource information. In the case of
a Triton endpoint, it could simply return the URL or any other required reference.
"""
return self.endpoint_url

def run_inference(
self,
batch,
model,
inference_args=None
) -> Iterable[PredictionResult]:
"""
Sends a prediction request with the Triton-specific payload structure.
"""

payload = {
"inputs": [
{
"name": "name",
"shape": [1, 1],
"datatype": "BYTES",
"data": batch,
}
]
}
response = requests.post(model, json=payload)
response.raise_for_status()
prediction_response = response.json()

yield prediction_response
Loading