私は最近質問をし、誰かが私に機能する解決策を提供してくれましたが、私のテーブルには何百万行もあるということを忘れていました (items テーブルの場合は ~1,000 万、その他のテーブルの場合は ~100 万)、おそらく彼らは私が働いていると思ったのでしょう。私が提供した例のように、小さなデータセットを使用します。
SQLは次のとおりです。
WITH a AS (
SELECT item.id, string_agg(prefered_store.store::varchar, ',') wishlist_stores
FROM item, list_wishlist, wishlist, prefered_store
WHERE item.list=list_wishlist.list
AND list_wishlist.wishlist=wishlist.id
AND wishlist.prefered_stores=prefered_store.id
GROUP BY item.id
), b AS (
SELECT item.id,
string_agg(
prefered_store.store::varchar || ',' || prefered_store.comment,
' ; ') item_stores_comments
FROM item, prefered_store
WHERE item.prefered_stores=prefered_store.id
GROUP BY item.id
)
SELECT a.id,item_stores_comments,wishlist_stores
FROM a,b
WHERE a.id=b.id
それは私が必要とすることを正確に行いますが、非常に遅いです。1 行のみの制限で約 10 分、10 行の場合は約 15 分かかります。1000行にどれくらいの時間がかかるか、まだ待っています(ほぼ1時間です)。現在、私のデスクトップは最速ではありません。1.5 GB の RAM を搭載した Pentium 4 ですが、それでも適切ではありません。
WHERE 句のすべてのフィールドにインデックスを付け、必要に応じて主キーを作成しました。これ以外に、このクエリをより速く実行する方法はありますか?
PostgreSQL 9.2
DDL: https://docs.google.com/file/d/0BwiyuwRCaqkCM09LVkJ4YlVNLWM/edit
関連するテーブルとフィールドのみを含む簡単な図:
説明する 分析する:
Merge Join (cost=23342752.95..12971604557.95 rows=863210883998 width=68) (actual time=1182616.544..1251542.167 rows=13139337 loops=1)
Merge Cond: (a.id = b.id)
CTE a
-> GroupAggregate (cost=8477658.65..8992463.86 rows=13139337 width=8) (actual time=252170.500..307061.559 rows=13139337 loops=1)
-> Sort (cost=8477658.65..8547771.35 rows=28045080 width=8) (actual time=252170.391..282495.516 rows=14870222 loops=1)
Sort Key: public.item.id
Sort Method: external merge Disk: 261528kB
-> Merge Join (cost=3010452.34..3474579.76 rows=28045080 width=8) (actual time=138444.102..210768.838 rows=14870222 loops=1)
Merge Cond: (list_wishlist.list = public.item.list)
-> Sort (cost=689954.53..695268.01 rows=2125390 width=8) (actual time=30482.447..55193.049 rows=1286901 loops=1)
Sort Key: list_wishlist.list
Sort Method: external merge Disk: 22624kB
-> Hash Join (cost=66643.55..408462.52 rows=2125390 width=8) (actual time=10417.244..26147.517 rows=1286901 loops=1)
Hash Cond: (wishlist.prefered_stores = public.prefered_store.id)
-> Hash Join (cost=38565.70..96225.43 rows=1226863 width=8) (actual time=8188.097..19815.024 rows=1226863 loops=1)
Hash Cond: (list_wishlist.wishlist = wishlist.id)
-> Seq Scan on list_wishlist (cost=0.00..22266.63 rows=1226863 width=8) (actual time=12.786..7467.442 rows=1226863 loops=1)
-> Hash (cost=20352.20..20352.20 rows=1110120 width=8) (actual time=7314.531..7314.531 rows=1110087 loops=1)
Buckets: 4096 Batches: 64 Memory Usage: 689kB
-> Seq Scan on wishlist (cost=0.00..20352.20 rows=1110120 width=8) (actual time=7.621..6572.731 rows=1110087 loops=1)
-> Hash (cost=14027.49..14027.49 rows=856349 width=8) (actual time=2159.339..2159.339 rows=856349 loops=1)
Buckets: 4096 Batches: 64 Memory Usage: 536kB
-> Seq Scan on prefered_store (cost=0.00..14027.49 rows=856349 width=8) (actual time=0.071..1602.971 rows=856349 loops=1)
-> Materialize (cost=2320484.45..2386181.13 rows=13139337 width=8) (actual time=107961.603..149020.809 rows=14870219 loops=1)
-> Sort (cost=2320484.45..2353332.79 rows=13139337 width=8) (actual time=107961.575..145971.848 rows=13139337 loops=1)
Sort Key: public.item.list
Sort Method: external merge Disk: 231088kB
-> Seq Scan on item (cost=0.00..228006.37 rows=13139337 width=8) (actual time=27.636..47661.750 rows=13139337 loops=1)
CTE b
-> GroupAggregate (cost=7166704.38..7843349.46 rows=13139337 width=12) (actual time=524258.000..794537.585 rows=13139337 loops=1)
-> Sort (cost=7166704.38..7223638.09 rows=22773483 width=12) (actual time=524257.908..755765.703 rows=13858612 loops=1)
Sort Key: public.item.id
Sort Method: external merge Disk: 297912kB
-> Merge Join (cost=2448353.26..2826901.79 rows=22773483 width=12) (actual time=201205.036..425873.108 rows=13858612 loops=1)
Merge Cond: (public.prefered_store.id = public.item.prefered_stores)
-> Sort (cost=127685.43..129826.31 rows=856349 width=12) (actual time=4545.447..12507.054 rows=856346 loops=1)
Sort Key: public.prefered_store.id
Sort Method: external merge Disk: 18408kB
-> Seq Scan on prefered_store (cost=0.00..14027.49 rows=856349 width=12) (actual time=0.060..2707.353 rows=856349 loops=1)
-> Materialize (cost=2320484.45..2386181.13 rows=13139337 width=8) (actual time=196659.554..406944.706 rows=13858611 loops=1)
-> Sort (cost=2320484.45..2353332.79 rows=13139337 width=8) (actual time=196659.535..396917.629 rows=13139337 loops=1)
Sort Key: public.item.prefered_stores
Sort Method: external merge Disk: 231096kB
-> Seq Scan on item (cost=0.00..228006.37 rows=13139337 width=8) (actual time=0.032..54885.583 rows=13139337 loops=1)
-> Sort (cost=3253469.82..3286318.16 rows=13139337 width=36) (actual time=344329.838..353118.692 rows=13139337 loops=1)
Sort Key: a.id
Sort Method: external sort Disk: 259792kB
-> CTE Scan on a (cost=0.00..262786.74 rows=13139337 width=36) (actual time=252170.512..320132.738 rows=13139337 loops=1)
-> Materialize (cost=3253469.82..3319166.50 rows=13139337 width=36) (actual time=838286.670..888495.578 rows=13139337 loops=1)
-> Sort (cost=3253469.82..3286318.16 rows=13139337 width=36) (actual time=838286.652..886198.912 rows=13139337 loops=1)
Sort Key: b.id
Sort Method: external sort Disk: 385320kB
-> CTE Scan on b (cost=0.00..262786.74 rows=13139337 width=36) (actual time=524258.017..811717.462 rows=13139337 loops=1)
Total runtime: 1253101.865 ms