Package org.elasticsearch.client.ml
Class FlushJobRequest
java.lang.Object
org.elasticsearch.transport.TransportMessage
org.elasticsearch.transport.TransportRequest
org.elasticsearch.action.ActionRequest
org.elasticsearch.client.ml.FlushJobRequest
- All Implemented Interfaces:
org.elasticsearch.common.io.stream.Writeable,org.elasticsearch.common.util.concurrent.RefCounted,org.elasticsearch.common.xcontent.ToXContent,org.elasticsearch.common.xcontent.ToXContentObject,org.elasticsearch.tasks.TaskAwareRequest
public class FlushJobRequest
extends org.elasticsearch.action.ActionRequest
implements org.elasticsearch.common.xcontent.ToXContentObject
Request object to flush a given Machine Learning job.
-
Nested Class Summary
Nested classes/interfaces inherited from class org.elasticsearch.transport.TransportRequest
org.elasticsearch.transport.TransportRequest.EmptyNested 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.ParamsNested classes/interfaces inherited from interface org.elasticsearch.common.io.stream.Writeable
org.elasticsearch.common.io.stream.Writeable.Reader<V extends java.lang.Object>, org.elasticsearch.common.io.stream.Writeable.Writer<V extends java.lang.Object> -
Field Summary
Fields Modifier and Type Field Description static org.elasticsearch.common.ParseFieldADVANCE_TIMEstatic org.elasticsearch.common.ParseFieldCALC_INTERIMstatic org.elasticsearch.common.ParseFieldENDstatic org.elasticsearch.common.xcontent.ConstructingObjectParser<FlushJobRequest,java.lang.Void>PARSERstatic org.elasticsearch.common.ParseFieldSKIP_TIMEstatic org.elasticsearch.common.ParseFieldSTARTFields inherited from interface org.elasticsearch.common.xcontent.ToXContent
EMPTY_PARAMS -
Constructor Summary
Constructors Constructor Description FlushJobRequest(java.lang.String jobId)Create new Flush job request -
Method Summary
Modifier and Type Method Description booleanequals(java.lang.Object obj)java.lang.StringgetAdvanceTime()booleangetCalcInterim()java.lang.StringgetEnd()java.lang.StringgetJobId()java.lang.StringgetSkipTime()java.lang.StringgetStart()inthashCode()voidsetAdvanceTime(java.lang.String advanceTime)Specifies to advance to a particular time value.voidsetCalcInterim(boolean calcInterim)Whentruecalculates the interim results for the most recent bucket or all buckets within the latency period.voidsetEnd(java.lang.String end)When used in conjunction withcalcInterim, specifies the end of the range of buckets on which to calculate interim resultsvoidsetSkipTime(java.lang.String skipTime)Specifies to skip to a particular time value.voidsetStart(java.lang.String start)When used in conjunction withcalcInterim, specifies the start of the range of buckets on which to calculate interim results.org.elasticsearch.common.xcontent.XContentBuildertoXContent(org.elasticsearch.common.xcontent.XContentBuilder builder, org.elasticsearch.common.xcontent.ToXContent.Params params)org.elasticsearch.action.ActionRequestValidationExceptionvalidate()Methods inherited from class org.elasticsearch.action.ActionRequest
getShouldStoreResult, writeToMethods inherited from class org.elasticsearch.transport.TransportRequest
getParentTask, setParentTaskMethods inherited from class org.elasticsearch.transport.TransportMessage
decRef, incRef, remoteAddress, remoteAddress, tryIncRefMethods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.elasticsearch.tasks.TaskAwareRequest
createTask, getDescription, setParentTaskMethods inherited from interface org.elasticsearch.common.xcontent.ToXContentObject
isFragment
-
Field Details
-
CALC_INTERIM
public static final org.elasticsearch.common.ParseField CALC_INTERIM -
START
public static final org.elasticsearch.common.ParseField START -
END
public static final org.elasticsearch.common.ParseField END -
ADVANCE_TIME
public static final org.elasticsearch.common.ParseField ADVANCE_TIME -
SKIP_TIME
public static final org.elasticsearch.common.ParseField SKIP_TIME -
PARSER
public static final org.elasticsearch.common.xcontent.ConstructingObjectParser<FlushJobRequest,java.lang.Void> PARSER
-
-
Constructor Details
-
FlushJobRequest
public FlushJobRequest(java.lang.String jobId)Create new Flush job request- Parameters:
jobId- The job ID of the job to flush
-
-
Method Details
-
getJobId
public java.lang.String getJobId() -
getCalcInterim
public boolean getCalcInterim() -
setCalcInterim
public void setCalcInterim(boolean calcInterim)Whentruecalculates the interim results for the most recent bucket or all buckets within the latency period.- Parameters:
calcInterim- defaults tofalse.
-
getStart
public java.lang.String getStart() -
setStart
public void setStart(java.lang.String start)When used in conjunction withcalcInterim, specifies the start of the range of buckets on which to calculate interim results.- Parameters:
start- the beginning of the range of buckets; may be an epoch seconds, epoch millis or an ISO string
-
getEnd
public java.lang.String getEnd() -
setEnd
public void setEnd(java.lang.String end)When used in conjunction withcalcInterim, specifies the end of the range of buckets on which to calculate interim results- Parameters:
end- the end of the range of buckets; may be an epoch seconds, epoch millis or an ISO string
-
getAdvanceTime
public java.lang.String getAdvanceTime() -
setAdvanceTime
public void setAdvanceTime(java.lang.String advanceTime)Specifies to advance to a particular time value. Results are generated and the model is updated for data from the specified time interval.- Parameters:
advanceTime- String representation of a timestamp; may be an epoch seconds, epoch millis or an ISO string
-
getSkipTime
public java.lang.String getSkipTime() -
setSkipTime
public void setSkipTime(java.lang.String skipTime)Specifies to skip to a particular time value. Results are not generated and the model is not updated for data from the specified time interval.- Parameters:
skipTime- String representation of a timestamp; may be an epoch seconds, epoch millis or an ISO string
-
hashCode
public int hashCode()- Overrides:
hashCodein classjava.lang.Object
-
equals
public boolean equals(java.lang.Object obj)- Overrides:
equalsin classjava.lang.Object
-
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
-
validate
public org.elasticsearch.action.ActionRequestValidationException validate()- Specified by:
validatein classorg.elasticsearch.action.ActionRequest
-