field10
当我更新索引中的特定记录时,我有一个意外创建的字段。我想从我的索引中删除该字段及其所有内容并使用以下映射重新创建它:
"mytype":{
"properties":{
"field10":{
"type":"string",
"index":"not_analyzed",
"include_in_all":"false",
"null_value":"null"
}
}
}
当我尝试使用 Put Mapping API 创建此映射时,出现错误:{"error":"MergeMappingException[Merge failed with failures {[mapper [field10] has different index values, mapper [field10] has different index_analyzer, mapper [field10] has different search_analyzer]}]","status":400}
.
如何更改此字段的映射?我不想仅仅为了这个小事故重新索引数百万条记录。
谢谢