当前位置:   article > 正文

Elasticsearch 通过具体_id 查询;script添加、删除字段内容_es页面索引_id数据怎么查

es页面索引_id数据怎么查

一、Elasticsearch 通过具体_id 查询

1、连接请求

curl -XGET http://4***7:8710/**索引表**st/_doc/15***_id值**sr?pretty
  • 1

2、函数

from elasticsearch import Elasticsearch
import requests

es = Elasticsearch([{"host": "*****27", "port": 8710}])



query_json ={
  "query":{"match":{
    "_id": "15***1zk5gwsr" 
  }
}}
    
query = es.search(index='****um_test', body=query_json, size=10)
query
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15

在这里插入图片描述

二、es script添加、删除字段内容

参考:https://blog.csdn.net/lengchanguo/article/details/78727910
https://blog.csdn.net/andy_only/article/details/118548197

POST test_match/_update/1
 {
    "script": {
    "source": "ctx._source.tags.add(params.tag)",
    "lang": "painless",
    "params": {
      "tag":"blue"
    }
  }
}

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/你好赵伟/article/detail/454520
推荐阅读
相关标签
  

闽ICP备14008679号