美文网首页
查询拥有指定字段bookType的所有数据

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

作者: 天字一等 | 来源:发表于2019-05-09 17:12 被阅读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

    相关文章

      网友评论

          本文标题:查询拥有指定字段bookType的所有数据

          本文链接:https://www.haomeiwen.com/subject/eekgoqtx.html