Can I specify the result fields in elasticsearch query?

前端 未结 2 1139
小鲜肉
小鲜肉 2020-12-15 08:36

In my dataset, a document contains 20+ fields with nested objects. Most of them are long text fields. These fields are important for full-text search but we only need to sho

2条回答
  •  时光取名叫无心
    2020-12-15 09:08

    I think you're looking for the fields property of a search request:

    Allows to selectively load specific fields for each document represented by a search hit. Defaults to load the internal _source field.

    {
        "fields" : ["user", "postDate"],
        "query" : {
            "term" : { "user" : "kimchy" }
        }
    }
    

    The fields will automatically load stored fields (store mapping set to yes), or, if not stored, will load the _source and extract it from it (allowing to return nested document object).

提交回复
热议问题