使用automap_base和alembic迁移/复制数据库

时间:2018-11-22 15:34:22

标签: python mysql sqlalchemy alembic

我有一个数据库x,每个表中填充了一些数据。我想创建该数据库的副本(具有相同的架构和确切的数据)。首先,我使用automap_base创建了x的声明性基类。

from sqlalchemy.ext.automap import automap_base
from sqlalchemy.orm import Session as s

def name_for_scalar_relationship(base, local_cls, referred_cls, constraint):
    name = referred_cls.__name__.lower() + "_ref"
    return name

Base = automap_base()

# engine, refering to the original database
engine = create_engine("mysql+pymysql://root:password1@localhost:3306/x")

# reflect the tables
Base.prepare(engine, reflect=True, name_for_scalar_relationship=name_for_scalar_relationship)

Router = Base.classes.router
########check the data in Router table
session = s(engine)
r1 = session.query(Router).all()
for n in r1:
    print(n.name)   #This returns all the router names

here获得帮助,我使用alembic来升级位于y不同位置的数据库mysql+pymysql://anum:Anum-6630@localhost:3306/y

from sqlalchemy.orm import sessionmaker as sm
from sqlalchemy import create_engine
from alembic import op

# revision identifiers, used by Alembic.
revision = 'fae98f65a6ff'
down_revision = None
branch_labels = None
depends_on = None


def upgrade():
    bind = op.get_bind()
    session = sm(bind=bind)
    Base.metadata.create_all(bind=bind)

    # session._add_bind(session, bind=bind)
    session.add(Router(id=uuid.uuid().bytes, serial="Test1"))
    session.commit()

Base.metadata.create_all(bind=bind)行实际上将所有表(包括适当的FK约束)添加到数据库y中,但是除了我手动添加的Router表中的一项之外,所有表都是空的。我尝试使用create_all(),但那没有成功。 是否可以将所有数据从x复制到y数据库?

1 个答案:

答案 0 :(得分:0)

由于没有人回答,所以这是我执行复制的方法: 因为需要按顺序创建表(以避免FK约束错误),所以我必须定义一个包含每个表的有序列表

缓慢且不可靠的解决方案:

allTables = ["tableA", 
             "tableB", # <table B points to FK constraint of tableA>
             "tableC", # <table C points to FK constraint of tableB>
             ...]

def copyAllContent():
    global allTables
    s = Session(bind=origEngine)  # session bind to original table
    se = Session(bind=op.get_bind()) # session bind to cloned table (currently empty)
try:
    for table in allTables:
        # print(table)
        rows = s.query(Base.classes._data[table]).all()
        for row in rows:
            local_object = se.merge(row)  #merging both sessions
            se.add(local_object)
            se.commit()
except Exception as e:
    print(e)

上述方法适用于大多数表,但不是全部。例如表router已存在于原始数据库中,但是在s.query(Base.classes._data[table]).all()中仍然出现错误,名称为router的键不存在。还没有足够的时间来寻找解决方案。

快速可靠的解决方案:

后来我发现from here是使用mysqldump的另一种快速且安静的可靠解决方案

#copy sql dump from x database
mysqldump --column-statistics=0 -P 8000 -h localhost -u root -p --hex-blob x > x_dump.sql

上面的命令行mysqldump命令创建一个名为x_dump.sql的sql转储文件,其中包含重新生成数据库所需的所有必要SQL脚本。现在,我们需要做的就是将此sql转储文件应用于另一个数据库y

#clone the database contents into y database
mysql -P 3306 -h localhost -u anum -p y < x_dump.sql

这是相同功能的pythonic版本

import subprocess

#copy sql dump from x database - blocking call (use Popen for non-blocking)
print(subprocess.call(["mysqldump", "--column-statistics=0", '-P', '8000', '-h', 'localhost', '-u', '<user>', '-p<password>',
                        '--hex-blob', 'x', '>', 'x_dump.sql'], shell=True))

print("done taking dump.")

#clone the database contents into y database - blocking call
print(subprocess.call(["mysql", '-P', '3306', '-h', 'localhost', '-u', '<user>', '-p<password>',
                        'y', '<', 'x_dump.sql'], shell=True))

print("done cloning the sqlDump.")