Rally complaining on Object type

I am trying to run create index operation in rally. One of the properties in my mapping.json has type as
object and it complains " Cannot race. Error in load generator [0]
Request returned an error. Error type: transport, Description: illegal_argument_exception ({'error': {'root_cause': [{'type': 'illegal_argument_exception', 'reason': 'unknown setting [index.restaurant-suggester.11.dev.mappings.default.properties.address.type] please check that any required plugins are installed, or check the breaking changes documentation for removed settings'}], 'type': 'illegal_argument_exception', 'reason': 'unknown setting [index.restaurant-suggester.11.dev.mappings.default.properties.address.type] please check that any required plugins are installed, or check the breaking changes documentation for removed settings'}, 'status': 400})"

Mapping.json looks like
{
"restaurant-suggester.11.dev": {
"mappings": {
"default": {
"properties": {
"restaurantId": {
"type": "keyword"
}
.........
"address": {
"type": "object"
},
"areaIds": {
"type": "keyword"
},
.......
}
}
}
}
}

Nevermind, my bad

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