I am using :
Magento Version : CE Version 2.1
ElasticSuite Version :2.3
when i try to map geo_shape it showing me error message : mapper_parsing_exception: Mapping definition for [coordinates] has unsupported parameters: [norms : {enabled=false}] [doc_values : true]
my code in xml elasticsuite_indices.xml:
field name="hyperlocal.sellerid" type="integer" nestedPath="hyperlocal"
field name="hyperlocal.coordinates" type="geo_shape" nestedPath="hyperlocal"
When i try to index it throwing error message:
mapper_parsing_exception: Mapping definition for [coordinates] has unsupported parameters: [norms : {enabled=false}] [doc_values : true]
what i am missing in mapping xml code?
Expected result
I am trying to mapping like:
"hyperlocal" : {
"type" : "nested",
"properties" : {
"location" : {
"type" : "geo_shape"
},
"sellerid" : {
"type" : "integer"
}
}
}
Please help.