0

我有 Elasticsearch 的附件插件来索引我存储在 Document 中的所有文件。我想将文件内容排除在 _source 中。

我的配置文件看起来像:

            document:
                mappings:
                    id: { index: not_analyzed }
                    path: {}
                    name: { boost: 5}
                    file:
                        type: attachment
                        store: "yes"
                        fields:
                            title: { store : "yes" }
                            file : {term_vector: "with_positions_offsets", store: yes}
                        analyzer: standard
                        boost: 2

                persistence:
                    driver: orm
                    model: ACF\CaseBundle\Entity\Document
                    listener:
                    finder:
                    provider:
                        batch_size: 100

                _source:
                    excludes:
                        file: ~

当我运行 foq:elastica:populate 时,我仍然看到“文件”属性存储在 _source 中。我无法弄清楚缺少什么。请帮忙

4

1 回答 1

0

如果其他人遇到此问题,如果您按如下方式排除您的属性,它应该可以正常工作:

               _source:
                    excludes:
                        [ file ]
于 2013-09-09T20:34:29.583 回答