2

我正在使用弹性搜索来增强我的应用程序中的搜索功能。搜索工作完美,但排序不适用于包含多个单词的字段。

当我尝试按日志“消息”对搜索进行排序时,出现错误:

“无法对每个文档具有多个值或每个字段多个标记的字符串类型进行排序”

我用谷歌搜索了这个错误,发现我可以在 :message 字段上使用多字段映射(一个已分析,另一个未分析)对它们进行排序。所以我这样做了:

class Log < ActiveRecord::Base
  include Tire::Model::Search
  include Tire::Model::Callbacks

  tire.mapping do
    indexes :id, index: :not_analyzed
    indexes :source, type: 'string'
    indexes :level, type: 'string'
    indexes :created_at, :type => 'date', :include_in_all => false
    indexes :updated_at, :type => 'date', :include_in_all => false
    indexes :message, type: 'multi_field', fields: { 
      analyzed: {type: 'string', index: 'analyzed'},
      message: {type: 'string', index: :not_analyzed} 
    }
    indexes :domain, type: 'keyword'
  end
end

但是,由于某种原因,没有将此映射传递给 ES。

rails console
Log.index.delete #=> true
Log.index.create #=> 200 : {"ok":true,"acknowledged":true}
Log.index.import Log.all #=> 200 : {"took":243,"items":[{"index":{"_index":"logs","_type":"log","_id":"5 ... ...

# Index mapping for :message is not the multi-field 
# as I created in the Log model... why?

Log.index.mapping
=> {"log"=>
  {"properties"=>
    {"created_at"=>{"type"=>"date", "format"=>"dateOptionalTime"},
     "id"=>{"type"=>"long"},
     "level"=>{"type"=>"string"},
     "message"=>{"type"=>"string"},
     "source"=>{"type"=>"string"},
     "updated_at"=>{"type"=>"date", "format"=>"dateOptionalTime"}}}}

# However if I do a Log.mapping I can see the multi-field
# how I can fix that and pass the mapping correctly to ES? 

Log.mapping
=> {:id=>{:index=>:not_analyzed, :type=>"string"},
 :source=>{:type=>"string"},
 :level=>{:type=>"string"},
 :created_at=>{:type=>"date", :include_in_all=>false},
 :updated_at=>{:type=>"date", :include_in_all=>false},
 :message=>
  {:type=>"multi_field",
   :fields=>
    {:message=>{:type=>"string", :index=>"analyzed"},
     :untouched=>{:type=>"string", :index=>:not_analyzed}}},
 :domain=>{:type=>"keyword"}}

那么,Log.index.mappingES 中的当前映射不包含我创建的多字段。我错过了什么吗?为什么多字段显示在Log.mapping而不是Log.index.mapping

4

1 回答 1

5

我已经改变了工作流程:

Log.index.delete; Log.index.create; Log.import

Log.index.delete; Log.create_elasticsearch_index; Log.import

使用MyModel.create_elasticsearch_index模型定义的正确映射创建索引。请参阅轮胎的问题#613

于 2013-02-04T18:48:52.773 回答