Loading

stack es ml start-trained-model-deployment cli command

Auth required
elastic stack es ml start-trained-model-deployment \
  --model-id <model-id> \
  [options]
		

Start a trained model deployment.

Behaviour flags:

--dry-run — validate all inputs and exit without performing any action

--model-id string required
The unique identifier of the trained model. Currently, only PyTorch models are supported.
--cache-size number
The inference cache size (in memory outside the JVM heap) per node for the model. The default value is the same size as the model_size_bytes. To disable the cache, 0b can be provided.
--number-of-allocations number
The number of model allocations on each node where the model is deployed. All allocations on a node share the same copy of the model in memory but use a separate set of threads to evaluate the model. Increasing this value generally increases the throughput. If this setting is greater than the number of hardware threads it will automatically be changed to a value less than the number of hardware threads. If adaptive_allocations is enabled, do not set this value, because it’s automatically set.
--priority string
The deployment priority
--queue-capacity number
Specifies the number of inference requests that are allowed in the queue. After the number of requests exceeds this value, new requests are rejected with a 429 error.
--threads-per-allocation number
Sets the number of threads used by each model allocation during inference. This generally increases the inference speed. The inference process is a compute-bound process; any number greater than the number of available hardware threads on the machine does not increase the inference speed. If this setting is greater than the number of hardware threads it will automatically be changed to a value less than the number of hardware threads.
--timeout string
Specifies the amount of time to wait for the model to deploy.
--wait-for string
Specifies the allocation status to wait for before returning.
--adaptive-allocations string
Adaptive allocations configuration. When enabled, the number of allocations is set based on the current load. If adaptive_allocations is enabled, do not set the number of allocations manually.
--input-file string
path to a JSON file to use as command input
--[no-]dry-run
validate all inputs and exit without performing any action (preview changes without applying them)
--[no-]json

output as JSON