Обвързването на глобални обекти (картографи, метаданни) към специфична за потребителя връзка не е добър начин. Както и използването на сесия с обхват. Предлагам да създадете нова сесия за всяка заявка и да я конфигурирате да използва специфични за потребителя връзки. Следната проба предполага, че използвате отделни обекти с метаданни за всяка база данни:
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)()