Discover view has changed - 7.12.0

"_index": "test",
  "_type": "_doc",
  "_id": "1",
  "_version": 3,
  "_score": 0,
  "fields": {
    "number": [
      2
    ],
    "statu": [
      "active"
    ],
    "word": [
      "test2"
    ],
    "word.keyword": [
      "test2"
    ],
    "statu.keyword": [
      "active"
    ]
  }
}

It was looking like this before 7.12 which is way better.

{
  "_index": "test",
  "_type": "_doc",
  "_id": "4",
  "_version": 1,
  "_score": 0,
  "_source": {
    "number": 2,
    "word": "test2",
    "statu": "done"
  }
}

how do I get this to work like before?

Hi
Currently the only way to resolve is, to set discover:searchFieldsFromSource to on in Advanced settings. However, we are aware to this issue and here you can track progress on resolving it.

Thx for your feedback!
Matthias

1 Like

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.