Class FlushRequestParameters
- Namespace
- Elasticsearch.Net
- Assembly
- Elasticsearch.Net.dll
Request options for IndicesFlushForAll
http://www.elastic.co/guide/en/elasticsearch/reference/master/indices-flush.html
public class FlushRequestParameters : RequestParameters<FlushRequestParameters>, IRequestParameters
- Inheritance
-
FlushRequestParameters
- Implements
- Inherited Members
Constructors
FlushRequestParameters()
public FlushRequestParameters()
Properties
AllowNoIndices
Whether to ignore if a wildcard indices expression resolves into no concrete indices. (This includes _all
string or when no indices have
been specified)
public bool? AllowNoIndices { get; set; }
Property Value
- bool?
DefaultHttpMethod
public override HttpMethod DefaultHttpMethod { get; }
Property Value
ExpandWildcards
Whether to expand wildcard expression to concrete indices that are open, closed or both.
public ExpandWildcards? ExpandWildcards { get; set; }
Property Value
Force
Whether a flush should be forced even if it is not necessarily needed ie. if no changes will be committed to the index. This is useful if transaction log IDs should be incremented even if no uncommitted changes are present. (This setting can be considered as internal)
public bool? Force { get; set; }
Property Value
- bool?
IgnoreUnavailable
Whether specified concrete indices should be ignored when unavailable (missing or closed)
public bool? IgnoreUnavailable { get; set; }
Property Value
- bool?
WaitIfOngoing
If set to true the flush operation will block until the flush can be executed if another flush operation is already executing. The default is true. If set to false the flush will be skipped iff if another flush operation is already running.
public bool? WaitIfOngoing { get; set; }
Property Value
- bool?