File tree Expand file tree Collapse file tree 3 files changed +3
-0
lines changed Expand file tree Collapse file tree 3 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -6491,6 +6491,7 @@ client.ml.startTrainedModelDeployment({ model_id })
6491
6491
** *`cache_size` (Optional, number | string)*: The inference cache size (in memory outside the JVM heap) per node for the model.
6492
6492
The default value is the same size as the `model_size_bytes`. To disable the cache,
6493
6493
`0b` can be provided.
6494
+ ** *`deployment_id` (Optional, string)*: A unique identifier for the deployment of the model.
6494
6495
** *`number_of_allocations` (Optional, number)*: The number of model allocations on each node where the model is deployed.
6495
6496
All allocations on a node share the same copy of the model in memory but use
6496
6497
a separate set of threads to evaluate the model.
Original file line number Diff line number Diff line change @@ -14107,6 +14107,7 @@ export interface MlStartDatafeedResponse {
14107
14107
export interface MlStartTrainedModelDeploymentRequest extends RequestBase {
14108
14108
model_id : Id
14109
14109
cache_size ?: ByteSize
14110
+ deployment_id ?: string
14110
14111
number_of_allocations ?: integer
14111
14112
priority ?: MlTrainingPriority
14112
14113
queue_capacity ?: integer
Original file line number Diff line number Diff line change @@ -14376,6 +14376,7 @@ export interface MlStartDatafeedResponse {
14376
14376
export interface MlStartTrainedModelDeploymentRequest extends RequestBase {
14377
14377
model_id: Id
14378
14378
cache_size?: ByteSize
14379
+ deployment_id?: string
14379
14380
number_of_allocations?: integer
14380
14381
priority?: MlTrainingPriority
14381
14382
queue_capacity?: integer
You can’t perform that action at this time.
0 commit comments