我正在为 Elasticsearch 开发带有 Python Pyes 客户端的驱动程序。我需要基于文档http://www.elasticsearch.org/guide/reference/mapping/date-format/的日期列的映射索引没有“date_hour_minute_second”格式,我还检查了 pyes 文档https://pyes.readthedocs。 org/en/latest/guide/reference/mapping/date-format.html
当我为我的字段使用“date_hour_minute_second”格式时,我得到了标题中提到的异常。
这是我的字段定义:
"date": {
"boost": 1.0,
"store": "yes",
"type": "date_hour_minute_second_fraction",
"term_vector": "with_positions_offsets"
}
我无法弄清楚为什么它会引发这样的异常,甚至文档都说它受支持。