PostgreSQL
 sql >> Database >  >> RDS >> PostgreSQL

Con sqlalchemy come associare dinamicamente al motore di database in base alla richiesta

Associare oggetti globali (mapper, metadati) a una connessione specifica dell'utente non è un buon modo. Oltre a utilizzare la sessione con ambito. Suggerisco di creare una nuova sessione per ogni richiesta e configurarla per utilizzare connessioni specifiche dell'utente. L'esempio seguente presuppone l'utilizzo di oggetti di metadati separati per ogni database:

binds = {}

finance_engine = create_engine(url1)
binds.update(dict.fromkeys(finance_metadata.sorted_tables, finance_engine))
# The following line is required when mappings to joint tables are used (e.g.
# in joint table inheritance) due to bug (or misfeature) in SQLAlchemy 0.5.4.
# This issue might be fixed in newer versions.
binds.update(dict.fromkeys([Employee, Customer, Invoice], finance_engine))

staff_engine = create_engine(url2)
binds.update(dict.fromkeys(staff_metadata.sorted_tables, staff_engine))
# See comment above.
binds.update(dict.fromkeys([Project, Hour], staff_engine))

session = sessionmaker(binds=binds)()