0

我正在更新一个名为的表Recipes并将该ImageUrl列设置为 VIEW 中的匹配行。我的更新声明是:

UPDATE Recipes R
  SET ImageUrl=L.ImageUrl
  FROM Link.Recipes L
  WHERE L.RecipeId=R.RecipeId AND L.ImageUrl is not null;

Link.Recipes是一个从不同服务器上的另一个数据库返回所有Recipes行的视图,所以它已经很慢了:

查询成功返回:8541 行受影响,173236 毫秒执行时间。

我想看看有没有办法让它更快一点。涉及具有相似行数的相同视图的 INSERT 语句要快得多,因此这里发生了一些不同的事情。

上当然有一个索引RecipeId,但是ImageUrl两个表中都没有索引。有没有更好的方法可以编写不需要近 3 分钟的 UPDATE 语句?

解释:

'Update  (cost=0.00..4136.54 rows=995 width=1531)'
'  ->  Nested Loop  (cost=0.00..4136.54 rows=995 width=1531)'
'        ->  Function Scan on dblink t1  (cost=0.00..10.00 rows=995 width=266)'
'              Filter: (imageurl IS NOT NULL)'
'        ->  Index Scan using recipes_pkey on recipes r  (cost=0.00..4.13 rows=1 width=1281)'
'              Index Cond: (r.recipeid = t1.recipeid)'

解释分析:

'Update  (cost=0.00..4233.18 rows=995 width=1532) (actual time=168887.016..168887.016 rows=0 loops=1)'
'  ->  Nested Loop  (cost=0.00..4233.18 rows=995 width=1532) (actual time=23689.440..24500.006 rows=8549 loops=1)'
'        ->  Function Scan on dblink t1  (cost=0.00..10.00 rows=995 width=266) (actual time=23689.250..23749.288 rows=8550 loops=1)'
'              Filter: (imageurl IS NOT NULL)'
'        ->  Index Scan using recipes_pkey on recipes r  (cost=0.00..4.23 rows=1 width=1282) (actual time=0.083..0.085 rows=1 loops=8550)'
'              Index Cond: (r.recipeid = t1.recipeid)'
'Trigger trg_recipes_searchupdate: time=3808.617 calls=8549'
'Total runtime: 168889.272 ms'
4

1 回答 1

1

在 imageurl 上创建一个不为空的部分索引可能是值得的。在此处阅读更多相关信息:http ://www.postgresql.org/docs/current/static/indexes-partial.html

于 2012-06-01T05:45:02.533 回答