gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-11-29 16:39:07 25 4
gpt4 key购买 nike

我有一个数据库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升级位于不同位置mysql+pymysql://anum:Anum-6630@localhost:3306/y的数据库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中,但所有表都是空的,除了我手动添加的路由器表中的一项。我尝试使用 create_all() 但效果不佳。有没有办法将所有数据从x复制到y数据库?

最佳答案

由于没有人回答,这是我进行复制的狂野方法:因为需要按顺序创建表(以避免 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()中收到错误,名称不存在键路由器。没有足够的时间来深入研究解决方案。

快速可靠的解决方案:

后来我发现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.")

关于python - 使用 automap_base 和 alembic 迁移/复制数据库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53434215/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com