查询拥有指定字段bookType的所有数据

2019-05-09  本文已影响0人  天字一等
es = Elasticsearch([{'host':'10.22.1.5','port':9200}])
    index = "lrts_book"
    #query = {"query":{"match_all":{}}}  #查询所有的数据
    query = {
        "query":{"exists": {
            "field": "bookType"   #查询拥有指定字段bookType的所有数据
        }},"from":0,"size":50,"sort":[],"aggs":{}
    }
    resp = es.search(index, body=query,size=10000)    #Elasticsearch数据库默认只能读取10条数据,所以要修改size  resp是读取的所有的数据的信息,

https://blog.csdn.net/qq_43227570/article/details/84376792

上一篇下一篇

猜你喜欢

热点阅读