0

ElasticSearch と Tire で検索できるようにしたい STI モデルがあります。私が抱えている問題は、Tire がマッピングを作成するときに、2 番目のモデルのカスタム アナライザーを無視しているように見えることです。以下は私のモデルの例です。

class Account < ActiveRecord::Base
  attr_accessible :name, :type

  include Tire::Model::Search
  include Tire::Model::Callbacks

  tire.settings :analysis => {
          :analyzer => {
          "custom_search_analyzer" => {
              "tokenizer" => "keyword",
              "filter" => "lowercase"
          },
          "custom_index_analyzer" => {
              "tokenizer" => "keyword",
              "filter" => ["lowercase","substring"]
          }
      },
      :filter => {
          :substring => {
              "type" => "nGram",
              "min_gram" => 1,
              "max_gram" => 20
          }
      }
  } do
    mapping do
      indexes :id, :type => 'integer', :include_in_all => false
      indexes :name, :type => 'string', :search_analyzer => :custom_search_analyzer,     :index_analyzer=>:custom_index_analyzer
    end
  end

  def to_indexed_json
    hash = {}
    hash[:id] = id
    hash[:name] = name
    hash.to_json
  end
end

class StandardAccount < Account
  tire.index_name 'accounts'
end

class SuperAccount < Account
  tire.index_name 'accounts'
end

rake タスクまたはモデルの作成を通じてタイヤを介してインデックスを作成すると、マッピングが作成されますが、継承されたモデルの場合、カスタム アナライザーは適用されません。を使用してマッピングを見ると

curl -XGET 'http://127.0.0.1:9200/accounts/_mapping?pretty=1'  

私は得る:

{
  "accounts" : {
    "account" : {
      "properties" : {
        "id" : {
          "type" : "integer",
          "include_in_all" : false
        },
        "name" : {
          "type" : "string",
          "index_analyzer" : "custom_index_analyzer",
          "search_analyzer" : "custom_search_analyzer"
        }
      }
    },
    "standard_account" : { 
      "properties" : {
        "id" : {
          "type" : "long"
        }
        "name" : {
          "type" : "string"
        }
      }
    },
    "super_account" : {
      "properties" : {
        "id" : {
          "type" : "long"
        }
        "name" : {
          "type" : "string"
        }
      }
    }
  }
}

マッピング宣言を継承されたクラスに移動しても、余分なオプションを選択するのは作成された最初のモデルだけのようです。ElasticSearch を使用してインデックスを手動で作成できますが、Tire でそれを行う方法があるかどうか疑問に思っていましたか? または、何かが正しく設定されていませんか

4

1 に答える 1