Tag: 映射

不在映射中的字段包含在ElasticSearch返回的搜索结果中

我想使用Tire gem作为ElasticSearch的客户端索引pdf附件。 在我的映射中,我从_source中排除了附件字段,因此附件不会存储在索引中,也不会在搜索结果中返回 : mapping :_source => { :excludes => [‘attachment_original’] } do indexes :id, :type => ‘integer’ indexes :folder_id, :type => ‘integer’ indexes :attachment_file_name indexes :attachment_updated_at, :type => ‘date’ indexes :attachment_original, :type => ‘attachment’ end 运行以下curl命令时,我仍然可以看到搜索结果中包含的附件​​内容: curl -X POST “http://localhost:9200/user_files/user_file/_search?pretty=true” -d ‘{ “query”: { “query_string”: { “query”: “rspec” } } }’ 我在这个主题中发布了我的问题: 但我刚刚注意到,不仅附件包含在搜索结果中,而且所有其他字段(包括未映射的字段)也包括在内,您可以在此处看到: { […]