0

我们正在升级到 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()可以进行调用,这是我们目前唯一的选择吗?我开始怀疑我们是否应该只有条件地添加这些映射。

4

1 回答 1

0

事实证明,我们能够找到另一种方法:当我们创建映射时,我们没有明确地为我们的@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
);
于 2015-11-10T21:42:51.123 回答