在 ElasticSearch Put Mapping 上传递 update_all_types
Pass update_all_types on ElasticSearch Put Mapping
我们正在升级到 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
}
我们正在使用 here 描述的基于代码的映射,但我没有看到一种方法可以在不求助于 Raw
属性 的情况下将查询字符串从该方法中挂起我们的客户使用这样的东西:
_client.Raw.IndicesPutMapping("ourindex", "ourtype", PutMappingDescriptorObj, parameters => parameters.AddQueryString("update_all_types", null));
我浏览了 Nest 的 2.0 branch,但没有找到任何对这些映射调用的 update_all_types 查询字符串参数的引用。
假设 IndicesPutMapping()
调用可以正常工作,这是我们目前唯一的选择吗?我开始怀疑我们是否应该只有条件地添加这些映射。
事实证明,我们能够找到另一种方法:在创建映射时,我们并未明确为 @timestamp
字段提供格式,而 2.0 似乎导致系统对其进行处理作为一个变化,因此我们的问题。我们能够通过在我们的映射逻辑中固定这些日期字段的现有格式来解决这个问题,如下所示:
// formatted strangely to make the addition more obvious
_client.Map<OurType>(m =>
m.Properties(ps => ps
.Date(d => d.Name(es => es.Date) // es is a reference to an instance of OurType, and Date is the name of the field being mapped to @timestamp
.Format("epoch_millis||dateOptionalTime") // this is what fixed it
)
//other props
)
//other stuff
);
我们正在升级到 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
}
我们正在使用 here 描述的基于代码的映射,但我没有看到一种方法可以在不求助于 Raw
属性 的情况下将查询字符串从该方法中挂起我们的客户使用这样的东西:
_client.Raw.IndicesPutMapping("ourindex", "ourtype", PutMappingDescriptorObj, parameters => parameters.AddQueryString("update_all_types", null));
我浏览了 Nest 的 2.0 branch,但没有找到任何对这些映射调用的 update_all_types 查询字符串参数的引用。
假设 IndicesPutMapping()
调用可以正常工作,这是我们目前唯一的选择吗?我开始怀疑我们是否应该只有条件地添加这些映射。
事实证明,我们能够找到另一种方法:在创建映射时,我们并未明确为 @timestamp
字段提供格式,而 2.0 似乎导致系统对其进行处理作为一个变化,因此我们的问题。我们能够通过在我们的映射逻辑中固定这些日期字段的现有格式来解决这个问题,如下所示:
// formatted strangely to make the addition more obvious
_client.Map<OurType>(m =>
m.Properties(ps => ps
.Date(d => d.Name(es => es.Date) // es is a reference to an instance of OurType, and Date is the name of the field being mapped to @timestamp
.Format("epoch_millis||dateOptionalTime") // this is what fixed it
)
//other props
)
//other stuff
);