elasticutil

package
v0.0.0-...-7cac148 Latest Latest
Warning

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

Go to latest
Published: May 21, 2024 License: Apache-2.0 Imports: 4 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type UpdateByQueryTask

type UpdateByQueryTask struct {
	Completed bool                       `json:"completed"`
	Task      *UpdateByQueryTaskInfo     `json:"task,omitempty"`
	Response  *UpdateByQueryTaskResponse `json:"response"`
}

func GetUpdateByQueryTask

func GetUpdateByQueryTask(ctx context.Context, client *elastic.Client, taskID string) (*UpdateByQueryTask, error)

type UpdateByQueryTaskInfo

type UpdateByQueryTaskInfo struct {
	Node               string                   `json:"node"`
	Id                 int64                    `json:"id"` // the task id (yes, this is a long in the Java source)
	Type               string                   `json:"type"`
	Action             string                   `json:"action"`
	Status             *UpdateByQueryTaskStatus `json:"status"`      // has separate implementations of Task.Status in Java for reindexing, replication, and "RawTaskStatus"
	Description        interface{}              `json:"description"` // same as Status
	StartTimeInMillis  int64                    `json:"start_time_in_millis"`
	RunningTimeInNanos int64                    `json:"running_time_in_nanos"`
	Cancellable        bool                     `json:"cancellable"`
	ParentTaskId       string                   `json:"parent_task_id"` // like "YxJnVYjwSBm_AUbzddTajQ:12356"
	Headers            map[string]string        `json:"headers"`
}

type UpdateByQueryTaskResponse

type UpdateByQueryTaskResponse struct {
	TimedOut bool `json:"timed_out"`
	Retries  struct {
		Bulk   int `json:"bulk"`
		Search int `json:"search"`
	} `json:"retries"`
	Total            int      `json:"total"`
	Updated          int      `json:"updated"`
	Created          int      `json:"created"`
	Deleted          int      `json:"deleted"`
	Batches          int      `json:"batches"`
	VersionConflicts int      `json:"version_conflicts"`
	Noops            int      `json:"noops"`
	Failures         []string `json:"failures"`
}

type UpdateByQueryTaskStatus

type UpdateByQueryTaskStatus struct {
	Retries struct {
		Bulk   int `json:"bulk"`
		Search int `json:"search"`
	} `json:"retries"`
	Total            int `json:"total"`
	Updated          int `json:"updated"`
	Created          int `json:"created"`
	Deleted          int `json:"deleted"`
	Batches          int `json:"batches"`
	VersionConflicts int `json:"version_conflicts"`
	Noops            int `json:"noops"`
}

Jump to

Keyboard shortcuts

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