File tree 3 files changed +3
-0
lines changed
3 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -6355,6 +6355,7 @@ client.ml.startTrainedModelDeployment({ model_id })
6355
6355
** *`cache_size` (Optional, number | string)*: The inference cache size (in memory outside the JVM heap) per node for the model.
6356
6356
The default value is the same size as the `model_size_bytes`. To disable the cache,
6357
6357
`0b` can be provided.
6358
+ ** *`deployment_id` (Optional, string)*: A unique identifier for the deployment of the model.
6358
6359
** *`number_of_allocations` (Optional, number)*: The number of model allocations on each node where the model is deployed.
6359
6360
All allocations on a node share the same copy of the model in memory but use
6360
6361
a separate set of threads to evaluate the model.
Original file line number Diff line number Diff line change @@ -14087,6 +14087,7 @@ export interface MlStartDatafeedResponse {
14087
14087
export interface MlStartTrainedModelDeploymentRequest extends RequestBase {
14088
14088
model_id : Id
14089
14089
cache_size ?: ByteSize
14090
+ deployment_id ?: string
14090
14091
number_of_allocations ?: integer
14091
14092
priority ?: MlTrainingPriority
14092
14093
queue_capacity ?: integer
Original file line number Diff line number Diff line change @@ -14356,6 +14356,7 @@ export interface MlStartDatafeedResponse {
14356
14356
export interface MlStartTrainedModelDeploymentRequest extends RequestBase {
14357
14357
model_id: Id
14358
14358
cache_size?: ByteSize
14359
+ deployment_id?: string
14359
14360
number_of_allocations?: integer
14360
14361
priority?: MlTrainingPriority
14361
14362
queue_capacity?: integer
You can’t perform that action at this time.
0 commit comments