当前位置:   article > 正文

go中如何使用es中的updatebyQuery_golang es updatebyquery

golang es updatebyquery
// 测试方法
func (commonES) UpdateOne(ctx context.Context, orgID int, index string, query interface{}) error {
	params := map[string]interface{}{
		"deal_deal_name":"zhangxinzhifa",
	}
	script := "ctx._source['deal_deal_name']=params['deal_deal_name']"
     
	// str, err := json.Marshal(query)
	// if err != nil {
	// 	return nil
	// }

	//res, err := esClient.UpdateByQuery().Index(genESIndex(index, orgID))..Body(string(str))
	// queryList := elastic.NewBoolQuery().Must()
	bool_query := elastic.NewBoolQuery()
	bool_query.Must(elastic.NewTermQuery("deal_id",10))
	bool_query.Must(elastic.NewTermQuery("organization_id",1))
	bool_query.Must(elastic.NewTermQuery("is_delete",false))

	
	res, err := esClient.UpdateByQuery().Index(genESIndex(index, orgID)).Query(bool_query).
	Conflicts("proceed").Type("_doc").
	Script(elastic.NewScriptInline(script).Params(params)).Size(9999).Do(ctx)
	if err != nil {
		return errors.Wrap(err, "upsert associated failed")
	}
	print(res)

	return nil
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/凡人多烦事01/article/detail/734098
推荐阅读
相关标签
  

闽ICP备14008679号