filter_path指定查询返回的字段
_search?filter_path=hits.hits._source
_search?filter_path=hits.hits._source
加到es配置文件中,重启集群 cluster.max_shards_per_node: 999999
PUT /_settings { "index" : { "highlight.max_analyzed_offset" : 100000000 } }
对于索引和搜索都有性能影响! Lucene的Post list是用文档id做delta编码压缩的,稀疏的数据会使得相邻文档id的delta值很大,post list压缩率降低,因此生成的索引文件增大。另外为了加快排序和聚合速度,ES还会为keyword,数值型一类的机构化字段构建列式存储结构doc values,根据字段类型,每个文档都会占用一块空间...