在外表PostgreSQL上创建索引

时间:2016-05-11 13:11:48

标签: postgresql indexing postgres-fdw

我使用postgres_fdw在两个数据库之间创建链接。然后我设置外部表并从外表执行一些插入到我的实时表。我注意到它需要相当长的时间,因为它们没有索引。

您可以在外表上创建索引,是否为标准

CREATE INDEX ON foreign_table_name (column)?  

1 个答案:

答案 0 :(得分:6)

不,你会收到错误:

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

希望有所帮助。 祝你好运!