ElasticSearch RoutingMissingException

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

[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

也许这可以帮助某人:)

以上是 ElasticSearch RoutingMissingException 的全部内容, 来源链接: utcz.com/qa/417850.html

回到顶部