溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

PostgreSQL DBA(12) - 統(tǒng)計信息在計算選擇率上的應(yīng)用#2

發(fā)布時間:2020-08-07 19:40:57 來源:ITPUB博客 閱讀:177 作者:husthxd 欄目:關(guān)系型數(shù)據(jù)庫

本節(jié)以舉例的形式簡單介紹了PG數(shù)據(jù)庫中統(tǒng)計信息(頻值MCV和直方圖HISTOGRAM)在多條件查詢計算選擇率上的應(yīng)用。

一、計算選擇率

測試數(shù)據(jù)生成腳本詳見上節(jié),這里不再累述.

多條件單列查詢

SQL腳本和執(zhí)行計劃:

testdb=# explain verbose select * from t_int where c1 < 2312 and c1 > 500;
                            QUERY PLAN                             
-------------------------------------------------------------------
 Seq Scan on public.t_int  (cost=0.00..2040.00 rows=18375 width=9)
   Output: c1, c2
   Filter: ((t_int.c1 < 2312) AND (t_int.c1 > 500))
(3 rows)

SQL語句有兩個約束條件:c1 < 2312 和 c1 > 500,是同一個列,統(tǒng)計信息中并沒有對應(yīng)">"操作符的統(tǒng)計信息,PG實際上是把">"轉(zhuǎn)換為"<="進行處理.
即"c1 < 2312 and c1 > 500"的選擇率="c1 < 2312"選擇率 - "c1 <= 500"選擇率:
c1 < 2312 選擇率=(1-0.0003)*(23+(2312-2287-1)/(2388-2287))/100=.232306525
c1 <= 500 選擇率=(1-0.0003)*(4+(500-416)/(514-416))/100=.048556857
c1 < 2312 and c1 > 500選擇率=.232306525 - .048556857=.183749668,執(zhí)行計劃中的rows=18375(取整)

多條件多列查詢

SQL腳本和執(zhí)行計劃:

testdb=# explain verbose select * from t_int where c1 < 2312 and c2 = 'TEST';
                             QUERY PLAN                              
---------------------------------------------------------------------
 Seq Scan on public.t_int  (cost=0.00..2040.00 rows=23 width=9)
   Output: c1, c2
   Filter: ((t_int.c1 < 2312) AND ((t_int.c2)::text = 'TEST'::text))
(3 rows)

SQL語句有兩個約束條件:c1 < 2312 and c2 = 'TEST'.
由于存在不同的兩個列,運算符是AND,PG計算選擇率的時候使用了概率論的方法,即:
P(A and B)=P(A) x P(B)
此例中,A=c1 < 2312,B=c2='TEST'
從上節(jié)已知,P(A)=.232306525,下面計算P(B)
c2 = 'TEST',操作符是"=",使用高頻值進行計算:

testdb=# \x
Expanded display is on.
testdb=# select staattnum,stakind1,staop1,stanumbers1,stavalues1,
                 stakind2,staop2,stanumbers2,stavalues2,
                 stakind3,staop3,stanumbers3,stavalues3
from pg_statistic 
where starelid = 16755 
      and staattnum = 2;
-[ RECORD 1 ]----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
staattnum   | 2
stakind1    | 1
staop1      | 98
stanumbers1 | {0.0015,0.00146667,0.00143333,0.0014,0.0014,0.0014,0.0014,0.0014}
stavalues1  | {C2685,C2999,C2279,C2399,C2556,C2723,C2777,C2833}
stakind2    | 2
staop2      | 664
stanumbers2 | 
stavalues2  | {C20,C2106,C2116,C2125,C2134,C2142,C2151,C2160,C2169,C2178,C2187,C2196,C2203,C2212,C2220,C223,C2239,C2248,C2257,C2266,C2276,C2286,C2296,C2304,C2313,C2322,C2330,C2340,C235,C2358,C2367,C2376,C2385,C2394,C2403,C2411,C2421,C2430,C244,C2449,C2457,C2466,C2476,C2485,C2493,C2502,C2511,C252,C2529,C2538,C2547,C2555,C2565,C2574,C2583,C2592,C2600,C2610,C2620,C263,C264,C2649,C2658,C2666,C2674,C2683,C2693,C2701,C271,C2719,C2729,C2739,C2748,C2757,C2765,C2774,C2784,C2793,C2801,C2810,C2819,C2828,C2839,C2847,C2856,C2865,C2875,C2884,C2893,C2901,C2910,C2919,C2928,C2937,C2946,C2955,C2963,C2971,C2980,C299,C2998}
stakind3    | 3
staop3      | 664
stanumbers3 | {0.829913}
stavalues3  | 

testdb=# 
testdb=# select starelid,staattnum,stainherit,stanullfrac,stawidth,stadistinct 
testdb-# from pg_statistic 
testdb-# where starelid = 16755 and staattnum = 2;
-[ RECORD 1 ]------
starelid    | 16755
staattnum   | 2
stainherit  | f
stanullfrac | 0
stawidth    | 5
stadistinct | 1000

從以上統(tǒng)計信息中可知,'TEST'不在高頻值中,包括高頻值共有1000個不同值,因此c2='TEST'的選擇率=(1-高頻值比例)/(不同值個數(shù) - 高頻值個數(shù)),其中高頻值比例=0.0015+0.00146667+0.00143333+0.0014+0.0014+0.0014+0.0014+0.0014=.0114,不同值個數(shù)=1000,高頻值個數(shù)=6,代入公式,計算得到選擇率P(B)=.000994567
P(A and B)=P(A) x P(B)=.232306525 x .000994567=.000231044,執(zhí)行計劃中的rows=.000231044*100000=23

二、參考資料

pg_statistic
pg_statistic.h
Row Estimation Examples

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI