Flask SQLAlChemy反射忽略RedShift上的大多数表
问题描述
我正在创建引擎和元数据,如下所示
engine = create_engine('redshift+psycopg2://USER:PASS.region.com:5439/DBNAME')
metadata = MetaData(schema='SCHEMA')
metadata.reflect(engine, only=['orders', 'packages'])
Base = automap_base(metadata=metadata)
Base.prepare()
print(Base.classes.packages)
生成AttributeError: packages
,dir(Base.classes)
不返回该名称的属性,也不返回名称为orders
的属性。取消only=['orders', 'packages']
使其仅反映几个随机表。
现在,当使用本机SQLAlChemy附带的检查器时,表实际上可以正常工作(link to documentation):
insp = reflection.Inspector.from_engine(engine)
print(insp.get_table_names(schema='SCHEMA')) #this prints all tables as expected
packages_table = Table('packages', metadata)
insp.reflecttable(packages_table, None) #this reflects the table as expected
这是错误,还是我在这里忽略了什么?
谢谢!
安装的软件包版本:
alembic 1.4.2
Flask 1.1.2
Flask-Migrate 2.5.3
Flask-SQLAlchemy 2.4.4
psycopg2 2.8.5
SQLAlchemy 1.3.18
sqlalchemy-redshift 0.8.1
解决方案
SQLAlChemy的自动映射扩展仅反映已定义主键的表。
来自文档中的note:
[.]对于要映射的表,它必须指定主键。
相关文章