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 })
64916491** *`cache_size` (Optional, number | string)*: The inference cache size (in memory outside the JVM heap) per node for the model.
64926492The default value is the same size as the `model_size_bytes`. To disable the cache,
64936493`0b` can be provided.
6494+ ** *`deployment_id` (Optional, string)*: A unique identifier for the deployment of the model.
64946495** *`number_of_allocations` (Optional, number)*: The number of model allocations on each node where the model is deployed.
64956496All allocations on a node share the same copy of the model in memory but use
64966497a 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 {
1410714107export interface MlStartTrainedModelDeploymentRequest extends RequestBase {
1410814108 model_id : Id
1410914109 cache_size ?: ByteSize
14110+ deployment_id ?: string
1411014111 number_of_allocations ?: integer
1411114112 priority ?: MlTrainingPriority
1411214113 queue_capacity ?: integer
Original file line number Diff line number Diff line change @@ -14376,6 +14376,7 @@ export interface MlStartDatafeedResponse {
1437614376export interface MlStartTrainedModelDeploymentRequest extends RequestBase {
1437714377 model_id: Id
1437814378 cache_size?: ByteSize
14379+ deployment_id?: string
1437914380 number_of_allocations?: integer
1438014381 priority?: MlTrainingPriority
1438114382 queue_capacity?: integer
You can’t perform that action at this time.
0 commit comments