Documentation ¶
Overview ¶
Performs the force merge operation on one or more indices.
Index ¶
- Variables
- type Forcemerge
- func (r *Forcemerge) AllowNoIndices(b bool) *Forcemerge
- func (r Forcemerge) Do(ctx context.Context) (*http.Response, error)
- func (r *Forcemerge) ExpandWildcards(value string) *Forcemerge
- func (r *Forcemerge) Flush(b bool) *Forcemerge
- func (r *Forcemerge) Header(key, value string) *Forcemerge
- func (r *Forcemerge) HttpRequest(ctx context.Context) (*http.Request, error)
- func (r *Forcemerge) IgnoreUnavailable(b bool) *Forcemerge
- func (r *Forcemerge) Index(v string) *Forcemerge
- func (r Forcemerge) IsSuccess(ctx context.Context) (bool, error)
- func (r *Forcemerge) MaxNumSegments(value string) *Forcemerge
- func (r *Forcemerge) OnlyExpungeDeletes(b bool) *Forcemerge
- func (r *Forcemerge) WaitForCompletion(b bool) *Forcemerge
- type NewForcemerge
Constants ¶
This section is empty.
Variables ¶
var ErrBuildPath = errors.New("cannot build path, check for missing path parameters")
ErrBuildPath is returned in case of missing parameters within the build of the request.
Functions ¶
This section is empty.
Types ¶
type Forcemerge ¶
type Forcemerge struct {
// contains filtered or unexported fields
}
func New ¶
func New(tp elastictransport.Interface) *Forcemerge
Performs the force merge operation on one or more indices.
https://www.elastic.co/guide/en/elasticsearch/reference/master/indices-forcemerge.html
func (*Forcemerge) AllowNoIndices ¶
func (r *Forcemerge) AllowNoIndices(b bool) *Forcemerge
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) API name: allow_no_indices
func (*Forcemerge) ExpandWildcards ¶
func (r *Forcemerge) ExpandWildcards(value string) *Forcemerge
ExpandWildcards Whether to expand wildcard expression to concrete indices that are open, closed or both. API name: expand_wildcards
func (*Forcemerge) Flush ¶
func (r *Forcemerge) Flush(b bool) *Forcemerge
Flush Specify whether the index should be flushed after performing the operation (default: true) API name: flush
func (*Forcemerge) Header ¶
func (r *Forcemerge) Header(key, value string) *Forcemerge
Header set a key, value pair in the Forcemerge headers map.
func (*Forcemerge) HttpRequest ¶
HttpRequest returns the http.Request object built from the given parameters.
func (*Forcemerge) IgnoreUnavailable ¶
func (r *Forcemerge) IgnoreUnavailable(b bool) *Forcemerge
IgnoreUnavailable Whether specified concrete indices should be ignored when unavailable (missing or closed) API name: ignore_unavailable
func (*Forcemerge) Index ¶
func (r *Forcemerge) Index(v string) *Forcemerge
Index A comma-separated list of index names; use `_all` or empty string to perform the operation on all indices API Name: index
func (Forcemerge) IsSuccess ¶
func (r Forcemerge) IsSuccess(ctx context.Context) (bool, error)
IsSuccess allows to run a query with a context and retrieve the result as a boolean. This only exists for endpoints without a request payload and allows for quick control flow.
func (*Forcemerge) MaxNumSegments ¶
func (r *Forcemerge) MaxNumSegments(value string) *Forcemerge
MaxNumSegments The number of segments the index should be merged into (default: dynamic) API name: max_num_segments
func (*Forcemerge) OnlyExpungeDeletes ¶
func (r *Forcemerge) OnlyExpungeDeletes(b bool) *Forcemerge
OnlyExpungeDeletes Specify whether the operation should only expunge deleted documents API name: only_expunge_deletes
func (*Forcemerge) WaitForCompletion ¶
func (r *Forcemerge) WaitForCompletion(b bool) *Forcemerge
WaitForCompletion Should the request wait until the force merge is completed. API name: wait_for_completion
type NewForcemerge ¶
type NewForcemerge func() *Forcemerge
NewForcemerge type alias for index.
func NewForcemergeFunc ¶
func NewForcemergeFunc(tp elastictransport.Interface) NewForcemerge
NewForcemergeFunc returns a new instance of Forcemerge with the provided transport. Used in the index of the library this allows to retrieve every apis in once place.