For the complete documentation index, see llms.txt. This page is also available as Markdown.

Distributed Inferences

Distributed inference enables running inference workloads across multiple pods, typically to scale model serving beyond a single container or node. This approach is useful when a single instance cannot meet resource requirements.NVIDIA Run:ai supports this model using Leader Worker Set (LWS). Each pod plays a specific role, either as a leader or worker, and together they form a coordinated service. NVIDIA Run:ai manages the orchestration and configuration of these pods to ensure efficient and scalable inference execution

Create a distributed inference.

post

Create a distributed inference using container related fields.

Authorizations
AuthorizationstringRequired

Bearer authentication

Body
and
and
and
Responses
202

Request completed successfully.

application/json
and
post/api/v1/workloads/distributed-inferences

Get a distributed inference data.

get

Retrieve a distributed inference details using a workload id.

Authorizations
AuthorizationstringRequired

Bearer authentication

Path parameters
workloadIdstring · uuidRequired

The Universally Unique Identifier (UUID) of the workload.

Responses
200

Executed successfully.

application/json
and
get/api/v1/workloads/distributed-inferences/{workloadId}

Delete a distributed inference.

delete

Delete a distributed inference using a workload id.

Authorizations
AuthorizationstringRequired

Bearer authentication

Path parameters
workloadIdstring · uuidRequired

The Universally Unique Identifier (UUID) of the workload.

Responses
202

Accepted.

application/json
codeinteger · min: 100 · max: 599Required
messagestringRequired
delete/api/v1/workloads/distributed-inferences/{workloadId}

Update distributed inference spec.

patch

Update the specification of an existing distributed inference workload.

Authorizations
AuthorizationstringRequired

Bearer authentication

Path parameters
workloadIdstring · uuidRequired

The Universally Unique Identifier (UUID) of the workload.

Body

The specifications of the inference to be updated.

Responses
202

Executed successfully.

application/json
and
patch/api/v1/workloads/distributed-inferences/{workloadId}

Last updated