我们正在升级到 ElasticSearch 2.0,并在 Nest 1.7.0 中遇到了映射问题:我们有两种类型共享一个字段(格式相同):
"@timestamp": {
"type": "date",
"format": "epoch_millis||dateOptionalTime"
}
当我们尝试在启动时为其中一种受影响的类型添加映射时(我们当前PUT
每次都在映射),我们得到了这个错误:
{
"error": {
"root_cause": [{
"type": "merge_mapping_exception",
"reason": "Merge failed with failures {[mapper [@timestamp] is used by multiple types. Set update_all_types to true to update [format] across all types.]}"
}],
"type": "merge_mapping_exception",
"reason": "Merge failed with failures {[mapper [@timestamp] is used by multiple types. Set update_all_types to true to update [format] across all types.]}"
},
"status": 400
}
我们正在使用此处描述的基于代码的映射,但我没有看到一种方法可以在不借助Raw
我们客户端的属性的情况下使用以下方法将查询字符串挂起:
_client.Raw.IndicesPutMapping("ourindex", "ourtype", PutMappingDescriptorObj, parameters => parameters.AddQueryString("update_all_types", null));
我浏览了Nest 的2.0 分支,但没有找到对这些映射调用的 update_all_types 查询字符串参数的任何引用。
假设IndicesPutMapping()
可以进行调用,这是我们目前唯一的选择吗?我开始怀疑我们是否应该只有条件地添加这些映射。