Hi,
I've recently taken a snapshot from a 2.3 cluster and restored it to a 5.1 cluster. (The AWS hosted service version )
When I go to Kibana and make a new index pattern it lets me, but if I try to set any index as the default one I get this error:
Config: Error 400 Bad Request: [mapper_parsing_exception] failed to find type parsed [multi_field] for [defaultIndex]
Could this be due to .kibana having string and multi-field in the mappings?
{ ".kibana": { "mappings": { "index-pattern": { "_all": { "enabled": true }, "dynamic_templates": [ { "string_fields": { "match": "*", "match_mapping_type": "string", "mapping": { "fields": { "{name}": { "index": "analyzed", "omit_norms": true, "type": "string" }, "raw": { "ignore_above": 256, "index": "not_analyzed", "type": "string" } }, "type": "multi_field" } } } ], "properties": { "@version": { "type": "keyword" }, "fieldFormatMap": { "type": "text" }, "fields": { "type": "text" }, "intervalName": { "type": "text" }, "notExpandable": { "type": "boolean" }, "sourceFilters": { "type": "text" }, "timeFieldName": { "type": "text" }, "title": { "type": "text" } } }, "_default_": { "_all": { "enabled": true }, "dynamic_templates": [ { "string_fields": { "match": "*", "match_mapping_type": "string", "mapping": { "fields": { "{name}": { "index": "analyzed", "omit_norms": true, "type": "string" }, "raw": { "ignore_above": 256, "index": "not_analyzed", "type": "string" } }, "type": "multi_field" } } } ], "properties": { "@version": { "type": "keyword" } } }, "server": { "_all": { "enabled": true }, "dynamic_templates": [ { "string_fields": { "match": "*", "match_mapping_type": "string", "mapping": { "fields": { "{name}": { "index": "analyzed", "omit_norms": true, "type": "string" }, "raw": { "ignore_above": 256, "index": "not_analyzed", "type": "string" } }, "type": "multi_field" } } } ], "properties": { "@version": { "type": "keyword" }, "uuid": { "type": "keyword" } } }, "config": { "_all": { "enabled": true }, "dynamic_templates": [ { "string_fields": { "match": "*", "match_mapping_type": "string", "mapping": { "fields": { "{name}": { "index": "analyzed", "omit_norms": true, "type": "string" }, "raw": { "ignore_above": 256, "index": "not_analyzed", "type": "string" } }, "type": "multi_field" } } } ], "properties": { "@version": { "type": "keyword" }, "buildNum": { "type": "keyword" } } } } } }
I've tried deleting the .kibana index but when it gets rebuilt it seems to get the same mappings, do I need to override them somehow?
Thanks!