2

次のクエリの実行を高速化するにはどうすればよいですか? 37 レコードを取得するだけで 65 秒かかりました。解決策はありますか?(gcc (GCC) 4.4.6 20120305 (Red Hat 4.4.6-4)、64 ビットでコンパイルされた、x86_64-unknown-linux-gnu で PostgreSQL 9.1.6 を使用しています) これはクエリです。

select cc.claim_id, 
cc.claim_date, 
CONCAT(cc.user_id, ' | ', uu.user_name) as user_name,
CONCAT(f_get_channel_id_by_territory_id(cc.territory_id), ' | ', f_get_channel_name(f_get_channel_id_by_territory_id(cc.territory_id))) AS channel_name,
f_get_cluster(cc.user_id) AS cluster_id,
ff.frontliner_name 
from t_trx_card_claim cc join t_mtr_user uu on uu.user_id = cc.user_id
left join t_mtr_outlet_frontliner ff on f_get_territory_id(ff.outlet_id) = cc.territory_id
where f_get_cluster(cc.user_id) = '36'

そして、これは Explain 分析の出力です ( Explain.depesz.com も参照してください)。

Nested Loop Left Join  (cost=0.00..83503.84 rows=646 width=47) (actual time=2000.830..65689.982 rows=37 loops=1)
  Join Filter: (f_get_territory_id(ff.outlet_id) = cc.territory_id)
  ->  Nested Loop  (cost=0.00..433.50 rows=7 width=35) (actual time=174.417..198.364 rows=37 loops=1)
        ->  Seq Scan on t_trx_card_claim cc  (cost=0.00..375.53 rows=7 width=21) (actual time=174.407..197.932 rows=37 loops=1)
              Filter: (f_get_cluster(user_id) = 36)
        ->  Index Scan using ix_user_8 on t_mtr_user uu  (cost=0.00..8.27 rows=1 width=22) (actual time=0.008..0.009 rows=1 loops=37)
              Index Cond: ((user_id)::text = (cc.user_id)::text)
  ->  Materialize  (cost=0.00..1811.51 rows=42701 width=21) (actual time=0.006..30.225 rows=42701 loops=37)
        ->  Seq Scan on t_mtr_outlet_frontliner ff  (cost=0.00..1347.01 rows=42701 width=21) (actual time=0.003..27.457 rows=42701 loops=1)
Total runtime: 65690.524 ms
4

1 に答える 1

3

関数 f_get_territory_id および f_get_cluster で重大な問題が発生する可能性があります。WHERE および FROM (JOIN 述語) 句で関数を使用することは強くお勧めしません (ただし、関数インデックスを使用する場合は例外です / したがって、これらの関数は不変でなければなりません)。

于 2012-11-21T06:41:42.723 に答える