当我跑步时:
$ heroku run bundle exec rake environment elasticsearch:import:model CLASS='Artist' FORCE=true
终端的响应是:
Running bundle exec rake environment elasticsearch:import:model CLASS=Artist FORCE=true on doremi... up, run.3015
Starting up a new ElasticSearch client with https://hexcode.bonsai.io
rake aborted!
NameError: uninitialized constant Elasticsearch
/app/vendor/bundle/ruby/2.0.0/gems/bonsai-elasticsearch-rails-0.0.4/lib/bonsai/elasticsearch/rails.rb:4:in `<top (required)>'
/app/vendor/bundle/ruby/2.0.0/gems/bundler-1.9.7/lib/bundler/runtime.rb:85:in `require'
/app/vendor/bundle/ruby/2.0.0/gems/bundler-1.9.7/lib/bundler/runtime.rb:85:in `rescue in block in require'
/app/vendor/bundle/ruby/2.0.0/gems/bundler-1.9.7/lib/bundler/runtime.rb:68:in `block in require'
/app/vendor/bundle/ruby/2.0.0/gems/bundler-1.9.7/lib/bundler/runtime.rb:61:in `each'
/app/vendor/bundle/ruby/2.0.0/gems/bundler-1.9.7/lib/bundler/runtime.rb:61:in `require'
/app/vendor/bundle/ruby/2.0.0/gems/bundler-1.9.7/lib/bundler.rb:134:in `require'
/app/config/application.rb:16:in `<top (required)>'
/app/Rakefile:4:in `require'
/app/Rakefile:4:in `<top (required)>'
(See full trace by running task with --trace)
该错误似乎源自lib/tasks/elasticsearch.rake
require 'elasticsearch/rails/tasks/import'
我已经检查过所有elastic-*
宝石都是他们最新版本:弹性搜索轨道和弹性搜索模型0.1.7,盆景弹性搜索轨道0.0.4,但我在这里注意到了https://rubygems.org/gems/bonsai-elasticsearch-rails盆景弹性搜索轨道依赖于捆绑器1.5而Heroku使用1.9.7,这是我无法改变的。这可能是问题的关键吗?
当我尝试部署
时,我的日志中也出现了类似的错误Oct 09 17:04:27 doremi app/worker.1: NameError: uninitialized constant Elasticsearch
Oct 09 17:04:27 doremi app/worker.1: rake aborted!
Oct 09 17:04:27 doremi app/worker.1: /app/vendor/bundle/ruby/2.2.0/gems/bonsai-elasticsearch-rails-0.0.4/lib/bonsai/elasticsearch/rails.rb:4:in `<top (required)>'
Oct 09 17:04:27 doremi app/worker.1: /app/vendor/bundle/ruby/2.2.0/gems/bundler-1.9.7/lib/bundler/runtime.rb:85:in `require'
Oct 09 17:04:27 doremi app/worker.1: /app/vendor/bundle/ruby/2.2.0/gems/bundler-1.9.7/lib/bundler/runtime.rb:85:in `rescue in block in require'
Oct 09 17:04:27 doremi app/worker.1: /app/vendor/bundle/ruby/2.2.0/gems/bundler-1.9.7/lib/bundler/runtime.rb:68:in `block in require'
Oct 09 17:04:27 doremi app/worker.1: /app/vendor/bundle/ruby/2.2.0/gems/bundler-1.9.7/lib/bundler/runtime.rb:61:in `each'
Oct 09 17:04:27 doremi app/worker.1: /app/vendor/bundle/ruby/2.2.0/gems/bundler-1.9.7/lib/bundler/runtime.rb:61:in `require'
Oct 09 17:04:27 doremi app/worker.1: /app/vendor/bundle/ruby/2.2.0/gems/bundler-1.9.7/lib/bundler.rb:134:in `require'
Oct 09 17:04:27 doremi app/worker.1: /app/config/application.rb:16:in `<top (required)>'
Oct 09 17:04:27 doremi app/worker.1: /app/Rakefile:4:in `require'
Oct 09 17:04:27 doremi app/worker.1: /app/Rakefile:4:in `<top (required)>'
Oct 09 17:04:27 doremi app/worker.1: LoadError: cannot load such file -- bonsai-elasticsearch-rails
Oct 09 17:04:27 doremi app/worker.1: /app/vendor/bundle/ruby/2.2.0/gems/bundler-1.9.7/lib/bundler/runtime.rb:76:in `require'
Oct 09 17:04:27 doremi app/worker.1: /app/vendor/bundle/ruby/2.2.0/gems/bundler-1.9.7/lib/bundler/runtime.rb:76:in `block (2 levels) in require'
Oct 09 17:04:27 doremi app/worker.1: /app/vendor/bundle/ruby/2.2.0/gems/bundler-1.9.7/lib/bundler/runtime.rb:72:in `each'
Oct 09 17:04:27 doremi app/worker.1: /app/vendor/bundle/ruby/2.2.0/gems/bundler-1.9.7/lib/bundler/runtime.rb:72:in `block in require'
Oct 09 17:04:27 doremi app/worker.1: /app/vendor/bundle/ruby/2.2.0/gems/bundler-1.9.7/lib/bundler/runtime.rb:61:in `each'
Oct 09 17:04:27 doremi app/worker.1: /app/vendor/bundle/ruby/2.2.0/gems/bundler-1.9.7/lib/bundler/runtime.rb:61:in `require'
Oct 09 17:04:27 doremi app/worker.1: /app/vendor/bundle/ruby/2.2.0/gems/bundler-1.9.7/lib/bundler.rb:134:in `require'
Oct 09 17:04:27 doremi app/worker.1: /app/config/application.rb:16:in `<top (required)>'
Oct 09 17:04:27 doremi app/worker.1: /app/Rakefile:4:in `require'
Oct 09 17:04:27 doremi app/worker.1: /app/Rakefile:4:in `<top (required)>'
答案 0 :(得分:5)
rails / bundler需要宝石按照它们在gemfile中声明的顺序。发生此错误是因为我在bonsai-elasticsearch-rails
和elasticsearch-rails
上方声明了elasticsearch-model
。因此,通过在另外两个下面声明bonsai-elasticsearch-rails
来解决这个问题。