ray.serve.schema.DeploymentTopology#

pydantic model ray.serve.schema.DeploymentTopology[source]#

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.

field app_name: str [Required]#

The name of the application this topology belongs to.

field ingress_deployment: str | None = None#

The name of the ingress deployment (entry point).

field nodes: Dict[str, DeploymentNode] [Required]#

The adjacency list of deployment nodes.