【发布时间】:2017-05-20 11:36:30
【问题描述】:
我正在尝试为弹性搜索非规范化设置映射,就像 this link 中的映射一样
我有以下型号:
品牌
class Brand < ApplicationRecord
include Elasticsearch::Model
# title
has_and_belongs_to_many :products
index_name Rails.application.engine_name.split('_').first
mapping do
indexes :title, type: 'keyword'
end
end
类别
class Category < ApplicationRecord
include Elasticsearch::Model
# title
has_many :categorizations
has_many :products, through: :categorizations
index_name Rails.application.engine_name.split('_').first
mapping do
indexes :title, type: 'keyword'
end
end
产品
class Product < ApplicationRecord
include Elasticsearch::Model
# title
# description
has_many :categorizations
has_many :categories, through: :categorizations
has_many :variations
has_and_belongs_to_many :brands
index_name Rails.application.engine_name.split('_').first
mapping do
indexes :id
indexes :title
indexes :description
indexes :brands, type: 'keyword'
indexes :categories, type: 'keyword'
indexes :variations do
indexes :price, index: :not_analyzed
indexes :color, index: :not_analyzed
indexes :size, index: :not_analyzed
end
end
after_commit lambda { __elasticsearch__.index_document }, on: :create
after_commit lambda { __elasticsearch__.update_document }, on: :update
after_commit lambda { __elasticsearch__.delete_document }, on: :destroy
end
变体
class Variation < ApplicationRecord
include Elasticsearch::Model
# price
# color
# size
belongs_to :product
index_name Rails.application.engine_name.split('_').first
mapping do
indexes :price, index: :not_analyzed
indexes :color, index: :not_analyzed
indexes :size, index: :not_analyzed
end
end
可搜索模块
module Searchable
INDEX_NAME = Rails.application.engine_name.split('_').first
def create_index!(options={})
client = Product.__elasticsearch__.client
client.indices.delete index: INDEX_NAME rescue nil if options[:force]
settings = Product.settings.to_hash.merge Variation.settings.to_hash.merge Brand.settings.to_hash.merge Category.settings.to_hash
mappings = Product.settings.to_hash.merge Variation.mappings.to_hash.merge Brand.mappings.to_hash.merge Category.mappings.to_hash
client.indices.create index: INDEX_NAME,
body: {
settings: settings.to_hash,
mappings: mappings.to_hash
}
end
def setup
Searchable.create_index! force: true
Product.__elasticsearch__.refresh_index!
end
extend self
end
当我运行它时,它在 30,000 种产品中的 200 种没有分类。我哪里错了?
【问题讨论】:
标签: ruby-on-rails elasticsearch denormalization