Elasticsearch:Tire to Elasticsearch持久性迁移

时间:2014-08-29 18:49:50

标签: ruby-on-rails ruby elasticsearch tire

我想从Tire(retire)gem迁移到Elasticsearch Persistence gem,在Tire我用来设置模型内部的索引设置,如下所示

settings :number_of_shards => 5,
        :number_of_replicas => 1,
        :analysis => {
          :analyzer => {
            :my_pattern => {
               "type"         => "custom",
                "tokenizer" => "keyword",
                 "filter"    =>  ["url_ngram", "lowercase"]
               }
          }, :filter => {
       :url_stop => {
         :type => "stop",
         :stopwords => ["="]
       },
       :url_ngram => {
         :type => "nGram",
         :min_gram => 4,
         :max_gram => 40
       }
       }

        } do
 mapping {

   indexes :msgpriority, :type => 'string',      :analyzer => 'snowball'
   indexes :msghostname, :type => 'string',        :analyzer => 'snowball'
   indexes :msgtext, :type => 'string',        :analyzer => 'my_pattern'
   indexes :msgdatetime,  :type => 'date',       :include_in_all => false
 }
end

现在我正在使用Repository对象,我想应用相同的设置(主要是分析器)

下面的代码不起作用,即使我更改分片数量就好像我什么都没写

REPOSITORY = Elasticsearch::Persistence::Repository.new do
# Configure the Elasticsearch client
client Elasticsearch::Client.new url: ENV['ELASTICSEARCH_URL'], log: true
now_time = Time.now
# Set a custom index name
index "ip_logstreams_#{now_time.year}_#{now_time.month}_#{now_time.day}"

# Set a custom document type
type  :log_entry

# Specify the class to inicialize when deserializing documents
klass LogEntry

# Configure the settings and mappings for the Elasticsearch index
settings number_of_shards: 2, :analysis => {
 :analyzer => {
   :my_pattern => {
    "type"         => "custom",
    "tokenizer" => "keyword",
    "filter"    =>  ["url_ngram", "lowercase"]
  }
  }, :filter => {
    :url_stop => {
      :type => "stop",
      :stopwords => ["="]
      },
    :url_ngram => {
      :type => "nGram",
      :min_gram => 4,
      :max_gram => 40
    }
  }

  } do
    mapping {

      indexes :msgpriority, :type => 'string',      :analyzer => 'snowball'
      indexes :msghostname, :type => 'string',        :analyzer => 'snowball'
      indexes :msgtext, :type => 'string',        :analyzer => 'my_pattern'
      indexes :msgdatetime,  :type => 'date',       :include_in_all => false
    }
  end
end

更新

当我发出

REPOSITORY.create_index! force: true

应用了更改,但我认为elasticsearch中的设置搞砸了,如屏幕截图所示(从头部插件中抓取) enter image description here

2 个答案:

答案 0 :(得分:0)

您是否考虑过使用elasticsearch/elasticsearch-model - 它提供了automatic callbacks,可以帮助您保存数据。

答案 1 :(得分:0)

在elasticsearch gem中使用存储库对象时,我们应该发出

REPOSITORY.create_index!

这将使用提供的设置创建索引,如果要再次重新创建索引,可以添加force: true

相关问题