PostgreSQL数据库中的外部数据包装器(postgres_fdw和dblink)
原文英文,约3500词,阅读约需13分钟。发表于: 。A Foreign Data Wrapper (FDW) is a feature in database management systems that can communicate with an external data source and access data without physically moving the data on a working local...
外部数据包装器(FDW)是数据库管理系统中的功能,允许在不移动数据的情况下访问外部数据源。PostgreSQL实现了SQL/MED规范,通过常规SQL查询实现对外部数据的访问。文章讨论了PostgreSQL中的两个FDW:dblink和postgres_fdw。dblink用于管理数据库会话和在远程数据库中执行查询,而postgres_fdw提供更好的性能并使用更现代的基础架构。文章还解释了使用dblink和postgres_fdw设置和访问远程数据库的步骤。文章以限制和提到Percona Distribution for PostgreSQL作为可靠的解决方案。