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 @@ -6355,6 +6355,7 @@ client.ml.startTrainedModelDeployment({ model_id })
63556355** *`cache_size` (Optional, number | string)*: The inference cache size (in memory outside the JVM heap) per node for the model.
63566356The default value is the same size as the `model_size_bytes`. To disable the cache,
63576357`0b` can be provided.
6358+ ** *`deployment_id` (Optional, string)*: A unique identifier for the deployment of the model.
63586359** *`number_of_allocations` (Optional, number)*: The number of model allocations on each node where the model is deployed.
63596360All allocations on a node share the same copy of the model in memory but use
63606361a 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 {
1408714087export interface MlStartTrainedModelDeploymentRequest extends RequestBase {
1408814088 model_id : Id
1408914089 cache_size ?: ByteSize
14090+ deployment_id ?: string
1409014091 number_of_allocations ?: integer
1409114092 priority ?: MlTrainingPriority
1409214093 queue_capacity ?: integer
Original file line number Diff line number Diff line change @@ -14356,6 +14356,7 @@ export interface MlStartDatafeedResponse {
1435614356export interface MlStartTrainedModelDeploymentRequest extends RequestBase {
1435714357 model_id: Id
1435814358 cache_size?: ByteSize
14359+ deployment_id?: string
1435914360 number_of_allocations?: integer
1436014361 priority?: MlTrainingPriority
1436114362 queue_capacity?: integer
You can’t perform that action at this time.
0 commit comments