Stop trained model deployment API

Stop trained model deployment API

New API reference

For the most up-to-date API details, refer to Machine learning trained model APIs.

Stops a trained model deployment.

Request

POST _ml/trained_models/<deployment_id>/deployment/_stop

Prerequisites

Requires the manage_ml cluster privilege. This privilege is included in the machine_learning_admin built-in role.

Description

Deployment is required only for trained models that have a PyTorch model_type.

Path parameters

<deployment_id>

(Required, string) A unique identifier for the deployment of the model.

Query parameters

allow_no_match

(Optional, Boolean) Specifies what to do when the request:

  • Contains wildcard expressions and there are no deployments that match.
  • Contains the _all string or no identifiers and there are no matches.
  • Contains wildcard expressions and there are only partial matches.

The default value is true, which returns an empty array when there are no matches and the subset of results when there are partial matches. If this parameter is false, the request returns a 404 status code when there are no matches or only partial matches.

force

(Optional, Boolean) If true, the deployment is stopped even if it or one of its model aliases is referenced by ingest pipelines. You can’t use these pipelines until you restart the model deployment.

finish_pending_work

(Optional, Boolean) If true, the deployment is stopped after any queued work is completed. Defaults to false.

Examples

The following example stops the my_model_for_search deployment:

  1. resp = client.ml.stop_trained_model_deployment(
  2. model_id="my_model_for_search",
  3. )
  4. print(resp)
  1. response = client.ml.stop_trained_model_deployment(
  2. model_id: 'my_model_for_search'
  3. )
  4. puts response
  1. const response = await client.ml.stopTrainedModelDeployment({
  2. model_id: "my_model_for_search",
  3. });
  4. console.log(response);
  1. POST _ml/trained_models/my_model_for_search/deployment/_stop