我已经成功配置了ES和babenkoivan / scout-elasticsearch-driver,但是在向数据库添加新条目时遇到此错误:
{"error":{"root_cause":[{"type":"mapper_parsing_exception","reason":"failed to parse [updated_at.raw]"}],"type":"mapper_parsing_exception","reason":"failed to parse [updated_at.raw]","caused_by":{"type":"illegal_argument_exception","reason":"Invalid format: \"2018-07-13 07:52:02\" is malformed at \" 07:52:02\""}},"status":400}
我已经在映射中设置了这种格式,根据ES文档,这种格式应该可以工作:
protected $mapping = [
'properties' => [
'created_at' => [
'type' => 'date',
'format' => 'yyyy-MM-DD HH:mm:ss',
'fields' => [
'raw' => [
'type' => 'date',
'index' => 'not_analyzed'
]
]
],
'updated_at' => [
'type' => 'date',
'format' => 'yyyy-MM-DD HH:mm:ss',
'fields' => [
'raw' => [
'type' => 'date',
'index' => 'not_analyzed'
]
]
]
]
];
https://www.elastic.co/guide/en/elasticsearch/reference/current/date.html#multiple-date-formats
我这里缺少什么吗?
答案 0 :(得分:2)
在映射中,您为yyyy-MM-DD HH:mm:ss
和created_at
定义了自定义日期格式(updated_at
)。 raw
字段也是日期类型,但使用默认格式(according the doc是 date_optional_time ,表示yyyy-MM-DD'T'HH:mm:ss
)。
这意味着前者期望2018-07-13 07:52:02
,而后者期望2018-07-13T07:52:02
,因此索引编制不可能避免破坏两者之一。
现在,multi-fields的使用旨在以不同的方式为值建立索引,但是您要做的是创建一个新字段 raw ,该字段具有基本值的基本相同的属性(当然,它们都是日期类型,除了格式上的不一致之外。)
所以,我认为您可以选择:
如果 raw 没有任何特定用途,则可以将其从映射中删除。排序和匹配与基本字段配合得很好。
"created_at": {"type": "date", "format": "yyyy-MM-DD HH:mm:ss"}
如果您需要保留原始字符串格式(如“ raw”可能会建议),则可以使用关键字类型
"created_at": {"type": "date", "format": "yyyy-MM-DD HH:mm:ss", "fields": {"raw": {"type": "keyword"}}}
如果您确实确实需要 raw 字段,则必须指定一种与其他格式一致的格式:
"created_at": {"type": "date", "format": "yyyy-MM-DD HH:mm:ss", "fields": {"raw": {"type": "date", "format": "yyyy-MM-DD HH:mm:ss"}}}