一尘不染

ElasticSearch RoutingMissingException

elasticsearch

我正在尝试填充具有父子关系的对象,但出现错误:

[Elastica \ Exception \ ResponseException] RoutingMissingException [[myindex]
/ [comment] / [12345]需要路由

摘录为conf类型:

article:
    _source:
        enabled: false
    mappings:
        ...

comment:
    _source:
        enabled: false
    _parent:
        type: article
        property: article_id
        identifier: id
    _routing:
        required: true
        path: article_id
    mappings:
        article:
            type: long
            index: not_analyzed
        ...

不能理解我在这里想念的…。

我正在使用Symfony2.3,FOSElasticaBundle 3.0,ElasticSearch 1.2.2


阅读 524

收藏
2020-06-22

共1个答案

一尘不染

映射中有错字。

comment:
    mappings:
        article_id: <-- was "article"
            type: long
            index: not_analyzed

也许这可以帮助某人:)

2020-06-22