Class AnalysisLimits
java.lang.Object
org.elasticsearch.client.ml.job.config.AnalysisLimits
- All Implemented Interfaces:
org.elasticsearch.common.xcontent.ToXContent,org.elasticsearch.common.xcontent.ToXContentObject
public class AnalysisLimits
extends java.lang.Object
implements org.elasticsearch.common.xcontent.ToXContentObject
Analysis limits for autodetect. In particular,
this is a collection of parameters that allow limiting
the resources used by the job.
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.elasticsearch.common.xcontent.ToXContent
org.elasticsearch.common.xcontent.ToXContent.DelegatingMapParams, org.elasticsearch.common.xcontent.ToXContent.MapParams, org.elasticsearch.common.xcontent.ToXContent.Params -
Field Summary
Fields Modifier and Type Field Description static org.elasticsearch.common.ParseFieldCATEGORIZATION_EXAMPLES_LIMITstatic org.elasticsearch.common.ParseFieldMODEL_MEMORY_LIMITSerialisation field namesstatic org.elasticsearch.common.xcontent.ConstructingObjectParser<AnalysisLimits,java.lang.Void>PARSERFields inherited from interface org.elasticsearch.common.xcontent.ToXContent
EMPTY_PARAMS -
Constructor Summary
Constructors Constructor Description AnalysisLimits(java.lang.Long categorizationExamplesLimit)AnalysisLimits(java.lang.Long modelMemoryLimit, java.lang.Long categorizationExamplesLimit) -
Method Summary
Modifier and Type Method Description booleanequals(java.lang.Object other)Overridden equality testjava.lang.LonggetCategorizationExamplesLimit()Gets the limit to the number of examples that are stored per categoryjava.lang.LonggetModelMemoryLimit()Maximum size of the model in MB before the anomaly detector will drop new samples to prevent the model using any more memory.inthashCode()org.elasticsearch.common.xcontent.XContentBuildertoXContent(org.elasticsearch.common.xcontent.XContentBuilder builder, org.elasticsearch.common.xcontent.ToXContent.Params params)Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.elasticsearch.common.xcontent.ToXContentObject
isFragment
-
Field Details
-
MODEL_MEMORY_LIMIT
public static final org.elasticsearch.common.ParseField MODEL_MEMORY_LIMITSerialisation field names -
CATEGORIZATION_EXAMPLES_LIMIT
public static final org.elasticsearch.common.ParseField CATEGORIZATION_EXAMPLES_LIMIT -
PARSER
public static final org.elasticsearch.common.xcontent.ConstructingObjectParser<AnalysisLimits,java.lang.Void> PARSER
-
-
Constructor Details
-
AnalysisLimits
public AnalysisLimits(java.lang.Long categorizationExamplesLimit) -
AnalysisLimits
public AnalysisLimits(java.lang.Long modelMemoryLimit, java.lang.Long categorizationExamplesLimit)
-
-
Method Details
-
getModelMemoryLimit
@Nullable public java.lang.Long getModelMemoryLimit()Maximum size of the model in MB before the anomaly detector will drop new samples to prevent the model using any more memory.- Returns:
- The set memory limit or
nullif not set
-
getCategorizationExamplesLimit
@Nullable public java.lang.Long getCategorizationExamplesLimit()Gets the limit to the number of examples that are stored per category- Returns:
- the limit or
nullif not set
-
toXContent
public org.elasticsearch.common.xcontent.XContentBuilder toXContent(org.elasticsearch.common.xcontent.XContentBuilder builder, org.elasticsearch.common.xcontent.ToXContent.Params params) throws java.io.IOException- Specified by:
toXContentin interfaceorg.elasticsearch.common.xcontent.ToXContent- Throws:
java.io.IOException
-
equals
public boolean equals(java.lang.Object other)Overridden equality test- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()- Overrides:
hashCodein classjava.lang.Object
-