Class PutDataFrameAnalyticsRequest
java.lang.Object
co.elastic.clients.elasticsearch._types.RequestBase
co.elastic.clients.elasticsearch.ml.PutDataFrameAnalyticsRequest
- All Implemented Interfaces:
ElasticsearchCommonRequest,JsonpSerializable
@JsonpDeserializable public final class PutDataFrameAnalyticsRequest extends RequestBase implements JsonpSerializable
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classPutDataFrameAnalyticsRequest.BuilderBuilder forPutDataFrameAnalyticsRequest.Nested classes/interfaces inherited from class co.elastic.clients.elasticsearch._types.RequestBase
RequestBase.AbstractBuilder<BuilderT extends RequestBase.AbstractBuilder<BuilderT>> -
Field Summary
Fields Modifier and Type Field Description static JsonpDeserializer<PutDataFrameAnalyticsRequest>_DESERIALIZERJson deserializer forPutDataFrameAnalyticsRequeststatic Endpoint<PutDataFrameAnalyticsRequest,PutDataFrameAnalyticsResponse,ElasticsearchError>ENDPOINTEndpoint "ml.put_data_frame_analytics". -
Constructor Summary
Constructors Constructor Description PutDataFrameAnalyticsRequest(PutDataFrameAnalyticsRequest.Builder builder)PutDataFrameAnalyticsRequest(java.util.function.Function<PutDataFrameAnalyticsRequest.Builder,PutDataFrameAnalyticsRequest.Builder> fn) -
Method Summary
Modifier and Type Method Description java.lang.BooleanallowLazyStart()Specifies whether this job can start when there is insufficient machine learning node capacity for it to be immediately assigned to a node.DataframeAnalysisanalysis()Required - The analysis configuration, which contains the information necessary to perform one of the following types of analysis: classification, outlier detection, or regression.jakarta.json.JsonValueanalyzedFields()Specifiesincludesand/orexcludespatterns to select which fields will be included in the analysis.java.lang.Stringdescription()A description of the job.DataframeAnalyticsDestinationdest()Required - The destination configuration.java.lang.Stringid()Required - Identifier for the data frame analytics job.java.lang.IntegermaxNumThreads()The maximum number of threads to be used by the analysis.java.lang.StringmodelMemoryLimit()The approximate maximum amount of memory resources that are permitted for analytical processing.voidserialize(jakarta.json.stream.JsonGenerator generator, JsonpMapper mapper)Serialize this object to JSON.protected voidserializeInternal(jakarta.json.stream.JsonGenerator generator, JsonpMapper mapper)protected static voidsetupPutDataFrameAnalyticsRequestDeserializer(DelegatingDeserializer<PutDataFrameAnalyticsRequest.Builder> op)DataframeAnalyticsSourcesource()Required - The configuration of how to source the analysis data.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Field Details
-
_DESERIALIZER
Json deserializer forPutDataFrameAnalyticsRequest -
ENDPOINT
public static final Endpoint<PutDataFrameAnalyticsRequest,PutDataFrameAnalyticsResponse,ElasticsearchError> ENDPOINTEndpoint "ml.put_data_frame_analytics".
-
-
Constructor Details
-
PutDataFrameAnalyticsRequest
-
PutDataFrameAnalyticsRequest
public PutDataFrameAnalyticsRequest(java.util.function.Function<PutDataFrameAnalyticsRequest.Builder,PutDataFrameAnalyticsRequest.Builder> fn)
-
-
Method Details
-
id
public java.lang.String id()Required - Identifier for the data frame analytics job. This identifier can contain lowercase alphanumeric characters (a-z and 0-9), hyphens, and underscores. It must start and end with alphanumeric characters.API name:
id -
allowLazyStart
@Nullable public java.lang.Boolean allowLazyStart()Specifies whether this job can start when there is insufficient machine learning node capacity for it to be immediately assigned to a node. If set to false and a machine learning node with capacity to run the job cannot be immediately found, the API returns an error. If set to true, the API does not return an error; the job waits in thestartingstate until sufficient machine learning node capacity is available. This behavior is also affected by the cluster-widexpack.ml.max_lazy_ml_nodessetting.API name:
allow_lazy_start -
analysis
Required - The analysis configuration, which contains the information necessary to perform one of the following types of analysis: classification, outlier detection, or regression.API name:
analysis -
analyzedFields
@Nullable public jakarta.json.JsonValue analyzedFields()Specifiesincludesand/orexcludespatterns to select which fields will be included in the analysis. The patterns specified inexcludesare applied last, thereforeexcludestakes precedence. In other words, if the same field is specified in bothincludesandexcludes, then the field will not be included in the analysis. Ifanalyzed_fieldsis not set, only the relevant fields will be included. For example, all the numeric fields for outlier detection. The supported fields vary for each type of analysis. Outlier detection requires numeric orbooleandata to analyze. The algorithms don’t support missing values therefore fields that have data types other than numeric or boolean are ignored. Documents where included fields contain missing values, null values, or an array are also ignored. Therefore thedestindex may contain documents that don’t have an outlier score. Regression supports fields that are numeric,boolean,text,keyword, andipdata types. It is also tolerant of missing values. Fields that are supported are included in the analysis, other fields are ignored. Documents where included fields contain an array with two or more values are also ignored. Documents in thedestindex that don’t contain a results field are not included in the regression analysis. Classification supports fields that are numeric,boolean,text,keyword, andipdata types. It is also tolerant of missing values. Fields that are supported are included in the analysis, other fields are ignored. Documents where included fields contain an array with two or more values are also ignored. Documents in thedestindex that don’t contain a results field are not included in the classification analysis. Classification analysis can be improved by mapping ordinal variable values to a single number. For example, in case of age ranges, you can model the values as0-14 = 0,15-24 = 1,25-34 = 2, and so on.API name:
analyzed_fields -
description
@Nullable public java.lang.String description()A description of the job.API name:
description -
dest
Required - The destination configuration.API name:
dest -
maxNumThreads
@Nullable public java.lang.Integer maxNumThreads()The maximum number of threads to be used by the analysis. Using more threads may decrease the time necessary to complete the analysis at the cost of using more CPU. Note that the process may use additional threads for operational functionality other than the analysis itself.API name:
max_num_threads -
modelMemoryLimit
@Nullable public java.lang.String modelMemoryLimit()The approximate maximum amount of memory resources that are permitted for analytical processing. If yourelasticsearch.ymlfile contains anxpack.ml.max_model_memory_limitsetting, an error occurs when you try to create data frame analytics jobs that havemodel_memory_limitvalues greater than that setting.API name:
model_memory_limit -
source
Required - The configuration of how to source the analysis data.API name:
source -
serialize
Serialize this object to JSON.- Specified by:
serializein interfaceJsonpSerializable
-
serializeInternal
-
setupPutDataFrameAnalyticsRequestDeserializer
protected static void setupPutDataFrameAnalyticsRequestDeserializer(DelegatingDeserializer<PutDataFrameAnalyticsRequest.Builder> op)
-