Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

NoMethodError (undefined method `highlight' for #<Elasticsearch::Model::Response::Result>

I'm going to use elastic search for my ruby on rails project. I get this error when I search some of the word that It's used in my article too much.

NoMethodError (undefined method `highlight' for #<Elasticsearch::Model::Response::Result:0x007f062ed26708>)

i got this in the log production. this is what everything that i did: in controller:

      # POST /search/article
      def search
        render json: Article.search(params[:query]), each_serializer: ElasticsearchResultsSerializer
      end

this is my article.rb model

  #default_scope { order('created_at DESC') }
  scope :visible, -> { where(enabled: true) }

  after_commit on: [:create] do
    self.keywords = self.keywords.each {|str| str.force_encoding("UTF-8")}
    __elasticsearch__.index_document if self.enabled?
  end

  after_commit on: [:update] do
    self.keywords = self.keywords.each {|str| str.force_encoding("UTF-8")}
    __elasticsearch__.update_document if self.enabled?
  end

  after_commit on: [:destroy] do
    __elasticsearch__.delete_document
  end

  settings index: { number_of_shards: 1, number_of_replicas: 0 }

  mappings dynamic: 'false' do
    indexes :content, type: "string", index_options: 'offsets'
    indexes :title, type: "string"
    indexes :description, type: "string"
    indexes :category, type: "string"
    indexes :created_at, type: "date"
    indexes :keywords, type: "string"
  end
  def self.search(query)
    __elasticsearch__.search(
      {
        query: {
          multi_match: {
            query: query,
            fields: ['title^10', 'content^5', 'description^2', 'keywords', 'category']
          }
        },
        highlight: {
          pre_tags: ['<em>'],
          post_tags: ['</em>'],
          fields: { title: {}, content: {} }
        }
      }
    )
  end

  def as_indexed_json(options={})
    as_json(
      only: [:content, :title, :id, :category, :keywords, :description]
    )
  end

and also i used serializer

class ElasticsearchResultsSerializer < ActiveModel::Serializer
  attributes :_id, :highlight, :_score, :_source

  def _source
    @article = object._index.singularize.capitalize.constantize.find(object._id)
    @serializer = "#{object._index.singularize.capitalize}Serializer".constantize
    @serializer.new(@article)
  end
end
like image 245
Hussein Ojaghi Avatar asked Apr 18 '17 06:04

Hussein Ojaghi


2 Answers

Maybe is a silly observation, but did you tried to change the value

:highlight to :_highlight ?

class ElasticsearchResultsSerializer < ActiveModel::Serializer
  attributes :_id, :_highlight, :_score, :_source

  def _source
    @article = object._index.singularize.capitalize.constantize.find(object._id)
    @serializer = "#{object._index.singularize.capitalize}Serializer".constantize
    @serializer.new(@article)
  end
end
like image 87
A Monad is a Monoid Avatar answered Sep 20 '22 00:09

A Monad is a Monoid


I would try switching fields to:

fields: {
  :"*" => {}
}

Just to see if that gets rid of the error. See the following: https://github.com/elastic/elasticsearch-rails/issues/446

like image 21
Alex Harris Avatar answered Sep 20 '22 00:09

Alex Harris