我一直在使用postgres数据库构建rails应用程序,但当然我也负责从遗留的mysql数据库导入数据。
到目前为止,我一直在处理这个问题:
# config/database.yml
development:
adapter: postgresql
encoding: unicode
database: myapp_development
pool: 10
username: myuser
password:
legacy_development:
adapter: mysql2
encoding: utf8
reconnect: false
database: myapp_legacy
pool: 10
username: myuser
password:
socket: /tmp/mysql.sock
# app/models/legacy.rb
class Legacy < ActiveRecord::Base
self.abstract_class = true
establish_connection "legacy_#{Rails.env}".to_sym
def self.import
self.find_each do |object|
imported_model = object.class.model.new object.attribute_map
object.report_failures unless imported_model.save
end
end
def self.import_all
Rails.application.eager_load!
self.subclasses.each {|subclass| subclass.import }
end
end
# app/models/legacy/chapter.rb
# a bunch of different subclasses like this
class Legacy::Chapter < Legacy
self.table_name = 'chapters'
def self.model
'Chapter'.constantize
end
def attribute_map
{
id: id,
name: name,
body: chapterBody
}
end
end
然后我有一个运行Legacy.import_all
的rake任务。其中很多都是从this post偷来的。
这有一些问题:
主要问题是,当我运行Legacy.import_all
时,它会通过大约一半的表格,然后我会收到如下错误:
NoMethodError: undefined method 'import' for Legacy::SomeSubclass(Table doesn't exist):Class
我认为这是因为我们在池中只有太多连接。看起来它似乎是在postgres数据库中寻找SomeSubClass table_name
,但它应该在mysql数据库上查找。
这可能是因为以下方法:
def self.model
'Chapter'.constantize
end
在上面的子类中。我这样做而不是:
def self.model
Chapter
end
因为我的应用程序中还有一个普通的模型(非遗留),也称为章节,我也遇到了范围问题。
无论如何,这是一个巨大的混乱,任何关于我应该挖掘的地方的想法都将非常感激。
由于
答案 0 :(得分:1)
您可以尝试使用::
为subclass.import添加前缀def self.import_all
Rails.application.eager_load!
self.subclasses.each {|subclass| ::subclass.import }
end