Elasticsearch和Laravel Scout-Elasticsearch-Driver时间戳格式错误

时间:2018-07-13 07:56:19

标签: php laravel elasticsearch

我已经成功配置了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

我这里缺少什么吗?

1 个答案:

答案 0 :(得分:2)

在映射中,您为yyyy-MM-DD HH:mm:sscreated_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 ,该字段具有基本值的基本相同的属性(当然,它们都是日期类型,除了格式上的不一致之外。)

所以,我认为您可以选择:

  1. 如果 raw 没有任何特定用途,则可以将其从映射中删除。排序和匹配与基本字段配合得很好。

    "created_at": {"type": "date", "format": "yyyy-MM-DD HH:mm:ss"}
    
  2. 如果您需要保留原始字符串格式(如“ raw”可能会建议),则可以使用关键字类型

    "created_at": {"type": "date", "format": "yyyy-MM-DD HH:mm:ss", "fields": {"raw": {"type": "keyword"}}}
    
  3. 如果您确实确实需要 raw 字段,则必须指定一种与其他格式一致的格式:

    "created_at": {"type": "date", "format": "yyyy-MM-DD HH:mm:ss", "fields": {"raw": {"type": "date", "format": "yyyy-MM-DD HH:mm:ss"}}}