Class UpdateDatafeedRequest
java.lang.Object
co.elastic.clients.elasticsearch._types.RequestBase
co.elastic.clients.elasticsearch.ml.UpdateDatafeedRequest
- All Implemented Interfaces:
JsonpSerializable
@JsonpDeserializable public class UpdateDatafeedRequest extends RequestBase implements JsonpSerializable
Updates the properties of a datafeed. You must stop and start the datafeed
for the changes to be applied. When Elasticsearch security features are
enabled, your datafeed remembers which roles the user who updated it had at
the time of the update and runs the query using those same roles. If you
provide secondary authorization headers, those credentials are used instead.
- See Also:
- API specification
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classUpdateDatafeedRequest.BuilderBuilder forUpdateDatafeedRequest.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<UpdateDatafeedRequest>_DESERIALIZERJson deserializer forUpdateDatafeedRequeststatic Endpoint<UpdateDatafeedRequest,UpdateDatafeedResponse,ErrorResponse>_ENDPOINTEndpoint "ml.update_datafeed". -
Method Summary
Modifier and Type Method Description java.util.Map<java.lang.String,Aggregation>aggregations()If set, the datafeed performs aggregation searches.java.lang.BooleanallowNoIndices()Iftrue, wildcard indices expressions that resolve into no concrete indices are ignored.ChunkingConfigchunkingConfig()Datafeeds might search over long time periods, for several months or years.java.lang.StringdatafeedId()Required - A numerical character string that uniquely identifies the datafeed.DelayedDataCheckConfigdelayedDataCheckConfig()Specifies whether the datafeed checks for missing data and the size of the window.java.util.List<ExpandWildcard>expandWildcards()Type of index that wildcard patterns can match.Timefrequency()The interval at which scheduled queries are made while the datafeed runs in real time.java.lang.BooleanignoreThrottled()Deprecated.7.16.0java.lang.BooleanignoreUnavailable()Iftrue, unavailable indices (missing or closed) are ignored.java.util.List<java.lang.String>indices()An array of index names.IndicesOptionsindicesOptions()Specifies index expansion options that are used during search.java.lang.IntegermaxEmptySearches()If a real-time datafeed has never seen any data (including during any initial training period), it automatically stops and closes the associated job after this many real-time searches return no documents.static UpdateDatafeedRequestof(java.util.function.Function<UpdateDatafeedRequest.Builder,ObjectBuilder<UpdateDatafeedRequest>> fn)Queryquery()The Elasticsearch query domain-specific language (DSL).TimequeryDelay()The number of seconds behind real time that data is queried.java.util.Map<java.lang.String,RuntimeField>runtimeMappings()Specifies runtime fields for the datafeed search.java.util.Map<java.lang.String,ScriptField>scriptFields()Specifies scripts that evaluate custom expressions and returns script fields to the datafeed.java.lang.IntegerscrollSize()The size parameter that is used in Elasticsearch searches when the datafeed does not use aggregations.voidserialize(jakarta.json.stream.JsonGenerator generator, JsonpMapper mapper)Serialize this object to JSON.protected voidserializeInternal(jakarta.json.stream.JsonGenerator generator, JsonpMapper mapper)protected static voidsetupUpdateDatafeedRequestDeserializer(ObjectDeserializer<UpdateDatafeedRequest.Builder> op)Methods inherited from class co.elastic.clients.elasticsearch._types.RequestBase
toStringMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Field Details
-
_DESERIALIZER
Json deserializer forUpdateDatafeedRequest -
_ENDPOINT
public static final Endpoint<UpdateDatafeedRequest,UpdateDatafeedResponse,ErrorResponse> _ENDPOINTEndpoint "ml.update_datafeed".
-
-
Method Details
-
of
public static UpdateDatafeedRequest of(java.util.function.Function<UpdateDatafeedRequest.Builder,ObjectBuilder<UpdateDatafeedRequest>> fn) -
aggregations
If set, the datafeed performs aggregation searches. Support for aggregations is limited and should be used only with low cardinality data.API name:
aggregations -
allowNoIndices
@Nullable public final java.lang.Boolean allowNoIndices()Iftrue, wildcard indices expressions that resolve into no concrete indices are ignored. This includes the_allstring or when no indices are specified.API name:
allow_no_indices -
chunkingConfig
Datafeeds might search over long time periods, for several months or years. This search is split into time chunks in order to ensure the load on Elasticsearch is managed. Chunking configuration controls how the size of these time chunks are calculated; it is an advanced configuration option.API name:
chunking_config -
datafeedId
public final java.lang.String datafeedId()Required - A numerical character string that uniquely identifies the datafeed. 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:
datafeed_id -
delayedDataCheckConfig
Specifies whether the datafeed checks for missing data and the size of the window. The datafeed can optionally search over indices that have already been read in an effort to determine whether any data has subsequently been added to the index. If missing data is found, it is a good indication that thequery_delayis set too low and the data is being indexed after the datafeed has passed that moment in time. This check runs only on real-time datafeeds.API name:
delayed_data_check_config -
expandWildcards
Type of index that wildcard patterns can match. If the request can target data streams, this argument determines whether wildcard expressions match hidden data streams. Supports comma-separated values. Valid values are:all: Match any data stream or index, including hidden ones.closed: Match closed, non-hidden indices. Also matches any non-hidden data stream. Data streams cannot be closed.hidden: Match hidden data streams and hidden indices. Must be combined withopen,closed, or both.none: Wildcard patterns are not accepted.open: Match open, non-hidden indices. Also matches any non-hidden data stream.
API name:
expand_wildcards -
frequency
The interval at which scheduled queries are made while the datafeed runs in real time. The default value is either the bucket span for short bucket spans, or, for longer bucket spans, a sensible fraction of the bucket span. Whenfrequencyis shorter than the bucket span, interim results for the last (partial) bucket are written then eventually overwritten by the full bucket results. If the datafeed uses aggregations, this value must be divisible by the interval of the date histogram aggregation.API name:
frequency -
ignoreThrottled
@Deprecated @Nullable public final java.lang.Boolean ignoreThrottled()Deprecated.7.16.0Iftrue, concrete, expanded or aliased indices are ignored when frozen.API name:
ignore_throttled -
indices
public final java.util.List<java.lang.String> indices()An array of index names. Wildcards are supported. If any of the indices are in remote clusters, the machine learning nodes must have theremote_cluster_clientrole.API name:
indices -
indicesOptions
Specifies index expansion options that are used during search.API name:
indices_options -
maxEmptySearches
@Nullable public final java.lang.Integer maxEmptySearches()If a real-time datafeed has never seen any data (including during any initial training period), it automatically stops and closes the associated job after this many real-time searches return no documents. In other words, it stops afterfrequencytimesmax_empty_searchesof real-time operation. If not set, a datafeed with no end time that sees no data remains started until it is explicitly stopped. By default, it is not set.API name:
max_empty_searches -
query
The Elasticsearch query domain-specific language (DSL). This value corresponds to the query object in an Elasticsearch search POST body. All the options that are supported by Elasticsearch can be used, as this object is passed verbatim to Elasticsearch. Note that if you change the query, the analyzed data is also changed. Therefore, the time required to learn might be long and the understandability of the results is unpredictable. If you want to make significant changes to the source data, it is recommended that you clone the job and datafeed and make the amendments in the clone. Let both run in parallel and close one when you are satisfied with the results of the job.API name:
query -
queryDelay
The number of seconds behind real time that data is queried. For example, if data from 10:04 a.m. might not be searchable in Elasticsearch until 10:06 a.m., set this property to 120 seconds. The default value is randomly selected between60sand120s. This randomness improves the query performance when there are multiple jobs running on the same node.API name:
query_delay -
runtimeMappings
Specifies runtime fields for the datafeed search.API name:
runtime_mappings -
scriptFields
Specifies scripts that evaluate custom expressions and returns script fields to the datafeed. The detector configuration objects in a job can contain functions that use these script fields.API name:
script_fields -
scrollSize
@Nullable public final java.lang.Integer scrollSize()The size parameter that is used in Elasticsearch searches when the datafeed does not use aggregations. The maximum value is the value ofindex.max_result_window.API name:
scroll_size -
serialize
Serialize this object to JSON.- Specified by:
serializein interfaceJsonpSerializable
-
serializeInternal
-
setupUpdateDatafeedRequestDeserializer
protected static void setupUpdateDatafeedRequestDeserializer(ObjectDeserializer<UpdateDatafeedRequest.Builder> op)
-