Skip to content

Commit 56e015a

Browse files
committed
[API] Promotes machine learning APIs from Experimental to Beta
machine_learning.clear_trained_model_deployment_cache.rb machine_learning.infer_trained_model.rb machine_learning.put_trained_model_definition_part.rb machine_learning.put_trained_model_vocabulary.rb machine_learning.start_trained_model_deployment.rb machine_learning.stop_trained_model_deployment.rb
1 parent ca4998f commit 56e015a

6 files changed

+25
-25
lines changed

elasticsearch-api/lib/elasticsearch/api/actions/machine_learning/clear_trained_model_deployment_cache.rb

+4-4
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ module API
2323
module MachineLearning
2424
module Actions
2525
# Clear the cached results from a trained model deployment
26-
# This functionality is Experimental and may be changed or removed
27-
# completely in a future release. Elastic will take a best effort approach
28-
# to fix any issues, but experimental features are not subject to the
29-
# support SLA of official GA features.
26+
# This functionality is in Beta and is subject to change. The design and
27+
# code is less mature than official GA features and is being provided
28+
# as-is with no warranties. Beta features are not subject to the support
29+
# SLA of official GA features.
3030
#
3131
# @option arguments [String] :model_id The unique identifier of the trained model. (*Required*)
3232
# @option arguments [Hash] :headers Custom HTTP headers

elasticsearch-api/lib/elasticsearch/api/actions/machine_learning/infer_trained_model.rb

+4-4
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ module API
2323
module MachineLearning
2424
module Actions
2525
# Evaluate a trained model.
26-
# This functionality is Experimental and may be changed or removed
27-
# completely in a future release. Elastic will take a best effort approach
28-
# to fix any issues, but experimental features are not subject to the
29-
# support SLA of official GA features.
26+
# This functionality is in Beta and is subject to change. The design and
27+
# code is less mature than official GA features and is being provided
28+
# as-is with no warranties. Beta features are not subject to the support
29+
# SLA of official GA features.
3030
#
3131
# @option arguments [String] :model_id The unique identifier of the trained model. (*Required*)
3232
# @option arguments [Time] :timeout Controls the amount of time to wait for inference results.

elasticsearch-api/lib/elasticsearch/api/actions/machine_learning/put_trained_model_definition_part.rb

+4-4
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ module API
2323
module MachineLearning
2424
module Actions
2525
# Creates part of a trained model definition
26-
# This functionality is Experimental and may be changed or removed
27-
# completely in a future release. Elastic will take a best effort approach
28-
# to fix any issues, but experimental features are not subject to the
29-
# support SLA of official GA features.
26+
# This functionality is in Beta and is subject to change. The design and
27+
# code is less mature than official GA features and is being provided
28+
# as-is with no warranties. Beta features are not subject to the support
29+
# SLA of official GA features.
3030
#
3131
# @option arguments [String] :model_id The ID of the trained model for this definition part
3232
# @option arguments [Integer] :part The part number

elasticsearch-api/lib/elasticsearch/api/actions/machine_learning/put_trained_model_vocabulary.rb

+4-4
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ module API
2323
module MachineLearning
2424
module Actions
2525
# Creates a trained model vocabulary
26-
# This functionality is Experimental and may be changed or removed
27-
# completely in a future release. Elastic will take a best effort approach
28-
# to fix any issues, but experimental features are not subject to the
29-
# support SLA of official GA features.
26+
# This functionality is in Beta and is subject to change. The design and
27+
# code is less mature than official GA features and is being provided
28+
# as-is with no warranties. Beta features are not subject to the support
29+
# SLA of official GA features.
3030
#
3131
# @option arguments [String] :model_id The ID of the trained model for this vocabulary
3232
# @option arguments [Hash] :headers Custom HTTP headers

elasticsearch-api/lib/elasticsearch/api/actions/machine_learning/start_trained_model_deployment.rb

+5-5
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,14 @@ module API
2323
module MachineLearning
2424
module Actions
2525
# Start a trained model deployment.
26-
# This functionality is Experimental and may be changed or removed
27-
# completely in a future release. Elastic will take a best effort approach
28-
# to fix any issues, but experimental features are not subject to the
29-
# support SLA of official GA features.
26+
# This functionality is in Beta and is subject to change. The design and
27+
# code is less mature than official GA features and is being provided
28+
# as-is with no warranties. Beta features are not subject to the support
29+
# SLA of official GA features.
3030
#
3131
# @option arguments [String] :model_id The unique identifier of the trained model. (*Required*)
3232
# @option arguments [String] :cache_size A byte-size value for configuring the inference cache size. For example, 20mb.
33-
# @option arguments [Integer] :number_of_allocations The number of model allocations on each node where the model is deployed.
33+
# @option arguments [Integer] :number_of_allocations The total number of allocations this model is assigned across machine learning nodes.
3434
# @option arguments [Integer] :threads_per_allocation The number of threads used by each model allocation during inference.
3535
# @option arguments [Integer] :queue_capacity Controls how many inference requests are allowed in the queue at a time.
3636
# @option arguments [Time] :timeout Controls the amount of time to wait for the model to deploy.

elasticsearch-api/lib/elasticsearch/api/actions/machine_learning/stop_trained_model_deployment.rb

+4-4
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ module API
2323
module MachineLearning
2424
module Actions
2525
# Stop a trained model deployment.
26-
# This functionality is Experimental and may be changed or removed
27-
# completely in a future release. Elastic will take a best effort approach
28-
# to fix any issues, but experimental features are not subject to the
29-
# support SLA of official GA features.
26+
# This functionality is in Beta and is subject to change. The design and
27+
# code is less mature than official GA features and is being provided
28+
# as-is with no warranties. Beta features are not subject to the support
29+
# SLA of official GA features.
3030
#
3131
# @option arguments [String] :model_id The unique identifier of the trained model. (*Required*)
3232
# @option arguments [Boolean] :allow_no_match Whether to ignore if a wildcard expression matches no deployments. (This includes `_all` string or when no deployments have been specified)

0 commit comments

Comments
 (0)