Documentation ¶
Overview ¶
Create a follower. Create a cross-cluster replication follower index that follows a specific leader index. When the API returns, the follower index exists and cross-cluster replication starts replicating operations from the leader index to the follower index.
Index ¶
- Variables
- type Follow
- func (r Follow) Do(providedCtx context.Context) (*Response, error)
- func (r *Follow) ErrorTrace(errortrace bool) *Follow
- func (r *Follow) FilterPath(filterpaths ...string) *Follow
- func (r *Follow) Header(key, value string) *Follow
- func (r *Follow) HttpRequest(ctx context.Context) (*http.Request, error)
- func (r *Follow) Human(human bool) *Follow
- func (r *Follow) LeaderIndex(indexname string) *Follow
- func (r *Follow) MaxOutstandingReadRequests(maxoutstandingreadrequests int64) *Follow
- func (r *Follow) MaxOutstandingWriteRequests(maxoutstandingwriterequests int64) *Follow
- func (r *Follow) MaxReadRequestOperationCount(maxreadrequestoperationcount int64) *Follow
- func (r *Follow) MaxReadRequestSize(maxreadrequestsize string) *Follow
- func (r *Follow) MaxRetryDelay(duration types.Duration) *Follow
- func (r *Follow) MaxWriteBufferCount(maxwritebuffercount int64) *Follow
- func (r *Follow) MaxWriteBufferSize(maxwritebuffersize string) *Follow
- func (r *Follow) MaxWriteRequestOperationCount(maxwriterequestoperationcount int64) *Follow
- func (r *Follow) MaxWriteRequestSize(maxwriterequestsize string) *Follow
- func (r Follow) Perform(providedCtx context.Context) (*http.Response, error)
- func (r *Follow) Pretty(pretty bool) *Follow
- func (r *Follow) Raw(raw io.Reader) *Follow
- func (r *Follow) ReadPollTimeout(duration types.Duration) *Follow
- func (r *Follow) RemoteCluster(remotecluster string) *Follow
- func (r *Follow) Request(req *Request) *Follow
- func (r *Follow) WaitForActiveShards(waitforactiveshards string) *Follow
- type NewFollow
- type Request
- type Response
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 Follow ¶
type Follow struct {
// contains filtered or unexported fields
}
func New ¶
func New(tp elastictransport.Interface) *Follow
Create a follower. Create a cross-cluster replication follower index that follows a specific leader index. When the API returns, the follower index exists and cross-cluster replication starts replicating operations from the leader index to the follower index.
https://www.elastic.co/guide/en/elasticsearch/reference/current/ccr-put-follow.html
func (Follow) Do ¶
Do runs the request through the transport, handle the response and returns a follow.Response
func (*Follow) ErrorTrace ¶ added in v8.14.0
ErrorTrace When set to `true` Elasticsearch will include the full stack trace of errors when they occur. API name: error_trace
func (*Follow) FilterPath ¶ added in v8.14.0
FilterPath Comma-separated list of filters in dot notation which reduce the response returned by Elasticsearch. API name: filter_path
func (*Follow) HttpRequest ¶
HttpRequest returns the http.Request object built from the given parameters.
func (*Follow) Human ¶ added in v8.14.0
Human When set to `true` will return statistics in a format suitable for humans. For example `"exists_time": "1h"` for humans and `"eixsts_time_in_millis": 3600000` for computers. When disabled the human readable values will be omitted. This makes sense for responses being consumed only by machines. API name: human
func (*Follow) LeaderIndex ¶ added in v8.9.0
API name: leader_index
func (*Follow) MaxOutstandingReadRequests ¶ added in v8.9.0
API name: max_outstanding_read_requests
func (*Follow) MaxOutstandingWriteRequests ¶ added in v8.9.0
API name: max_outstanding_write_requests
func (*Follow) MaxReadRequestOperationCount ¶ added in v8.9.0
API name: max_read_request_operation_count
func (*Follow) MaxReadRequestSize ¶ added in v8.9.0
API name: max_read_request_size
func (*Follow) MaxRetryDelay ¶ added in v8.9.0
API name: max_retry_delay
func (*Follow) MaxWriteBufferCount ¶ added in v8.9.0
API name: max_write_buffer_count
func (*Follow) MaxWriteBufferSize ¶ added in v8.9.0
API name: max_write_buffer_size
func (*Follow) MaxWriteRequestOperationCount ¶ added in v8.9.0
API name: max_write_request_operation_count
func (*Follow) MaxWriteRequestSize ¶ added in v8.9.0
API name: max_write_request_size
func (Follow) Perform ¶ added in v8.7.0
Perform runs the http.Request through the provided transport and returns an http.Response.
func (*Follow) Pretty ¶ added in v8.14.0
Pretty If set to `true` the returned JSON will be "pretty-formatted". Only use this option for debugging only. API name: pretty
func (*Follow) Raw ¶
Raw takes a json payload as input which is then passed to the http.Request If specified Raw takes precedence on Request method.
func (*Follow) ReadPollTimeout ¶ added in v8.9.0
API name: read_poll_timeout
func (*Follow) RemoteCluster ¶ added in v8.9.0
API name: remote_cluster
func (*Follow) WaitForActiveShards ¶
WaitForActiveShards Sets the number of shard copies that must be active before returning. Defaults to 0. Set to `all` for all shard copies, otherwise set to any non-negative value less than or equal to the total number of copies for the shard (number of replicas + 1) API name: wait_for_active_shards
type NewFollow ¶
NewFollow type alias for index.
func NewFollowFunc ¶
func NewFollowFunc(tp elastictransport.Interface) NewFollow
NewFollowFunc returns a new instance of Follow 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 { LeaderIndex *string `json:"leader_index,omitempty"` MaxOutstandingReadRequests *int64 `json:"max_outstanding_read_requests,omitempty"` MaxOutstandingWriteRequests *int64 `json:"max_outstanding_write_requests,omitempty"` MaxReadRequestOperationCount *int64 `json:"max_read_request_operation_count,omitempty"` MaxReadRequestSize *string `json:"max_read_request_size,omitempty"` MaxRetryDelay types.Duration `json:"max_retry_delay,omitempty"` MaxWriteBufferCount *int64 `json:"max_write_buffer_count,omitempty"` MaxWriteBufferSize *string `json:"max_write_buffer_size,omitempty"` MaxWriteRequestOperationCount *int64 `json:"max_write_request_operation_count,omitempty"` MaxWriteRequestSize *string `json:"max_write_request_size,omitempty"` ReadPollTimeout types.Duration `json:"read_poll_timeout,omitempty"` RemoteCluster *string `json:"remote_cluster,omitempty"` }
Request holds the request body struct for the package follow
func (*Request) FromJSON ¶ added in v8.5.0
FromJSON allows to load an arbitrary json into the request structure