查询索引时查询结果不一致

时间:2017-10-10 15:15:26

标签: elasticsearch

当我在字段上搜索时,我得到最近使用的结果,并且无法获得新单词的结果(第一次搜索)。

我的查询

{
  "query": {
    "bool": {
      "must": [
        {
          "match_phrase_prefix": {
            "textfeild": "lonely"
          }
        },
        {
          "match": {
            "feild": 123456
          }
        }
      ]
    }
  },
  "from": 0,
  "size": 100
}

满载后(大约1000万rec)我面临这个问题。

由于

0 个答案:

没有答案