summaryrefslogtreecommitdiffstats
path: root/vendor/gopkg.in/olivere/elastic.v5/bulk_update_request.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/gopkg.in/olivere/elastic.v5/bulk_update_request.go')
-rw-r--r--vendor/gopkg.in/olivere/elastic.v5/bulk_update_request.go172
1 files changed, 100 insertions, 72 deletions
diff --git a/vendor/gopkg.in/olivere/elastic.v5/bulk_update_request.go b/vendor/gopkg.in/olivere/elastic.v5/bulk_update_request.go
index b0dbf0917..50e5adb8f 100644
--- a/vendor/gopkg.in/olivere/elastic.v5/bulk_update_request.go
+++ b/vendor/gopkg.in/olivere/elastic.v5/bulk_update_request.go
@@ -4,6 +4,8 @@
package elastic
+//go:generate easyjson bulk_update_request.go
+
import (
"encoding/json"
"fmt"
@@ -12,7 +14,7 @@ import (
// BulkUpdateRequest is a request to update a document in Elasticsearch.
//
-// See https://www.elastic.co/guide/en/elasticsearch/reference/5.2/docs-bulk.html
+// See https://www.elastic.co/guide/en/elasticsearch/reference/6.0/docs-bulk.html
// for details.
type BulkUpdateRequest struct {
BulkableRequest
@@ -31,8 +33,38 @@ type BulkUpdateRequest struct {
docAsUpsert *bool
detectNoop *bool
doc interface{}
+ returnSource *bool
source []string
+
+ useEasyJSON bool
+}
+
+//easyjson:json
+type bulkUpdateRequestCommand map[string]bulkUpdateRequestCommandOp
+
+//easyjson:json
+type bulkUpdateRequestCommandOp struct {
+ Index string `json:"_index,omitempty"`
+ Type string `json:"_type,omitempty"`
+ Id string `json:"_id,omitempty"`
+ Parent string `json:"parent,omitempty"`
+ // RetryOnConflict is "_retry_on_conflict" for 6.0 and "retry_on_conflict" for 6.1+.
+ RetryOnConflict *int `json:"retry_on_conflict,omitempty"`
+ Routing string `json:"routing,omitempty"`
+ Version int64 `json:"version,omitempty"`
+ VersionType string `json:"version_type,omitempty"`
+}
+
+//easyjson:json
+type bulkUpdateRequestCommandData struct {
+ DetectNoop *bool `json:"detect_noop,omitempty"`
+ Doc interface{} `json:"doc,omitempty"`
+ DocAsUpsert *bool `json:"doc_as_upsert,omitempty"`
+ Script interface{} `json:"script,omitempty"`
+ ScriptedUpsert *bool `json:"scripted_upsert,omitempty"`
+ Upsert interface{} `json:"upsert,omitempty"`
+ Source *bool `json:"_source,omitempty"`
}
// NewBulkUpdateRequest returns a new BulkUpdateRequest.
@@ -40,6 +72,16 @@ func NewBulkUpdateRequest() *BulkUpdateRequest {
return &BulkUpdateRequest{}
}
+// UseEasyJSON is an experimental setting that enables serialization
+// with github.com/mailru/easyjson, which should in faster serialization
+// time and less allocations, but removed compatibility with encoding/json,
+// usage of unsafe etc. See https://github.com/mailru/easyjson#issues-notes-and-limitations
+// for details. This setting is disabled by default.
+func (r *BulkUpdateRequest) UseEasyJSON(enable bool) *BulkUpdateRequest {
+ r.useEasyJSON = enable
+ return r
+}
+
// Index specifies the Elasticsearch index to use for this update request.
// If unspecified, the index set on the BulkService will be used.
func (r *BulkUpdateRequest) Index(index string) *BulkUpdateRequest {
@@ -78,8 +120,8 @@ func (r *BulkUpdateRequest) Parent(parent string) *BulkUpdateRequest {
}
// Script specifies an update script.
-// See https://www.elastic.co/guide/en/elasticsearch/reference/5.2/docs-bulk.html#bulk-update
-// and https://www.elastic.co/guide/en/elasticsearch/reference/5.2/modules-scripting.html
+// See https://www.elastic.co/guide/en/elasticsearch/reference/6.0/docs-bulk.html#bulk-update
+// and https://www.elastic.co/guide/en/elasticsearch/reference/6.0/modules-scripting.html
// for details.
func (r *BulkUpdateRequest) Script(script *Script) *BulkUpdateRequest {
r.script = script
@@ -90,7 +132,7 @@ func (r *BulkUpdateRequest) Script(script *Script) *BulkUpdateRequest {
// ScripedUpsert specifies if your script will run regardless of
// whether the document exists or not.
//
-// See https://www.elastic.co/guide/en/elasticsearch/reference/5.2/docs-update.html#_literal_scripted_upsert_literal
+// See https://www.elastic.co/guide/en/elasticsearch/reference/6.0/docs-update.html#_literal_scripted_upsert_literal
func (r *BulkUpdateRequest) ScriptedUpsert(upsert bool) *BulkUpdateRequest {
r.scriptedUpsert = &upsert
r.source = nil
@@ -113,7 +155,7 @@ func (r *BulkUpdateRequest) Version(version int64) *BulkUpdateRequest {
}
// VersionType can be "internal" (default), "external", "external_gte",
-// "external_gt", or "force".
+// or "external_gt".
func (r *BulkUpdateRequest) VersionType(versionType string) *BulkUpdateRequest {
r.versionType = versionType
r.source = nil
@@ -130,7 +172,7 @@ func (r *BulkUpdateRequest) Doc(doc interface{}) *BulkUpdateRequest {
// DocAsUpsert indicates whether the contents of Doc should be used as
// the Upsert value.
//
-// See https://www.elastic.co/guide/en/elasticsearch/reference/5.2/docs-update.html#_literal_doc_as_upsert_literal
+// See https://www.elastic.co/guide/en/elasticsearch/reference/6.0/docs-update.html#_literal_doc_as_upsert_literal
// for details.
func (r *BulkUpdateRequest) DocAsUpsert(docAsUpsert bool) *BulkUpdateRequest {
r.docAsUpsert = &docAsUpsert
@@ -155,6 +197,15 @@ func (r *BulkUpdateRequest) Upsert(doc interface{}) *BulkUpdateRequest {
return r
}
+// ReturnSource specifies whether Elasticsearch should return the source
+// after the update. In the request, this responds to the `_source` field.
+// It is false by default.
+func (r *BulkUpdateRequest) ReturnSource(source bool) *BulkUpdateRequest {
+ r.returnSource = &source
+ r.source = nil
+ return r
+}
+
// String returns the on-wire representation of the update request,
// concatenated as a single string.
func (r *BulkUpdateRequest) String() string {
@@ -165,28 +216,9 @@ func (r *BulkUpdateRequest) String() string {
return strings.Join(lines, "\n")
}
-func (r *BulkUpdateRequest) getSourceAsString(data interface{}) (string, error) {
- switch t := data.(type) {
- default:
- body, err := json.Marshal(data)
- if err != nil {
- return "", err
- }
- return string(body), nil
- case json.RawMessage:
- return string(t), nil
- case *json.RawMessage:
- return string(*t), nil
- case string:
- return t, nil
- case *string:
- return *t, nil
- }
-}
-
// Source returns the on-wire representation of the update request,
// split into an action-and-meta-data line and an (optional) source line.
-// See https://www.elastic.co/guide/en/elasticsearch/reference/5.2/docs-bulk.html
+// See https://www.elastic.co/guide/en/elasticsearch/reference/6.0/docs-bulk.html
// for details.
func (r *BulkUpdateRequest) Source() ([]string, error) {
// { "update" : { "_index" : "test", "_type" : "type1", "_id" : "1", ... } }
@@ -202,69 +234,65 @@ func (r *BulkUpdateRequest) Source() ([]string, error) {
lines := make([]string, 2)
// "update" ...
- command := make(map[string]interface{})
- updateCommand := make(map[string]interface{})
- if r.index != "" {
- updateCommand["_index"] = r.index
- }
- if r.typ != "" {
- updateCommand["_type"] = r.typ
- }
- if r.id != "" {
- updateCommand["_id"] = r.id
- }
- if r.routing != "" {
- updateCommand["_routing"] = r.routing
- }
- if r.parent != "" {
- updateCommand["_parent"] = r.parent
- }
- if r.version > 0 {
- updateCommand["_version"] = r.version
+ updateCommand := bulkUpdateRequestCommandOp{
+ Index: r.index,
+ Type: r.typ,
+ Id: r.id,
+ Routing: r.routing,
+ Parent: r.parent,
+ Version: r.version,
+ VersionType: r.versionType,
+ RetryOnConflict: r.retryOnConflict,
}
- if r.versionType != "" {
- updateCommand["_version_type"] = r.versionType
+ command := bulkUpdateRequestCommand{
+ "update": updateCommand,
}
- if r.retryOnConflict != nil {
- updateCommand["_retry_on_conflict"] = *r.retryOnConflict
+
+ var err error
+ var body []byte
+ if r.useEasyJSON {
+ // easyjson
+ body, err = command.MarshalJSON()
+ } else {
+ // encoding/json
+ body, err = json.Marshal(command)
}
- command["update"] = updateCommand
- line, err := json.Marshal(command)
if err != nil {
return nil, err
}
- lines[0] = string(line)
+
+ lines[0] = string(body)
// 2nd line: {"doc" : { ... }} or {"script": {...}}
- source := make(map[string]interface{})
- if r.docAsUpsert != nil {
- source["doc_as_upsert"] = *r.docAsUpsert
- }
- if r.detectNoop != nil {
- source["detect_noop"] = *r.detectNoop
- }
- if r.upsert != nil {
- source["upsert"] = r.upsert
+ data := bulkUpdateRequestCommandData{
+ DocAsUpsert: r.docAsUpsert,
+ DetectNoop: r.detectNoop,
+ Upsert: r.upsert,
+ ScriptedUpsert: r.scriptedUpsert,
+ Doc: r.doc,
+ Source: r.returnSource,
}
- if r.scriptedUpsert != nil {
- source["scripted_upsert"] = *r.scriptedUpsert
- }
- if r.doc != nil {
- // {"doc":{...}}
- source["doc"] = r.doc
- } else if r.script != nil {
- // {"script":...}
- src, err := r.script.Source()
+ if r.script != nil {
+ script, err := r.script.Source()
if err != nil {
return nil, err
}
- source["script"] = src
+ data.Script = script
+ }
+
+ if r.useEasyJSON {
+ // easyjson
+ body, err = data.MarshalJSON()
+ } else {
+ // encoding/json
+ body, err = json.Marshal(data)
}
- lines[1], err = r.getSourceAsString(source)
if err != nil {
return nil, err
}
+ lines[1] = string(body)
+
r.source = lines
return lines, nil
}