Hi,
Sure this is the error output (partial) :
Checks completed. The cluster requires action before upgrading.
Elasticsearch version: 1.7.1
Index: myindex
Conflicting field mappings
Mapping for field typeb:account conflicts with: typed:account. Check parameters: doc_values, store
Mapping for field typeb:account conflicts with: typea:account. Check parameters: doc_values, store
Mapping for field typeb:account conflicts with: typee:account. Check parameters: doc_values, store
Mapping for field typeb:account conflicts with: typec:account. Check parameters: doc_values, store
Mapping for field typeb:title conflicts with: typea:title. Check parameter: index
Mapping for field typeb:user conflicts with: typed:user. Check parameters: doc_values, store
Mapping for field typeb:user conflicts with: typea:user. Check parameters: doc_values, store
Mapping for field typeb:user conflicts with: typee:user. Check parameters: doc_values, store
Mapping for field typeb:user conflicts with: typec:user. Check parameters: doc_values, store
....
And this is the mapping that gives the error (doc_values properties are not returned by GET /indexname/_mapping, but fields account and user are defined with doc_values true) :
{
"myindex" : {
"mappings" : {
"typea" : {
"_source" : {
"enabled" : false
},
"properties" : {
"account" : {
"type" : "string",
"index" : "not_analyzed",
"store" : true
},
"title" : {
"type" : "string",
"store" : true
},
"user" : {
"type" : "string",
"index" : "not_analyzed",
"store" : true
}
}
},
"typeb" : {
"_source" : {
"enabled" : false
},
"properties" : {
"account" : {
"type" : "string",
"index" : "not_analyzed",
"doc_values" : true
},
"title" : {
"type" : "string",
"index" : "no",
"store" : true
},
"user" : {
"type" : "string",
"index" : "not_analyzed",
"doc_values" : true
}
}
},
"typec" : {
"_source" : {
"enabled" : false
},
"properties" : {
"account" : {
"type" : "string",
"index" : "not_analyzed",
"store" : true
},
"user" : {
"type" : "string",
"index" : "not_analyzed",
"store" : true
}
}
},
"typed" : {
"_source" : {
"enabled" : false
},
"properties" : {
"account" : {
"type" : "string",
"index" : "not_analyzed",
"store" : true
},
"user" : {
"type" : "string",
"index" : "not_analyzed",
"store" : true
}
}
},
"typee" : {
"_source" : {
"enabled" : false
},
"properties" : {
"account" : {
"type" : "string",
"index" : "not_analyzed",
"store" : true
},
"user" : {
"type" : "string",
"index" : "not_analyzed",
"store" : true
}
}
}
}
}
}
Thanks