我正在使用postgres_fdw创建两个数据库之间的链接。然后,我设置外部表,并将外部表插入到我的活动表中。我注意到这需要相当长的时间,因为他们没有索引。
你能在外表上创建一个索引吗?它是标准的吗
CREATE INDEX ON foreign_table_name (column)?
否,您将得到一个错误:
ERROR: cannot create index on foreign table "tablename"
********** Error **********
ERROR: cannot create index on foreign table "tablename"
SQL state: 42809
这是有意义的,因为每次查询表时,查询都会"遍历"网络并从原始数据库中检索数据(不会将数据存储到索引中)。
您可以使用explain verbose来获取在另一端执行的查询,并相应地为远程表编制索引。
explain verbose select * from schema.foreign_table
"Foreign Scan on schema.foreign_table (cost=25.00..1025.00 rows=1000 width=84)"
" Output: field1, field2, field3
" Remote server startup cost: 25"
" Remote query: SELECT field1, field2, field3 FROM schema.original_table
希望能有所帮助。祝你好运