I specifically used index mapping to disable some high cardinality fields:
"siteEntity": {
"properties": {
"defaultPlacementsForMediaType": {
"type": "object",
"enabled": false
}
}
}
When I look at index pattern in Kibana, the field defaultPlacementsForMediaType is not in there, as expected.
However, Kibana discover is still trying to load every distinct value for that field and show in available fields list, which pretty much kills the page.
Is there a way to tell Kibana Discover to completely ignore that field ?
Thanks,
Limus