SlideShare a Scribd company logo
1 of 48
Download to read offline
Flexible Indexing with Postgres
BRUCE MOMJIAN
December, 2014
Postgres offers a wide variety of indexing structures, and many
index lookup methods with specialized capabilities.This talk
explores the many Postgres indexing options. Includes concepts from
Teodor Sigaev, Alexander Korotkov, Oleg Bartunov, Jonathan Katz
Creative Commons Attribution License http://momjian.us/presentations
1 / 48
Outline
1. Traditional indexing
2. Indexing expressions
3. Index row control
4. Benefits of bitmap index scans
5. Non-b-tree index types
6. Data type support for index types
7. Index usage summary
Flexible Indexing with Postgres 2 / 48
Traditional Indexing
https://www.flickr.com/photos/ogimogi/
Flexible Indexing with Postgres 3 / 48
B-Tree
◮ Ideal for looking up unique values and maintaining unique
indexes
◮ High concurrency implementation
◮ Index is key/row-pointer, key/row-pointer
◮ Supply ordered data for queries
◮ ORDER BY clauses (and LIMIT)
◮ Merge joins
◮ Nested loop with index scans
Flexible Indexing with Postgres 4 / 48
But I Want More!
◮ Index expressions/functions
◮ Row control
◮ Index non-linear data
◮ Closest-match searches
◮ Index data with many duplicates
◮ Index multi-valued fields
Flexible Indexing with Postgres 5 / 48
Indexing Expressions
SELECT * FROM customer WHERE lower(name) = ’andy’;
CREATE INDEX i_customer_name ON customer (name);
CREATE INDEX i_customer_lower ON customer (lower(name));
Flexible Indexing with Postgres 6 / 48
Let’s Test It
CREATE TABLE customer (name) AS
SELECT ’cust’ || i
FROM generate_series(1, 1000) AS g(i);
SELECT 1000
CREATE INDEX i_customer_name ON customer (name);
CREATE INDEX
EXPLAIN SELECT * FROM customer WHERE name = ’cust999’;
QUERY PLAN
------------------------------------------------------
Index Only Scan using i_customer_name on customer ...
Index Cond: (name = ’cust999’::text)
EXPLAIN SELECT * FROM customer WHERE lower(name) = ’cust999’;
QUERY PLAN
---------------------------------------------------------
Seq Scan on customer (cost=0.00..20.00 rows=5 width=7)
Filter: (lower(name) = ’cust999’::text)
Flexible Indexing with Postgres 7 / 48
Create an Expression Index
CREATE INDEX i_customer_lower ON customer (lower(name));
CREATE INDEX
EXPLAIN SELECT * FROM customer WHERE lower(name) = ’cust999’;
QUERY PLAN
---------------------------------------------------------------
Bitmap Heap Scan on customer (cost=4.32..9.66 rows=5 width=7)
Recheck Cond: (lower(name) = ’cust999’::text)
-> Bitmap Index Scan on i_customer_lower ...
Index Cond: (lower(name) = ’cust999’::text)
Flexible Indexing with Postgres 8 / 48
Other Expression Index Options
◮ User-defined functions
◮ Concatenation of columns
◮ Math expressions
◮ Only IMMUTABLE functions can be used
◮ Consider casting when matching WHERE clause expressions
to the indexed expression
Flexible Indexing with Postgres 9 / 48
Index Row Control
◮ Why index every row if you are only going to look up some
of them?
◮ Smaller index on disk and in memory
◮ More shallow index
◮ Less INSERT/UPDATE index overhead
◮ Sequential scan still possible
Flexible Indexing with Postgres 10 / 48
Partial Index Creation
ALTER TABLE customer ADD COLUMN state CHAR(2);
ALTER TABLE
UPDATE customer SET state = ’AZ’
WHERE name LIKE ’cust9__’;
UPDATE 100
CREATE INDEX i_customer_state_az ON customer (state) WHERE state = ’AZ’;
CREATE INDEX
Flexible Indexing with Postgres 11 / 48
Test the Partial Index
EXPLAIN SELECT * FROM customer WHERE state = ’PA’;
QUERY PLAN
----------------------------------------------------------
Seq Scan on customer (cost=0.00..17.50 rows=5 width=19)
Filter: (state = ’PA’::bpchar)
EXPLAIN SELECT * FROM customer WHERE state = ’AZ’;
QUERY PLAN
----------------------------------------------------------------------------
Bitmap Heap Scan on customer (cost=4.18..9.51 rows=5 width=19)
Recheck Cond: (state = ’AZ’::bpchar)
-> Bitmap Index Scan on i_customer_state_az ...
Index Cond: (state = ’AZ’::bpchar)
Flexible Indexing with Postgres 12 / 48
Partial Index With Different Indexed Column
DROP INDEX i_customer_name;
DROP INDEX
CREATE INDEX i_customer_name_az ON customer (name) WHERE state = ’AZ’;
CREATE INDEX
EXPLAIN SELECT * FROM customer WHERE name = ’cust975’;
QUERY PLAN
----------------------------------------------------------
Seq Scan on customer (cost=0.00..17.50 rows=1 width=19)
Filter: (name = ’cust975’::text)
Index Cond: (state = ’AZ’::bpchar)
Flexible Indexing with Postgres 13 / 48
Partial Index With Different Indexed Column
EXPLAIN SELECT * FROM customer
WHERE name = ’cust975’ AND state = ’AZ’;
QUERY PLAN
-----------------------------------------------------
Index Scan using i_customer_name_az on customer ...
Index Cond: (name = ’cust975’::text)
EXPLAIN SELECT * FROM customer
WHERE state = ’AZ’;
QUERY PLAN
----------------------------------------------------------------
Bitmap Heap Scan on customer (cost=4.17..9.50 rows=5 width=19)
Recheck Cond: (state = ’AZ’::bpchar)
-> Bitmap Index Scan on i_customer_name_az ...
Flexible Indexing with Postgres 14 / 48
Benefits of Bitmap Index Scans
◮ Used when:
◮ an index lookup might generate multiple hits on the same
heap (data) page
◮ using multiple indexes for a single query is useful
◮ Creates a bitmap of matching entries in memory
◮ Row or block-level granularity
◮ Bitmap allows heap pages to be visited only once for
multiple matches
◮ Bitmap can merge the results from several indexes with
AND/OR filtering
◮ Automatically enabled by the optimizer
Flexible Indexing with Postgres 15 / 48
Bitmap Index Scan
=&
Combined
’A’ AND ’NS’
1
0
1
0
TableIndex 1
col1 = ’A’
Index 2
1
0
0
col2 = ’NS’
1 0
1
0
0
Index
Flexible Indexing with Postgres 16 / 48
Non-B-Tree Index Types
https://www.flickr.com/photos/archeon/
Flexible Indexing with Postgres 17 / 48
Generalized Inverted Index (GIN)
◮ Best for indexing values that can contain multiple keys, e.g.
◮ text documents
◮ JSON
◮ multi-dimensional data
◮ Also ideal for columns that contain many duplicates
◮ Key is stored only once
◮ Index is key/many-row-pointers
◮ Index updates are batched, though always checked for
accuracy
◮ In Postgres 9.4
◮ compression of row pointer list
◮ optimized multi-key filtering
Flexible Indexing with Postgres 18 / 48
Generalized Search Tree (GIST)
GIST is a general indexing framework designed to allow indexing
of complex data types with minimal programming. Supported
data types include:
◮ geometric types
◮ range types
◮ hstore (key/value pairs)
◮ intarray (integer arrays)
◮ pg_trgm (trigrams)
Supports optional “distance” for nearest-neighbors/closest
matches. (GIN is also generalized.)
Flexible Indexing with Postgres 19 / 48
Space-Partitioned Generalized Search Tree
(SP-GIST)
◮ Similar to GIST in that it is a generalized indexing framework
◮ Allows the key to be split apart (decomposed)
◮ Parts are indexed hierarchically into partitions
◮ Partitions are of different sizes
◮ Each child needs to store only the child-unique portion of
the original value because each entry in the partition shares
the same parent value.
Flexible Indexing with Postgres 20 / 48
Hash Indexes
◮ Equality, non-equality lookups; no range lookups
◮ Not crash-safe
◮ Not replicated
◮ Cannot be restored via point-in-time recovery
◮ Poor performance and concurrency characteristics
◮ Boo
Flexible Indexing with Postgres 21 / 48
I Am Not Making This Up
SELECT amname, obj_description(oid, ’pg_am’)
FROM pg_am ORDER BY 1;
amname | obj_description
--------+-----------------------------
btree | b-tree index access method
gin | GIN index access method
gist | GiST index access method
hash | hash index access method
spgist | SP-GiST index access method
Flexible Indexing with Postgres 22 / 48
Data Type Support for Index Types
https://www.flickr.com/photos/jonobass/
Flexible Indexing with Postgres 23 / 48
Finding Supported Data Types - B-Tree
SELECT opfname FROM pg_opfamily, pg_am
WHERE opfmethod = pg_am.oid AND amname = ’btree’ ORDER BY 1;
abstime_ops jsonb_ops text_ops
array_ops macaddr_ops text_pattern_ops
bit_ops money_ops tid_ops
bool_ops name_ops time_ops
bpchar_ops network_ops timetz_ops
bpchar_pattern_ops numeric_ops tinterval_ops
bytea_ops oid_ops tsquery_ops
char_ops oidvector_ops tsvector_ops
datetime_ops pg_lsn_ops uuid_ops
enum_ops range_ops varbit_ops
float_ops record_image_ops
integer_ops record_ops
interval_ops reltime_ops
These data types are mostly single-value and easily ordered.
B-tree support for multi-valued types like tsvector is only for
complete-field equality comparisons.
Flexible Indexing with Postgres 24 / 48
Finding Supported Data Types - GIN
SELECT opfname FROM pg_opfamily, pg_am
WHERE opfmethod = pg_am.oid AND amname = ’gin’ ORDER BY 1;
opfname
----------------
array_ops
jsonb_ops
jsonb_path_ops
tsvector_ops
These date types are multi-value, where each value is
independent.
Flexible Indexing with Postgres 25 / 48
Finding Supported Data Types - GIST
SELECT opfname FROM pg_opfamily, pg_am
WHERE opfmethod = pg_am.oid AND amname = ’gist’ ORDER BY 1;
opfname
--------------
box_ops
circle_ops
jsonb_ops
network_ops
point_ops
poly_ops
range_ops
tsquery_ops
tsvector_ops
These date types are multi-value — some have independent
values (JSON, tsvector), others have dependent values (point,
box).
Flexible Indexing with Postgres 26 / 48
Finding Supported Data Types - SP-GIST
SELECT opfname FROM pg_opfamily, pg_am
WHERE opfmethod = pg_am.oid AND amname = ’spgist’ ORDER BY 1;
opfname
----------------
kd_point_ops
quad_point_ops
range_ops
text_ops
For text, this is useful when the keys are long.
Flexible Indexing with Postgres 27 / 48
Index Type Examples
https://www.flickr.com/photos/samcatchesides/
Flexible Indexing with Postgres 28 / 48
B-Tree
C
Item Item Item
Special< N< F
>= N
G
Internal
Leaf
Page Header Item Item Item
SpecialC
E
A
Heap
Page Header Item Item Item
SpecialK
L
G
M I A E P K W L
Page Header
Flexible Indexing with Postgres 29 / 48
GIN Example Using tsvector_ops
CREATE TABLE articles (doc TSVECTOR);
CREATE TABLE
INSERT INTO articles VALUES (’The fox is sick’);
INSERT 0 1
INSERT INTO articles VALUES (’How sick is this’);
INSERT 0 1
SELECT ctid, * FROM articles ORDER BY 1;
ctid | doc
-------+---------------------------
(0,1) | ’The’ ’fox’ ’is’ ’sick’
(0,2) | ’How’ ’is’ ’sick’ ’this’
Flexible Indexing with Postgres 30 / 48
GIN Example Using tsvector_ops
SELECT ctid, * FROM articles ORDER BY 1;
ctid | doc
-------+---------------------------
(0,1) | ’The’ ’fox’ ’is’ ’sick’
(0,2) | ’How’ ’is’ ’sick’ ’this’
fox (0,1)
is (0,1), (0,2)
sick (0,1), (0,2)
this (0,2)
How (0,2)
The (0,1)
Integer arrays are indexed similarly.
Flexible Indexing with Postgres 31 / 48
GIN Example Using JSON
CREATE TABLE webapp (doc JSON);
CREATE TABLE
INSERT INTO webapp VALUES
(’{"name" : "Bill", "active" : true}’);
INSERT 0 1
INSERT INTO webapp VALUES
(’{"name" : "Jack", "active" : true}’);
INSERT 0 1
SELECT ctid, * FROM webapp ORDER BY 1;
ctid | doc
-------+------------------------------------
(0,1) | {"name" : "Bill", "active" : true}
(0,2) | {"name" : "Jack", "active" : true}
Flexible Indexing with Postgres 32 / 48
GIN Example Using jsonb_ops (default)
(0,1) | {"name" : "Bill", "active" : true}
(0,2) | {"name" : "Jack", "active" : true}
CREATE INDEX i_webapp_yc ON webapp
USING gin (doc /* jsonb_ops */);
active (0,1), (0,2)
name (0,1), (0,2)
true (0,1), (0,2)
Bill (0,1)
Jack (0,2)
Flexible Indexing with Postgres 33 / 48
GIN Example Using jsonb_path_ops
(0,1) | {"name" : "Bill", "active" : true}
(0,2) | {"name" : "Jack", "active" : true}
CREATE INDEX i_webapp_doc_path ON webapp
USING gin (doc jsonb_path_ops);
hash(active, true) (0,1), (0,2)
hash(name, Bill) (0,1)
hash(name, Jack) (0,2)
Nested keys have their parent keys (paths) prepended before
hashing.
Flexible Indexing with Postgres 34 / 48
GIST
◮ Supports data types with loosely-coupled values, like
tsvector, JSONB
◮ Uniquely supports data types with tightly-coupled values
◮ multi-dimensional types (geographic)
◮ range types
◮ IP network data type
Flexible Indexing with Postgres 35 / 48
Linear Indexing
0 5−5
0 5−5
0 5−5
= 2
>= 2
Flexible Indexing with Postgres 36 / 48
Multi-Dimensional
5−5
x
y
Flexible Indexing with Postgres 37 / 48
Linear Methods Are Inefficient
5−5
x
y
x >= 2
x
Flexible Indexing with Postgres 38 / 48
R-Tree Indexes Bounding Boxes
5−5
x
y
x
Level 1
Level 3
Level 2
Geographic objects (lines, polygons) also can appear in r-tree
indexes. based on their own bounding boxes.
Flexible Indexing with Postgres 39 / 48
GIST Two-Dimensional Ops
box_ops
circle_ops
point_ops
poly_ops
PostGIS also uses this indexing method.
Flexible Indexing with Postgres 40 / 48
Range Indexing With GIST
GIST range type indexing uses large ranges at the top level of the
index, with ranges decreasing in size at lower levels, just like how
r-tree bounding boxes are indexed.
Flexible Indexing with Postgres 41 / 48
SP-GIST TEXT_OPS Example (Suffix Tree)
yahoo.com/google.com/
http://
index.html
maps.html
index.html
flickr.html cgi.html
google.com/public/ berkeley.edu/
README
ftp://
bin.tar.gz
doc.pdf
Internally split by character. B-trees use range partitioning, e.g.
A-C, rather than common prefix partitioning, so a btree key must
store the full key value.
Flexible Indexing with Postgres 42 / 48
Other SP-GIST Index Examples
◮ quad_point_ops uses four corner points in square partitions of
decreasing size
◮ kd_point_ops splits on only one dimension
Flexible Indexing with Postgres 43 / 48
Extension Index Support
◮ btree_gin (GIN)
◮ btree_gist (GIST)
◮ cube (GIST)
◮ hstore (GIST, GIN)
◮ intarray (GIST, GIN)
◮ ltree (GIST)
◮ pg_trgm (GIST, GIN)
◮ PostGIS
◮ seg
Flexible Indexing with Postgres 44 / 48
Index Usage Summary
https://www.flickr.com/photos/jubilo/
Flexible Indexing with Postgres 45 / 48
When To Create Indexes
◮ pg_stat_user_tables.seq_scan is high
◮ Check frequently-executed queries with EXPLAIN (find via
pg_stat_statements or pgbadger)
◮ Squential scans are not always bad
◮ If pg_stat_user_indexes.idx_scan is low,the index might be
unnecessary
◮ Unnecessary indexes use storage space and slow down
INSERTs and some UPDATEs
Flexible Indexing with Postgres 46 / 48
Evaluating Index Types
◮ Build time, INSERT/UPDATE overhead
◮ Storage size
◮ Access speed
◮ Operator lookup flexibility
Flexible Indexing with Postgres 47 / 48
Conclusion
http://momjian.us/presentations https://www.flickr.com/photos/philipp_zurmoehle/
Flexible Indexing with Postgres 48 / 48

More Related Content

Similar to Flexible Indexing with Postgres

Covering indexes
Covering indexesCovering indexes
Covering indexesMYXPLAIN
 
Data Modeling, Normalization, and Denormalisation | PostgreSQL Conference Eur...
Data Modeling, Normalization, and Denormalisation | PostgreSQL Conference Eur...Data Modeling, Normalization, and Denormalisation | PostgreSQL Conference Eur...
Data Modeling, Normalization, and Denormalisation | PostgreSQL Conference Eur...Citus Data
 
Presentation interpreting execution plans for sql statements
Presentation    interpreting execution plans for sql statementsPresentation    interpreting execution plans for sql statements
Presentation interpreting execution plans for sql statementsxKinAnx
 
Полнотекстовый поиск в PostgreSQL за миллисекунды (Олег Бартунов, Александр К...
Полнотекстовый поиск в PostgreSQL за миллисекунды (Олег Бартунов, Александр К...Полнотекстовый поиск в PostgreSQL за миллисекунды (Олег Бартунов, Александр К...
Полнотекстовый поиск в PostgreSQL за миллисекунды (Олег Бартунов, Александр К...Ontico
 
SFScon15 - Peter Moser: "The path of a query - POstgreSQL internals"
SFScon15 - Peter Moser: "The path of a query - POstgreSQL internals"SFScon15 - Peter Moser: "The path of a query - POstgreSQL internals"
SFScon15 - Peter Moser: "The path of a query - POstgreSQL internals"South Tyrol Free Software Conference
 
PostgreSQL Performance Problems: Monitoring and Alerting
PostgreSQL Performance Problems: Monitoring and AlertingPostgreSQL Performance Problems: Monitoring and Alerting
PostgreSQL Performance Problems: Monitoring and AlertingGrant Fritchey
 
Making Postgres Central in Your Data Center
Making Postgres Central in Your Data CenterMaking Postgres Central in Your Data Center
Making Postgres Central in Your Data CenterEDB
 
Making.postgres.central.2015
Making.postgres.central.2015Making.postgres.central.2015
Making.postgres.central.2015EDB
 
PostgreSQL 9.5 Features
PostgreSQL 9.5 FeaturesPostgreSQL 9.5 Features
PostgreSQL 9.5 FeaturesSaiful
 
10 Reasons to Start Your Analytics Project with PostgreSQL
10 Reasons to Start Your Analytics Project with PostgreSQL10 Reasons to Start Your Analytics Project with PostgreSQL
10 Reasons to Start Your Analytics Project with PostgreSQLSatoshi Nagayasu
 
Postgresql Database Administration Basic - Day2
Postgresql  Database Administration Basic  - Day2Postgresql  Database Administration Basic  - Day2
Postgresql Database Administration Basic - Day2PoguttuezhiniVP
 
Индексируем базу: как делать хорошо и не делать плохо Winter saint p 2021 m...
Индексируем базу: как делать хорошо и не делать плохо   Winter saint p 2021 m...Индексируем базу: как делать хорошо и не делать плохо   Winter saint p 2021 m...
Индексируем базу: как делать хорошо и не делать плохо Winter saint p 2021 m...Андрей Новиков
 
Tunning sql query
Tunning sql queryTunning sql query
Tunning sql queryvuhaininh88
 
New Features in Apache Pinot
New Features in Apache PinotNew Features in Apache Pinot
New Features in Apache PinotSiddharth Teotia
 
Non-Relational Postgres
Non-Relational PostgresNon-Relational Postgres
Non-Relational PostgresEDB
 
TechEvent 2019: Uses of Row Pattern Matching; Kim Berg Hansen - Trivadis
TechEvent 2019: Uses of Row Pattern Matching; Kim Berg Hansen - TrivadisTechEvent 2019: Uses of Row Pattern Matching; Kim Berg Hansen - Trivadis
TechEvent 2019: Uses of Row Pattern Matching; Kim Berg Hansen - TrivadisTrivadis
 
Ground Breakers Romania: Explain the explain_plan
Ground Breakers Romania: Explain the explain_planGround Breakers Romania: Explain the explain_plan
Ground Breakers Romania: Explain the explain_planMaria Colgan
 

Similar to Flexible Indexing with Postgres (20)

Covering indexes
Covering indexesCovering indexes
Covering indexes
 
Data Modeling, Normalization, and Denormalisation | PostgreSQL Conference Eur...
Data Modeling, Normalization, and Denormalisation | PostgreSQL Conference Eur...Data Modeling, Normalization, and Denormalisation | PostgreSQL Conference Eur...
Data Modeling, Normalization, and Denormalisation | PostgreSQL Conference Eur...
 
Presentation interpreting execution plans for sql statements
Presentation    interpreting execution plans for sql statementsPresentation    interpreting execution plans for sql statements
Presentation interpreting execution plans for sql statements
 
Полнотекстовый поиск в PostgreSQL за миллисекунды (Олег Бартунов, Александр К...
Полнотекстовый поиск в PostgreSQL за миллисекунды (Олег Бартунов, Александр К...Полнотекстовый поиск в PostgreSQL за миллисекунды (Олег Бартунов, Александр К...
Полнотекстовый поиск в PostgreSQL за миллисекунды (Олег Бартунов, Александр К...
 
SFScon15 - Peter Moser: "The path of a query - POstgreSQL internals"
SFScon15 - Peter Moser: "The path of a query - POstgreSQL internals"SFScon15 - Peter Moser: "The path of a query - POstgreSQL internals"
SFScon15 - Peter Moser: "The path of a query - POstgreSQL internals"
 
Indexing
IndexingIndexing
Indexing
 
PostgreSQL Performance Problems: Monitoring and Alerting
PostgreSQL Performance Problems: Monitoring and AlertingPostgreSQL Performance Problems: Monitoring and Alerting
PostgreSQL Performance Problems: Monitoring and Alerting
 
Making Postgres Central in Your Data Center
Making Postgres Central in Your Data CenterMaking Postgres Central in Your Data Center
Making Postgres Central in Your Data Center
 
Making.postgres.central.2015
Making.postgres.central.2015Making.postgres.central.2015
Making.postgres.central.2015
 
PostgreSQL 9.5 Features
PostgreSQL 9.5 FeaturesPostgreSQL 9.5 Features
PostgreSQL 9.5 Features
 
MySQL performance tuning
MySQL performance tuningMySQL performance tuning
MySQL performance tuning
 
10 Reasons to Start Your Analytics Project with PostgreSQL
10 Reasons to Start Your Analytics Project with PostgreSQL10 Reasons to Start Your Analytics Project with PostgreSQL
10 Reasons to Start Your Analytics Project with PostgreSQL
 
Postgresql Database Administration Basic - Day2
Postgresql  Database Administration Basic  - Day2Postgresql  Database Administration Basic  - Day2
Postgresql Database Administration Basic - Day2
 
Индексируем базу: как делать хорошо и не делать плохо Winter saint p 2021 m...
Индексируем базу: как делать хорошо и не делать плохо   Winter saint p 2021 m...Индексируем базу: как делать хорошо и не делать плохо   Winter saint p 2021 m...
Индексируем базу: как делать хорошо и не делать плохо Winter saint p 2021 m...
 
Tunning sql query
Tunning sql queryTunning sql query
Tunning sql query
 
New Features in Apache Pinot
New Features in Apache PinotNew Features in Apache Pinot
New Features in Apache Pinot
 
Non-Relational Postgres
Non-Relational PostgresNon-Relational Postgres
Non-Relational Postgres
 
TechEvent 2019: Uses of Row Pattern Matching; Kim Berg Hansen - Trivadis
TechEvent 2019: Uses of Row Pattern Matching; Kim Berg Hansen - TrivadisTechEvent 2019: Uses of Row Pattern Matching; Kim Berg Hansen - Trivadis
TechEvent 2019: Uses of Row Pattern Matching; Kim Berg Hansen - Trivadis
 
Ground Breakers Romania: Explain the explain_plan
Ground Breakers Romania: Explain the explain_planGround Breakers Romania: Explain the explain_plan
Ground Breakers Romania: Explain the explain_plan
 
8.4 Upcoming Features
8.4 Upcoming Features 8.4 Upcoming Features
8.4 Upcoming Features
 

More from EDB

Cloud Migration Paths: Kubernetes, IaaS, or DBaaS
Cloud Migration Paths: Kubernetes, IaaS, or DBaaSCloud Migration Paths: Kubernetes, IaaS, or DBaaS
Cloud Migration Paths: Kubernetes, IaaS, or DBaaSEDB
 
Die 10 besten PostgreSQL-Replikationsstrategien für Ihr Unternehmen
Die 10 besten PostgreSQL-Replikationsstrategien für Ihr UnternehmenDie 10 besten PostgreSQL-Replikationsstrategien für Ihr Unternehmen
Die 10 besten PostgreSQL-Replikationsstrategien für Ihr UnternehmenEDB
 
Migre sus bases de datos Oracle a la nube
Migre sus bases de datos Oracle a la nube Migre sus bases de datos Oracle a la nube
Migre sus bases de datos Oracle a la nube EDB
 
EFM Office Hours - APJ - July 29, 2021
EFM Office Hours - APJ - July 29, 2021EFM Office Hours - APJ - July 29, 2021
EFM Office Hours - APJ - July 29, 2021EDB
 
Benchmarking Cloud Native PostgreSQL
Benchmarking Cloud Native PostgreSQLBenchmarking Cloud Native PostgreSQL
Benchmarking Cloud Native PostgreSQLEDB
 
Las Variaciones de la Replicación de PostgreSQL
Las Variaciones de la Replicación de PostgreSQLLas Variaciones de la Replicación de PostgreSQL
Las Variaciones de la Replicación de PostgreSQLEDB
 
NoSQL and Spatial Database Capabilities using PostgreSQL
NoSQL and Spatial Database Capabilities using PostgreSQLNoSQL and Spatial Database Capabilities using PostgreSQL
NoSQL and Spatial Database Capabilities using PostgreSQLEDB
 
Is There Anything PgBouncer Can’t Do?
Is There Anything PgBouncer Can’t Do?Is There Anything PgBouncer Can’t Do?
Is There Anything PgBouncer Can’t Do?EDB
 
Data Analysis with TensorFlow in PostgreSQL
Data Analysis with TensorFlow in PostgreSQLData Analysis with TensorFlow in PostgreSQL
Data Analysis with TensorFlow in PostgreSQLEDB
 
Practical Partitioning in Production with Postgres
Practical Partitioning in Production with PostgresPractical Partitioning in Production with Postgres
Practical Partitioning in Production with PostgresEDB
 
A Deeper Dive into EXPLAIN
A Deeper Dive into EXPLAINA Deeper Dive into EXPLAIN
A Deeper Dive into EXPLAINEDB
 
IOT with PostgreSQL
IOT with PostgreSQLIOT with PostgreSQL
IOT with PostgreSQLEDB
 
A Journey from Oracle to PostgreSQL
A Journey from Oracle to PostgreSQLA Journey from Oracle to PostgreSQL
A Journey from Oracle to PostgreSQLEDB
 
Psql is awesome!
Psql is awesome!Psql is awesome!
Psql is awesome!EDB
 
EDB 13 - New Enhancements for Security and Usability - APJ
EDB 13 - New Enhancements for Security and Usability - APJEDB 13 - New Enhancements for Security and Usability - APJ
EDB 13 - New Enhancements for Security and Usability - APJEDB
 
Comment sauvegarder correctement vos données
Comment sauvegarder correctement vos donnéesComment sauvegarder correctement vos données
Comment sauvegarder correctement vos donnéesEDB
 
Cloud Native PostgreSQL - Italiano
Cloud Native PostgreSQL - ItalianoCloud Native PostgreSQL - Italiano
Cloud Native PostgreSQL - ItalianoEDB
 
New enhancements for security and usability in EDB 13
New enhancements for security and usability in EDB 13New enhancements for security and usability in EDB 13
New enhancements for security and usability in EDB 13EDB
 
Best Practices in Security with PostgreSQL
Best Practices in Security with PostgreSQLBest Practices in Security with PostgreSQL
Best Practices in Security with PostgreSQLEDB
 
Cloud Native PostgreSQL - APJ
Cloud Native PostgreSQL - APJCloud Native PostgreSQL - APJ
Cloud Native PostgreSQL - APJEDB
 

More from EDB (20)

Cloud Migration Paths: Kubernetes, IaaS, or DBaaS
Cloud Migration Paths: Kubernetes, IaaS, or DBaaSCloud Migration Paths: Kubernetes, IaaS, or DBaaS
Cloud Migration Paths: Kubernetes, IaaS, or DBaaS
 
Die 10 besten PostgreSQL-Replikationsstrategien für Ihr Unternehmen
Die 10 besten PostgreSQL-Replikationsstrategien für Ihr UnternehmenDie 10 besten PostgreSQL-Replikationsstrategien für Ihr Unternehmen
Die 10 besten PostgreSQL-Replikationsstrategien für Ihr Unternehmen
 
Migre sus bases de datos Oracle a la nube
Migre sus bases de datos Oracle a la nube Migre sus bases de datos Oracle a la nube
Migre sus bases de datos Oracle a la nube
 
EFM Office Hours - APJ - July 29, 2021
EFM Office Hours - APJ - July 29, 2021EFM Office Hours - APJ - July 29, 2021
EFM Office Hours - APJ - July 29, 2021
 
Benchmarking Cloud Native PostgreSQL
Benchmarking Cloud Native PostgreSQLBenchmarking Cloud Native PostgreSQL
Benchmarking Cloud Native PostgreSQL
 
Las Variaciones de la Replicación de PostgreSQL
Las Variaciones de la Replicación de PostgreSQLLas Variaciones de la Replicación de PostgreSQL
Las Variaciones de la Replicación de PostgreSQL
 
NoSQL and Spatial Database Capabilities using PostgreSQL
NoSQL and Spatial Database Capabilities using PostgreSQLNoSQL and Spatial Database Capabilities using PostgreSQL
NoSQL and Spatial Database Capabilities using PostgreSQL
 
Is There Anything PgBouncer Can’t Do?
Is There Anything PgBouncer Can’t Do?Is There Anything PgBouncer Can’t Do?
Is There Anything PgBouncer Can’t Do?
 
Data Analysis with TensorFlow in PostgreSQL
Data Analysis with TensorFlow in PostgreSQLData Analysis with TensorFlow in PostgreSQL
Data Analysis with TensorFlow in PostgreSQL
 
Practical Partitioning in Production with Postgres
Practical Partitioning in Production with PostgresPractical Partitioning in Production with Postgres
Practical Partitioning in Production with Postgres
 
A Deeper Dive into EXPLAIN
A Deeper Dive into EXPLAINA Deeper Dive into EXPLAIN
A Deeper Dive into EXPLAIN
 
IOT with PostgreSQL
IOT with PostgreSQLIOT with PostgreSQL
IOT with PostgreSQL
 
A Journey from Oracle to PostgreSQL
A Journey from Oracle to PostgreSQLA Journey from Oracle to PostgreSQL
A Journey from Oracle to PostgreSQL
 
Psql is awesome!
Psql is awesome!Psql is awesome!
Psql is awesome!
 
EDB 13 - New Enhancements for Security and Usability - APJ
EDB 13 - New Enhancements for Security and Usability - APJEDB 13 - New Enhancements for Security and Usability - APJ
EDB 13 - New Enhancements for Security and Usability - APJ
 
Comment sauvegarder correctement vos données
Comment sauvegarder correctement vos donnéesComment sauvegarder correctement vos données
Comment sauvegarder correctement vos données
 
Cloud Native PostgreSQL - Italiano
Cloud Native PostgreSQL - ItalianoCloud Native PostgreSQL - Italiano
Cloud Native PostgreSQL - Italiano
 
New enhancements for security and usability in EDB 13
New enhancements for security and usability in EDB 13New enhancements for security and usability in EDB 13
New enhancements for security and usability in EDB 13
 
Best Practices in Security with PostgreSQL
Best Practices in Security with PostgreSQLBest Practices in Security with PostgreSQL
Best Practices in Security with PostgreSQL
 
Cloud Native PostgreSQL - APJ
Cloud Native PostgreSQL - APJCloud Native PostgreSQL - APJ
Cloud Native PostgreSQL - APJ
 

Flexible Indexing with Postgres

  • 1. Flexible Indexing with Postgres BRUCE MOMJIAN December, 2014 Postgres offers a wide variety of indexing structures, and many index lookup methods with specialized capabilities.This talk explores the many Postgres indexing options. Includes concepts from Teodor Sigaev, Alexander Korotkov, Oleg Bartunov, Jonathan Katz Creative Commons Attribution License http://momjian.us/presentations 1 / 48
  • 2. Outline 1. Traditional indexing 2. Indexing expressions 3. Index row control 4. Benefits of bitmap index scans 5. Non-b-tree index types 6. Data type support for index types 7. Index usage summary Flexible Indexing with Postgres 2 / 48
  • 4. B-Tree ◮ Ideal for looking up unique values and maintaining unique indexes ◮ High concurrency implementation ◮ Index is key/row-pointer, key/row-pointer ◮ Supply ordered data for queries ◮ ORDER BY clauses (and LIMIT) ◮ Merge joins ◮ Nested loop with index scans Flexible Indexing with Postgres 4 / 48
  • 5. But I Want More! ◮ Index expressions/functions ◮ Row control ◮ Index non-linear data ◮ Closest-match searches ◮ Index data with many duplicates ◮ Index multi-valued fields Flexible Indexing with Postgres 5 / 48
  • 6. Indexing Expressions SELECT * FROM customer WHERE lower(name) = ’andy’; CREATE INDEX i_customer_name ON customer (name); CREATE INDEX i_customer_lower ON customer (lower(name)); Flexible Indexing with Postgres 6 / 48
  • 7. Let’s Test It CREATE TABLE customer (name) AS SELECT ’cust’ || i FROM generate_series(1, 1000) AS g(i); SELECT 1000 CREATE INDEX i_customer_name ON customer (name); CREATE INDEX EXPLAIN SELECT * FROM customer WHERE name = ’cust999’; QUERY PLAN ------------------------------------------------------ Index Only Scan using i_customer_name on customer ... Index Cond: (name = ’cust999’::text) EXPLAIN SELECT * FROM customer WHERE lower(name) = ’cust999’; QUERY PLAN --------------------------------------------------------- Seq Scan on customer (cost=0.00..20.00 rows=5 width=7) Filter: (lower(name) = ’cust999’::text) Flexible Indexing with Postgres 7 / 48
  • 8. Create an Expression Index CREATE INDEX i_customer_lower ON customer (lower(name)); CREATE INDEX EXPLAIN SELECT * FROM customer WHERE lower(name) = ’cust999’; QUERY PLAN --------------------------------------------------------------- Bitmap Heap Scan on customer (cost=4.32..9.66 rows=5 width=7) Recheck Cond: (lower(name) = ’cust999’::text) -> Bitmap Index Scan on i_customer_lower ... Index Cond: (lower(name) = ’cust999’::text) Flexible Indexing with Postgres 8 / 48
  • 9. Other Expression Index Options ◮ User-defined functions ◮ Concatenation of columns ◮ Math expressions ◮ Only IMMUTABLE functions can be used ◮ Consider casting when matching WHERE clause expressions to the indexed expression Flexible Indexing with Postgres 9 / 48
  • 10. Index Row Control ◮ Why index every row if you are only going to look up some of them? ◮ Smaller index on disk and in memory ◮ More shallow index ◮ Less INSERT/UPDATE index overhead ◮ Sequential scan still possible Flexible Indexing with Postgres 10 / 48
  • 11. Partial Index Creation ALTER TABLE customer ADD COLUMN state CHAR(2); ALTER TABLE UPDATE customer SET state = ’AZ’ WHERE name LIKE ’cust9__’; UPDATE 100 CREATE INDEX i_customer_state_az ON customer (state) WHERE state = ’AZ’; CREATE INDEX Flexible Indexing with Postgres 11 / 48
  • 12. Test the Partial Index EXPLAIN SELECT * FROM customer WHERE state = ’PA’; QUERY PLAN ---------------------------------------------------------- Seq Scan on customer (cost=0.00..17.50 rows=5 width=19) Filter: (state = ’PA’::bpchar) EXPLAIN SELECT * FROM customer WHERE state = ’AZ’; QUERY PLAN ---------------------------------------------------------------------------- Bitmap Heap Scan on customer (cost=4.18..9.51 rows=5 width=19) Recheck Cond: (state = ’AZ’::bpchar) -> Bitmap Index Scan on i_customer_state_az ... Index Cond: (state = ’AZ’::bpchar) Flexible Indexing with Postgres 12 / 48
  • 13. Partial Index With Different Indexed Column DROP INDEX i_customer_name; DROP INDEX CREATE INDEX i_customer_name_az ON customer (name) WHERE state = ’AZ’; CREATE INDEX EXPLAIN SELECT * FROM customer WHERE name = ’cust975’; QUERY PLAN ---------------------------------------------------------- Seq Scan on customer (cost=0.00..17.50 rows=1 width=19) Filter: (name = ’cust975’::text) Index Cond: (state = ’AZ’::bpchar) Flexible Indexing with Postgres 13 / 48
  • 14. Partial Index With Different Indexed Column EXPLAIN SELECT * FROM customer WHERE name = ’cust975’ AND state = ’AZ’; QUERY PLAN ----------------------------------------------------- Index Scan using i_customer_name_az on customer ... Index Cond: (name = ’cust975’::text) EXPLAIN SELECT * FROM customer WHERE state = ’AZ’; QUERY PLAN ---------------------------------------------------------------- Bitmap Heap Scan on customer (cost=4.17..9.50 rows=5 width=19) Recheck Cond: (state = ’AZ’::bpchar) -> Bitmap Index Scan on i_customer_name_az ... Flexible Indexing with Postgres 14 / 48
  • 15. Benefits of Bitmap Index Scans ◮ Used when: ◮ an index lookup might generate multiple hits on the same heap (data) page ◮ using multiple indexes for a single query is useful ◮ Creates a bitmap of matching entries in memory ◮ Row or block-level granularity ◮ Bitmap allows heap pages to be visited only once for multiple matches ◮ Bitmap can merge the results from several indexes with AND/OR filtering ◮ Automatically enabled by the optimizer Flexible Indexing with Postgres 15 / 48
  • 16. Bitmap Index Scan =& Combined ’A’ AND ’NS’ 1 0 1 0 TableIndex 1 col1 = ’A’ Index 2 1 0 0 col2 = ’NS’ 1 0 1 0 0 Index Flexible Indexing with Postgres 16 / 48
  • 18. Generalized Inverted Index (GIN) ◮ Best for indexing values that can contain multiple keys, e.g. ◮ text documents ◮ JSON ◮ multi-dimensional data ◮ Also ideal for columns that contain many duplicates ◮ Key is stored only once ◮ Index is key/many-row-pointers ◮ Index updates are batched, though always checked for accuracy ◮ In Postgres 9.4 ◮ compression of row pointer list ◮ optimized multi-key filtering Flexible Indexing with Postgres 18 / 48
  • 19. Generalized Search Tree (GIST) GIST is a general indexing framework designed to allow indexing of complex data types with minimal programming. Supported data types include: ◮ geometric types ◮ range types ◮ hstore (key/value pairs) ◮ intarray (integer arrays) ◮ pg_trgm (trigrams) Supports optional “distance” for nearest-neighbors/closest matches. (GIN is also generalized.) Flexible Indexing with Postgres 19 / 48
  • 20. Space-Partitioned Generalized Search Tree (SP-GIST) ◮ Similar to GIST in that it is a generalized indexing framework ◮ Allows the key to be split apart (decomposed) ◮ Parts are indexed hierarchically into partitions ◮ Partitions are of different sizes ◮ Each child needs to store only the child-unique portion of the original value because each entry in the partition shares the same parent value. Flexible Indexing with Postgres 20 / 48
  • 21. Hash Indexes ◮ Equality, non-equality lookups; no range lookups ◮ Not crash-safe ◮ Not replicated ◮ Cannot be restored via point-in-time recovery ◮ Poor performance and concurrency characteristics ◮ Boo Flexible Indexing with Postgres 21 / 48
  • 22. I Am Not Making This Up SELECT amname, obj_description(oid, ’pg_am’) FROM pg_am ORDER BY 1; amname | obj_description --------+----------------------------- btree | b-tree index access method gin | GIN index access method gist | GiST index access method hash | hash index access method spgist | SP-GiST index access method Flexible Indexing with Postgres 22 / 48
  • 23. Data Type Support for Index Types https://www.flickr.com/photos/jonobass/ Flexible Indexing with Postgres 23 / 48
  • 24. Finding Supported Data Types - B-Tree SELECT opfname FROM pg_opfamily, pg_am WHERE opfmethod = pg_am.oid AND amname = ’btree’ ORDER BY 1; abstime_ops jsonb_ops text_ops array_ops macaddr_ops text_pattern_ops bit_ops money_ops tid_ops bool_ops name_ops time_ops bpchar_ops network_ops timetz_ops bpchar_pattern_ops numeric_ops tinterval_ops bytea_ops oid_ops tsquery_ops char_ops oidvector_ops tsvector_ops datetime_ops pg_lsn_ops uuid_ops enum_ops range_ops varbit_ops float_ops record_image_ops integer_ops record_ops interval_ops reltime_ops These data types are mostly single-value and easily ordered. B-tree support for multi-valued types like tsvector is only for complete-field equality comparisons. Flexible Indexing with Postgres 24 / 48
  • 25. Finding Supported Data Types - GIN SELECT opfname FROM pg_opfamily, pg_am WHERE opfmethod = pg_am.oid AND amname = ’gin’ ORDER BY 1; opfname ---------------- array_ops jsonb_ops jsonb_path_ops tsvector_ops These date types are multi-value, where each value is independent. Flexible Indexing with Postgres 25 / 48
  • 26. Finding Supported Data Types - GIST SELECT opfname FROM pg_opfamily, pg_am WHERE opfmethod = pg_am.oid AND amname = ’gist’ ORDER BY 1; opfname -------------- box_ops circle_ops jsonb_ops network_ops point_ops poly_ops range_ops tsquery_ops tsvector_ops These date types are multi-value — some have independent values (JSON, tsvector), others have dependent values (point, box). Flexible Indexing with Postgres 26 / 48
  • 27. Finding Supported Data Types - SP-GIST SELECT opfname FROM pg_opfamily, pg_am WHERE opfmethod = pg_am.oid AND amname = ’spgist’ ORDER BY 1; opfname ---------------- kd_point_ops quad_point_ops range_ops text_ops For text, this is useful when the keys are long. Flexible Indexing with Postgres 27 / 48
  • 29. B-Tree C Item Item Item Special< N< F >= N G Internal Leaf Page Header Item Item Item SpecialC E A Heap Page Header Item Item Item SpecialK L G M I A E P K W L Page Header Flexible Indexing with Postgres 29 / 48
  • 30. GIN Example Using tsvector_ops CREATE TABLE articles (doc TSVECTOR); CREATE TABLE INSERT INTO articles VALUES (’The fox is sick’); INSERT 0 1 INSERT INTO articles VALUES (’How sick is this’); INSERT 0 1 SELECT ctid, * FROM articles ORDER BY 1; ctid | doc -------+--------------------------- (0,1) | ’The’ ’fox’ ’is’ ’sick’ (0,2) | ’How’ ’is’ ’sick’ ’this’ Flexible Indexing with Postgres 30 / 48
  • 31. GIN Example Using tsvector_ops SELECT ctid, * FROM articles ORDER BY 1; ctid | doc -------+--------------------------- (0,1) | ’The’ ’fox’ ’is’ ’sick’ (0,2) | ’How’ ’is’ ’sick’ ’this’ fox (0,1) is (0,1), (0,2) sick (0,1), (0,2) this (0,2) How (0,2) The (0,1) Integer arrays are indexed similarly. Flexible Indexing with Postgres 31 / 48
  • 32. GIN Example Using JSON CREATE TABLE webapp (doc JSON); CREATE TABLE INSERT INTO webapp VALUES (’{"name" : "Bill", "active" : true}’); INSERT 0 1 INSERT INTO webapp VALUES (’{"name" : "Jack", "active" : true}’); INSERT 0 1 SELECT ctid, * FROM webapp ORDER BY 1; ctid | doc -------+------------------------------------ (0,1) | {"name" : "Bill", "active" : true} (0,2) | {"name" : "Jack", "active" : true} Flexible Indexing with Postgres 32 / 48
  • 33. GIN Example Using jsonb_ops (default) (0,1) | {"name" : "Bill", "active" : true} (0,2) | {"name" : "Jack", "active" : true} CREATE INDEX i_webapp_yc ON webapp USING gin (doc /* jsonb_ops */); active (0,1), (0,2) name (0,1), (0,2) true (0,1), (0,2) Bill (0,1) Jack (0,2) Flexible Indexing with Postgres 33 / 48
  • 34. GIN Example Using jsonb_path_ops (0,1) | {"name" : "Bill", "active" : true} (0,2) | {"name" : "Jack", "active" : true} CREATE INDEX i_webapp_doc_path ON webapp USING gin (doc jsonb_path_ops); hash(active, true) (0,1), (0,2) hash(name, Bill) (0,1) hash(name, Jack) (0,2) Nested keys have their parent keys (paths) prepended before hashing. Flexible Indexing with Postgres 34 / 48
  • 35. GIST ◮ Supports data types with loosely-coupled values, like tsvector, JSONB ◮ Uniquely supports data types with tightly-coupled values ◮ multi-dimensional types (geographic) ◮ range types ◮ IP network data type Flexible Indexing with Postgres 35 / 48
  • 36. Linear Indexing 0 5−5 0 5−5 0 5−5 = 2 >= 2 Flexible Indexing with Postgres 36 / 48
  • 38. Linear Methods Are Inefficient 5−5 x y x >= 2 x Flexible Indexing with Postgres 38 / 48
  • 39. R-Tree Indexes Bounding Boxes 5−5 x y x Level 1 Level 3 Level 2 Geographic objects (lines, polygons) also can appear in r-tree indexes. based on their own bounding boxes. Flexible Indexing with Postgres 39 / 48
  • 40. GIST Two-Dimensional Ops box_ops circle_ops point_ops poly_ops PostGIS also uses this indexing method. Flexible Indexing with Postgres 40 / 48
  • 41. Range Indexing With GIST GIST range type indexing uses large ranges at the top level of the index, with ranges decreasing in size at lower levels, just like how r-tree bounding boxes are indexed. Flexible Indexing with Postgres 41 / 48
  • 42. SP-GIST TEXT_OPS Example (Suffix Tree) yahoo.com/google.com/ http:// index.html maps.html index.html flickr.html cgi.html google.com/public/ berkeley.edu/ README ftp:// bin.tar.gz doc.pdf Internally split by character. B-trees use range partitioning, e.g. A-C, rather than common prefix partitioning, so a btree key must store the full key value. Flexible Indexing with Postgres 42 / 48
  • 43. Other SP-GIST Index Examples ◮ quad_point_ops uses four corner points in square partitions of decreasing size ◮ kd_point_ops splits on only one dimension Flexible Indexing with Postgres 43 / 48
  • 44. Extension Index Support ◮ btree_gin (GIN) ◮ btree_gist (GIST) ◮ cube (GIST) ◮ hstore (GIST, GIN) ◮ intarray (GIST, GIN) ◮ ltree (GIST) ◮ pg_trgm (GIST, GIN) ◮ PostGIS ◮ seg Flexible Indexing with Postgres 44 / 48
  • 46. When To Create Indexes ◮ pg_stat_user_tables.seq_scan is high ◮ Check frequently-executed queries with EXPLAIN (find via pg_stat_statements or pgbadger) ◮ Squential scans are not always bad ◮ If pg_stat_user_indexes.idx_scan is low,the index might be unnecessary ◮ Unnecessary indexes use storage space and slow down INSERTs and some UPDATEs Flexible Indexing with Postgres 46 / 48
  • 47. Evaluating Index Types ◮ Build time, INSERT/UPDATE overhead ◮ Storage size ◮ Access speed ◮ Operator lookup flexibility Flexible Indexing with Postgres 47 / 48