topai python sdk
Project description
topaisdk
setup
pip install topaisdk
python setup.py sdist bdist_wheel
python -m twine upload dist/*
Features
This SDK provides the following features for Ray Serve services:
- Latency Metrics Collection: Collects and reports request latency, request rate, and error rate.
- Consecutive Failure Health Check: Provides a decorator to add consecutive failure tracking and health check for model service methods.
Usage
Latency Metrics Collection
To collect latency metrics, you need to use the setup_metrics_to_serve function and the LatencyMiddleware.
First, import the necessary components:
from topaisdk.metrics import setup_metrics_to_serve, LatencyMiddleware
from ray import serve
from fastapi import FastAPI
Then, in your Ray Serve application setup, call setup_metrics_to_serve and add LatencyMiddleware to your FastAPI app:
service_id is the name of the deployment used for auto-scaling.
When the system detects the need for scaling, it will scale based on the service_id.
When using service_id, ensure it is unique and refers to the deployment that actually needs scaling.
(e.g., if DeploymentA receives external HTTP requests but DeploymentB provides the service internally,service_id should be set to DeploymentB's name, not DeploymentA's).
By default, service_id is set to the name of the current deployment. It can also be specified manually.
app = FastAPI()
serve.init()
# Configure metrics
metrics_config = {
"service_id": "myService", # service id
"metrics_server_url": "http://your-metrics-server:port/metrics", # Replace with your metrics server URL
"metrics_report_interval": 10 # Reporting interval in seconds
}
setup_metrics_to_serve(deployment, app, metrics_config)
# Add latency middleware
app.add_middleware(LatencyMiddleware, metrics_collector=serve.metrics_collector)
# Define your Ray Serve deployment
@serve.deployment()
@serve.ingress(app)
class MyModel:
# Your model serving logic here
pass
# Deploy your model
MyModel.deploy()
Alternatively, you can manually collect and report latency metrics using the MetricsCollector instance associated with the deployment:
from topaisdk.metrics import MetricsCollector
# Assuming you have a deployment object, access its metrics_collector
# deployment.metrics_collector = MetricsCollector(...)
# Then, within your service logic, report metrics like this:
self.metrics_collector.add_latency_measurement(
request_path=request.url.path,
latency_ms=process_time_ms,
error=False
)
Ensure you have a metrics server running at the specified metrics_server_url to receive the reported metrics.
Consecutive Failure Health Check
To use the consecutive failure health check, import the ModelService and use the consecutive_failure decorator on your model service methods.
from topaisdk.modelservice import ModelService
from ray import serve
@serve.deployment()
class MyModelService(ModelService): # Inherit from ModelService
def __init__(self):
super().__init__()
# Your initialization
@ModelService.consecutive_failure(max_failures_num=5) # Apply the decorator
async def predict(self, input_data):
# Your prediction logic
# If this method raises exceptions consecutively for 5 times,
# the service health check will fail.
pass
# Ray Serve health check method
async def check_health(self):
self.check_health() # This will raise an error if the service is unhealthy
# Deploy your service
MyModelService.deploy()
Examples
Ray Serve Metrics Example
This example demonstrates how to use the latency metrics collection feature in a Ray Serve application.
-
Install Dependencies: Navigate to the
examplesdirectory and install the required packages.cd examples pip install -r requirements.txt
-
Start Dummy Metrics Server: This script simulates a server that receives metrics. Run it in a separate terminal.
python dummy_metrics_server.pyThis server will listen on
http://localhost:8000. -
Generate Serve Config (Optional): You can use
serve buildto generate a configuration file for the application. By default, it will save toserve_config.yaml.cd examples serve build serve_example:my_service_app # This will create serve_config.yaml in the examples directory. # You can then edit serve_config.yaml to change the HTTP port or other settings. cd .. # Go back to project root
Alternatively, you can manually create
examples/serve_config.yamlwith the desired HTTP port (e.g., 1234):http_options: port: 1234
-
Start Ray Serve Application: In the project root directory (where
README.mdis located), run the Ray Serve application using the generated or manual config file. Make sure you are in the project root directory before running this command.serve run examples/serve_config.yaml or serve run examples.serve_example:my_service_app
-
Send Requests: Once the Ray Serve application is running, you can send requests to the endpoints on the configured port (e.g., 1234).
- For a quick response:
curl http://localhost:1234/hello - To simulate a slower request and see latency metrics:
curl http://localhost:1234/slow
Send multiple requests to
/slowto trigger metrics reporting more frequently. You should see the reported metrics in the terminal where you randummy_metrics_server.py. - For a quick response:
Note: The metrics_server_url in examples/serve_example.py is set to http://localhost:8000, which is the port the dummy metrics server listens on. This should not be changed unless you also change the port of the dummy_metrics_server.py script.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file topaisdk-0.2.4.tar.gz.
File metadata
- Download URL: topaisdk-0.2.4.tar.gz
- Upload date:
- Size: 12.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9264fdee04f5666f28938d18207dda7d266161d0e5f0f373b70fbfa29fd6a0cb
|
|
| MD5 |
ec090633c4a394a1bc270a0249a766ad
|
|
| BLAKE2b-256 |
1e03160e1b0a26fd4173c35faf96fa37b16e302b02528ba29ccf7c5f50393fa6
|
File details
Details for the file topaisdk-0.2.4-py3-none-any.whl.
File metadata
- Download URL: topaisdk-0.2.4-py3-none-any.whl
- Upload date:
- Size: 10.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
179475a57b5d540a8e4cd12815e90ff7e6b58677eba5d1393b5416f93b0e855b
|
|
| MD5 |
fe0fc23232a6167100d5d4f766186a2d
|
|
| BLAKE2b-256 |
df88b099a5b41f857d8f4df5d5c3acffccdc8b8da661dfa49274fe3757baf1f3
|