当前位置: 首页 > 面试题库 >

ElasticSearch RoutingMissingException

楚宏胜
2023-03-14
问题内容

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

[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


问题答案:

映射中有错字。

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

也许这可以帮助某人:)



 类似资料:

相关阅读

相关文章

相关问答