Hi All,
I am getting the error as Saved “field” parameter is now invalid. Please select a new field. …. Visualize: “field” is a required parameter
On further debugging , I am seeing that there are certain fields marked as Aggregatable and Searchable and it appears that it is being used by Kibana strictly to allow Count Distinct Aggregations only on fields defined as Aggregatable.
Any idea how does it classify a field as Aggregatable? I have following field and it does not appears as Aggregatable in the Kibana UI. Any idea what could trigger this. I already have data loaded and indexed and data contains this field.
"movie_id": {
"index": "not_analyzed",
"type": "string",
"fields": {
"hash": {
"type": "murmur3"
}
},
"doc_values": false
},