Run distributed Services¶
BentoML provides a flexible framework for deploying machine learning models as Services. While a single Service often suffices for most use cases, it is useful to create multiple Services running in a distributed way in more complex scenarios.
This document provides guidance on creating and deploying a BentoML project with distributed Services.
Single and distributed Services¶
Using a single BentoML Service in service.py
is typically sufficient for most use cases. This approach is straightforward, easy to manage, and works well when you only need to deploy a single model and the API logic is simple.
In deployment, a BentoML Service runs as multiple processes in a container. If you define multiple Services, they run as processes in different containers. This distributed approach is useful when dealing with more complex scenarios, such as:
Pipelining CPU and GPU processing for better throughput: Distributing tasks between CPU and GPU can enhance throughput. Certain preprocessing or postprocessing tasks might be more efficiently handled by the CPU, while the GPU focuses on model inference.
Optimizing resource utilization and scalability: Distributed Services can run on different instances, allowing for independent scaling and efficient resource usage. This flexibility is important in handling varying loads and optimizing specific resource demands.
Asymmetrical GPU requirements: Different models might have varied GPU requirements. Distributing these models across Services helps you allocate resources more efficiently and cost-effectively.
Handling complex workflows: For applications involving intricate workflows, like sequential processing, parallel processing, or the composition of multiple models, you can create multiple Services to modularize these processes if necessary, improving maintainability and efficiency.
Interservice communication¶
Distributed Services support complex, modular architectures through interservice communication. Different Services can interact with each other using the bentoml.depends()
function. This allows for direct method calls between Services as if they were local class functions. Key features of interservice communication:
Automatic service discovery & routing: When Services are deployed, BentoML handles the discovery of Services, routes requests appropriately, and manages payload serialization and deserialization.
Arbitrary dependency chains: Services can form dependency chains of any length, enabling intricate Service orchestration.
Diamond-shaped dependencies: Support a diamond dependency pattern, where multiple Services depend on a single downstream Service, for maximizing Service reuse.
Basic usage¶
The following service.py
file contains two Services with different hardware requirements. To declare a dependency, use the bentoml.depends()
function by passing the dependent Service class as an argument. This creates a direct link between Services for easy method invocation:
import bentoml
import numpy as np
@bentoml.service(resources={"cpu": "200m", "memory": "512Mi"})
class Preprocessing:
# A dummy prepocessing Service
@bentoml.api
def preprocess(self, input_series: np.ndarray) -> np.ndarray:
return input_series
@bentoml.service(resources={"cpu": "1", "memory": "2Gi"})
class IrisClassifier:
# Load the model from the Model Store
iris_model = bentoml.models.BentoModel("iris_sklearn:latest")
# Declare the preprocessing Service as a dependency
preprocessing = bentoml.depends(Preprocessing)
def __init__(self):
import joblib
self.model = joblib.load(self.iris_model.path_of("model.pkl"))
@bentoml.api
def classify(self, input_series: np.ndarray) -> np.ndarray:
input_series = self.preprocessing.preprocess(input_series)
return self.model.predict(input_series)
Once a dependency is declared, invoking methods on the dependent Service is similar to calling a local method. In other words, Service A
can call Service B
as if Service A
were invoking a class level function on Service B
. This abstracts away the complexities of network communication, serialization, and deserialization.
Using bentoml.depends()
is a recommended way for creating a BentoML project with distributed Services. It enhances modularity as you can develop reusable, loosely coupled Services that can be maintained and scaled independently.
Depend on an external deployment¶
BentoML also allows you to set an external deployment as a dependency for a Service. This means the Service can call a remote model and its exposed API endpoints. To specify an external deployment, use the bentoml.depends()
function, either by providing the deployment name on BentoCloud or the URL if it’s already running.
You can also pass the cluster
parameter to specify the cluster where your Deployment is running.
import bentoml
@bentoml.service
class MyService:
# `cluster` is optional if your Deployment is in a non-default cluster
iris = bentoml.depends(deployment="iris-classifier-x6dewa", cluster="my_cluster_name")
@bentoml.api
def predict(self, input: np.ndarray) -> int:
# Call the predict function from the remote Deployment
return int(self.iris.predict(input)[0][0])
If the external deployment is already running and its API is exposed via a public URL, you can reference it by specifying the url
parameter. Note that url
and deployment
/cluster
are mutually exclusive.
import bentoml
@bentoml.service
class MyService:
# Call the model deployed on BentoCloud by specifying its URL
iris = bentoml.depends(url="https://<iris.example-url.bentoml.ai>")
# Call the model served elsewhere
# iris = bentoml.depends(url="http://192.168.1.1:3000")
@bentoml.api
def predict(self, input: np.ndarray) -> int:
# Make a request to the external service hosted at the specified URL
return int(self.iris.predict(input)[0][0])
Tip
We recommend you specify the class of the external Service when using bentoml.depends()
. This makes it easier to validate the types and methods available on the remote Service.
import bentoml
@bentoml.service
class MyService:
# Specify the external Service class for type-safe integration
iris = bentoml.depends(IrisClassifier, deployment="iris-classifier-x6dewa", cluster="my_cluster")
Deploy distributed Services¶
To deploy a project with distributed Services to BentoCloud, we recommend you use a separate configuration file and reference it in the BentoML CLI command or Python API for deployment.
Here is an example:
name: "deployment-name"
bento: .
description: "This project creates an AI agent application"
envs: # Optional. If you specify environment variables here, they will be applied to all Services
- name: "GLOBAL_ENV_VAR_NAME"
value: "env_var_value"
services: # Add the configs of each Service under this field
Preprocessing: # Service one
instance_type: "gpu.l4.1"
scaling:
max_replicas: 2
min_replicas: 1
envs: # Environment variables specific to Service one
- name: "ENV_VAR_NAME"
value: "env_var_value"
deployment_strategy: "RollingUpdate"
config_overrides:
traffic:
# float in seconds
timeout: 700
max_concurrency: 20
external_queue: true
resources:
cpu: "400m"
memory: "1Gi"
workers:
- gpu: 1
Inference: # Service two
instance_type: "cpu.1"
scaling:
max_replicas: 5
min_replicas: 1
To deploy these Services to BentoCloud, you can choose either the BentoML CLI or Python API:
bentoml deploy -f config-file.yaml
import bentoml
bentoml.deployment.create(config_file="config-file.yaml")
Refer to Configure Deployments to see the available configuration fields.