reroute

package
v8.0.0-...-8970b63 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 9, 2023 License: Apache-2.0 Imports: 12 Imported by: 0

Documentation

Overview

Allows to manually change the allocation of individual shards in the cluster.

Index

Constants

This section is empty.

Variables

View Source
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 NewReroute

type NewReroute func() *Reroute

NewReroute type alias for index.

func NewRerouteFunc

func NewRerouteFunc(tp elastictransport.Interface) NewReroute

NewRerouteFunc returns a new instance of Reroute with the provided transport. Used in the index of the library this allows to retrieve every apis in once place.

type Request

type Request struct {

	// Commands Defines the commands to perform.
	Commands []types.Command `json:"commands,omitempty"`
}

Request holds the request body struct for the package reroute

https://github.com/elastic/elasticsearch-specification/blob/1ad7fe36297b3a8e187b2259dedaf68a47bc236e/specification/cluster/reroute/ClusterRerouteRequest.ts#L25-L70

func NewRequest

func NewRequest() *Request

NewRequest returns a Request

func (*Request) FromJSON

func (r *Request) FromJSON(data string) (*Request, error)

FromJSON allows to load an arbitrary json into the request structure

type Reroute

type Reroute struct {
	// contains filtered or unexported fields
}

func New

Allows to manually change the allocation of individual shards in the cluster.

https://www.elastic.co/guide/en/elasticsearch/reference/{branch}/cluster-reroute.html

func (Reroute) Do

func (r Reroute) Do(ctx context.Context) (*Response, error)

Do runs the request through the transport, handle the response and returns a reroute.Response

func (*Reroute) DryRun

func (r *Reroute) DryRun(b bool) *Reroute

DryRun If true, then the request simulates the operation only and returns the resulting state. API name: dry_run

func (*Reroute) Explain

func (r *Reroute) Explain(b bool) *Reroute

Explain If true, then the response contains an explanation of why the commands can or cannot be executed. API name: explain

func (*Reroute) Header

func (r *Reroute) Header(key, value string) *Reroute

Header set a key, value pair in the Reroute headers map.

func (*Reroute) HttpRequest

func (r *Reroute) HttpRequest(ctx context.Context) (*http.Request, error)

HttpRequest returns the http.Request object built from the given parameters.

func (*Reroute) MasterTimeout

func (r *Reroute) MasterTimeout(v string) *Reroute

MasterTimeout Period to wait for a connection to the master node. If no response is received before the timeout expires, the request fails and returns an error. API name: master_timeout

func (*Reroute) Metric

func (r *Reroute) Metric(v string) *Reroute

Metric Limits the information returned to the specified metrics. API name: metric

func (Reroute) Perform

func (r Reroute) Perform(ctx context.Context) (*http.Response, error)

Perform runs the http.Request through the provided transport and returns an http.Response.

func (*Reroute) Raw

func (r *Reroute) Raw(raw io.Reader) *Reroute

Raw takes a json payload as input which is then passed to the http.Request If specified Raw takes precedence on Request method.

func (*Reroute) Request

func (r *Reroute) Request(req *Request) *Reroute

Request allows to set the request property with the appropriate payload.

func (*Reroute) RetryFailed

func (r *Reroute) RetryFailed(b bool) *Reroute

RetryFailed If true, then retries allocation of shards that are blocked due to too many subsequent allocation failures. API name: retry_failed

func (*Reroute) Timeout

func (r *Reroute) Timeout(v string) *Reroute

Timeout Period to wait for a response. If no response is received before the timeout expires, the request fails and returns an error. API name: timeout

type Response

type Response struct {
	Acknowledged bool                       `json:"acknowledged"`
	Explanations []types.RerouteExplanation `json:"explanations,omitempty"`
	// State There aren't any guarantees on the output/structure of the raw cluster state.
	// Here you will find the internal representation of the cluster, which can
	// differ from the external representation.
	State json.RawMessage `json:"state,omitempty"`
}

func NewResponse

func NewResponse() *Response

NewResponse returns a Response

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL