ray.serve.schema.DeploymentTopology#

class ray.serve.schema.DeploymentTopology(*, app_name: str, nodes: Dict[str, DeploymentNode], ingress_deployment: str | None = None)[source]#

Bases: BaseModel

Represents the dependency graph of deployments in an application.

The topology shows which deployments call which other deployments, with the ingress deployment as the entry point.

PublicAPI (alpha): This API is in alpha and may change before becoming stable.

Methods

__init__

Create a new model by parsing and validating input data from keyword arguments.

construct

Creates a new model setting __dict__ and __fields_set__ from trusted or pre-validated data.

copy

Duplicate a model, optionally choose which fields to include, exclude and change.

dict

Generate a dictionary representation of the model, optionally specifying which fields to include or exclude.

json

Generate a JSON representation of the model, include and exclude arguments as per dict().

update_forward_refs

Try to update ForwardRefs on fields based on this Model, globalns and localns.

Attributes

app_name

nodes

ingress_deployment