私は次のテーブル/インデックスを持っています-
CREATE TABLE test
(
coords geography(Point,4326),
user_id varchar(50),
created_at timestamp
);
CREATE INDEX ix_coords ON test USING GIST (coords);
CREATE INDEX ix_user_id ON test (user_id);
CREATE INDEX ix_created_at ON test (created_at DESC);
これは私が実行したいクエリです:
select *
from updates
where ST_DWithin(coords, ST_MakePoint(-126.4, 45.32)::geography, 30000)
and user_id='3212312'
order by created_at desc
limit 60
クエリを実行すると、ix_coords
インデックスのみが使用されます。ix_user_id
Postgresがクエリにix_created_at
もインデックスを使用するようにするにはどうすればよいですか?
これは、本番データの一括挿入を行った新しいテーブルです。test
テーブルの合計行数: 15,069,489
私はPostgreSQL9.2.1(Postgisを使用)を(effective_cache_size = 2GB)で実行しています。これは、16GB RAM、Core i7 / 2.5 GHz、非SSDディスクを備えた私のローカルOSXです。
出力の追加EXPLAIN ANALYZE
-
Limit (cost=71.64..71.65 rows=1 width=280) (actual time=1278.652..1278.665 rows=60 loops=1)
-> Sort (cost=71.64..71.65 rows=1 width=280) (actual time=1278.651..1278.662 rows=60 loops=1)
Sort Key: created_at
Sort Method: top-N heapsort Memory: 33kB
-> Index Scan using ix_coords on test (cost=0.00..71.63 rows=1 width=280) (actual time=0.198..1278.227 rows=178 loops=1)
Index Cond: (coords && '0101000020E61000006666666666E63C40C3F5285C8F824440'::geography)
Filter: (((user_id)::text = '4f1092000b921a000100015c'::text) AND ('0101000020E61000006666666666E63C40C3F5285C8F824440'::geography && _st_expand(coords, 30000::double precision)) AND _st_dwithin(coords, '0101000020E61000006666666666E63C40C3F5285C8F824440'::geography, 30000::double precision, true))
Rows Removed by Filter: 3122459
Total runtime: 1278.701 ms
アップデート:
以下の提案に基づいて、コード+user_idのインデックスを試しました。
CREATE INDEX ix_coords_and_user_id ON updates USING GIST (coords, user_id);
..しかし、次のエラーが発生します。
ERROR: data type character varying has no default operator class for access method "gist"
HINT: You must specify an operator class for the index or define a default operator class for the data type.
アップデート:
そこで、CREATE EXTENSION btree_gist;
btree/gist複合インデックスの問題を解決しました。そして今、私のインデックスは次のようになります
CREATE INDEX ix_coords_user_id_created_at ON test USING GIST (coords, user_id, created_at);
注:btree_gistはDESC/ASCを受け入れません。
新しいクエリプラン:
Limit (cost=134.99..135.00 rows=1 width=280) (actual time=273.282..273.292 rows=60 loops=1)
-> Sort (cost=134.99..135.00 rows=1 width=280) (actual time=273.281..273.285 rows=60 loops=1)
Sort Key: created_at
Sort Method: quicksort Memory: 41kB
-> Index Scan using ix_updates_coords_user_id_created_at on updates (cost=0.00..134.98 rows=1 width=280) (actual time=0.406..273.110 rows=115 loops=1)
Index Cond: ((coords && '0101000020E61000006666666666E63C40C3F5285C8F824440'::geography) AND ((user_id)::text = '4e952bb5b9a77200010019ad'::text))
Filter: (('0101000020E61000006666666666E63C40C3F5285C8F824440'::geography && _st_expand(coords, 30000::double precision)) AND _st_dwithin(coords, '0101000020E61000006666666666E63C40C3F5285C8F824440'::geography, 30000::double precision, true))
Rows Removed by Filter: 1
Total runtime: 273.331 ms
クエリのパフォーマンスは以前よりも向上しており、ほぼ1秒向上していますが、それでも優れていません。これが私が手に入れることができる最高のものだと思いますか?私は60-80msあたりのどこかを望んでいました。またorder by created_at desc
、クエリから取得して、さらに100ミリ秒を短縮します。これは、インデックスを使用できないことを意味します。とにかくこれを修正しますか?