@Tarun_Garg2
@Tarun_Garg2
SELECT * FROM population WHERE
State_of_birth IN ("Karnataka")
AND dob BETWEEN "2019-06-01" AND "2019-12-31"
@Tarun_Garg2
Text
@Tarun_Garg2
@Tarun_Garg2
Seq Scan on population (cost=0.00..1155.56 rows=43501 width=8)
(actual time=0.019..54.654 rows=43495 loops=1)
Filter: (state_of_birth="Karnataka"::TEXT) AND ..filters..
Planning Time: 0.103 ms
Execution Time: 54.654 ms
EXPLAIN ANALYZE SELECT * FROM population WHERE
State_of_birth IN ("Karnataka")
AND dob BETWEEN "2019-06-01" AND "2019-12-31"
@Tarun_Garg2
@Tarun_Garg2
We also created an index with -
CREATE INDEX idx_name ON population (..columns..)
@Tarun_Garg2
@Tarun_Garg2
C = seq_page_cost, random_page_cost, etc.
Text
BRIN Index
B-Tree Index
Pages = [1,2]
Pages = [3]
Pages = [4]
Search over BRIN index is like Index Search + Sequential Search
Text
They're preferred when there is a strong correlation between data being stored in disk and column values e.g. sequence number, timestamp, etc.
@Tarun_Garg2
Due to the way they're stored they occupy significantly lower space than usual indexes
With all this, we wanted to give BRIN indexing a try:-
CREATE INDEX idx_name ON population USING BRIN(dob)
We had a takeaway here that BRIN succeeds when search target is narrow set of values
No Success
@Tarun_Garg2
But this exercise seeded the idea that the BRIN index is like a virtual partitioning where partitions are sequentially scanned
Partition 1
Partition 4
@Tarun_Garg2
@Tarun_Garg2
As with BRIN Indexing, this also seeded an idea that maybe if we can have smaller tables with indexes that would do it!
The main idea is that you take a massive table(parent) and split that into multiple smaller tables called partitions or child and this enables quick query execution by pruning un-necessary partitions and parallel processing
CREATE TABLE child_table_january
INHERITS (parent_table)
CHECK
(dob>='2020-01-01' and dob<='2020-01-31')
1. Create child table inheriting parent table
2. Add non-overlapping checks for each child table
CREATE TRIGGER trigger_name BEFORE INSERT ON population
FOR EACH ROW EXECUTE PROCEDURE
name_of_procedure();
4. Add triggers to insert into desired partitions
CREATE INDEX idx_partition_1
ON child_table_january using btree(dob)
3. Add indexes to key columns
We have to use rules and triggers in order to route an insert(and update) to the parent table to the appropriate child table 😑
When querying the parent table, the query references all the rows from the parent as well as the child 😐
constraint_exclusion parameter needs to be enabled for query optimizations to work 😐
@Tarun_Garg2
CREATE TABLE partitioned_population (columns)
PARTITION BY <METHOD RANGE|LIST|HASH>
(key_column)
CREATE TABLE child_partition_january
PARTITION OF partitioned_population
FOR VALUES FROM X TO Y
1. Create parent partition table(you can't turn regular table into partitioned table)
2. Create child partitioned tables
1. List Based Partitioning
CREATE TABLE population_partitioned(...)
PARTITION BY LIST(state_of_birth)
Useful for cases when you have selected distinct values and you want to partition by those e.g. state_of_birth, payment_status, etc.
Useful for cases when you distribute the rows by a range of values e.g. date of birth, day/month/year, etc.
2. Range Based Partitioning
CREATE TABLE population_partitioned(...)
PARTITION BY RANGE(dob)
Useful for cases when you want to distribute the rows based on hash value OR when you're not sure how many partitions I want to create so you just go by a number and use modulo to divide rows in those paritiong e.g. values for which modulo of something is 0,1,2 and so on.
3. Hash value Partitioning(in v11)
CREATE TABLE population_partitioned(...)
PARTITION BY HASH(user_id)
New inserts are automatically routed to partitioned tables basis partition key
Updates are also automatically routed to partitioned tables basis partition key(added in pg11)
There is a default partition to catch unrelated data that does not fall under defined partition buckets(added in pg11)
Improved query support, in this case parent does not contain any data and partition exclusion is done on run time(vs constrained exclusion)
Index created on parent gets automatically routed to child table
(added in pg11)
You're allowed to have a primary key and unique keys in parent table provided they're part of partition keys also :)
-- works, and this foreign key gets added to all partitions
alter table population add foreign key (branch_id) references branches (id);
-- doesn't work, yet!
create table sensus (aid text references population, delta int);
With all this knowledge and things, we implemented declarative based parititioning
A big sequence scans got split into multiple small-small index scans that are happening parallelly and by themselves
Append (cost=0.56..1164264.69 rows=25154 width=1180) (actual time=1046.912..1669.778 rows=25487 loops=1)
-> Index Scan using paritition_9_2019_idx on population_9_2019 (cost=0.56..260693.47 rows=181 width=1016) (actual time=465.840..465.840 rows=0 loops=1)
Index Cond: ((dob >= '2019-09-01 00:00:00+00'::timestamp with time zone) AND (dob <= '2020-02-01 00:00:00+00'::timestamp with time zone) AND (state = 'Karnataka'::text))
-> Index Scan using paritition_10_2019_idx on partition_10_2019 (cost=0.56..236484.18 rows=157 width=1050) (actual time=412.491..412.491 rows=0 loops=1)
Index Cond: ((dob >= '2019-09-01 00:00:00+00'::timestamp with time zone) AND (dob <= '2020-02-01 00:00:00+00'::timestamp with time zone) AND (state_of_birth = 'Karnataka'::text))
-> Index Scan using partition_11_2019 on partition_11_2019 (cost=0.56..205569.95 rows=123 width=1215) (actual time=168.577..229.683 rows=24 loops=1)
Index Cond: ((dob >= '2019-09-01 00:00:00+00'::timestamp with time zone) AND (dob <= '2020-02-01 00:00:00+00'::timestamp with time zone) AND (state_of_birth = 'Karnataka'::text))
-> Index Scan using partition_12_2019 on partition_12_2019 (cost=0.56..213123.07 rows=3179 width=1211) (actual time=6.936..253.228 rows=5294 loops=1)
Index Cond: ((dob >= '2019-09-01 00:00:00+00'::timestamp with time zone) AND (dob <= '2020-02-01 00:00:00+00'::timestamp with time zone) AND (state_of_birth = 'Karnataka'::text))
-> Index Scan using partition_1_2020 on partition_1_2020 (cost=0.56..248259.67 rows=21513 width=1176) (actual time=0.027..298.852 rows=20169 loops=1)
Index Cond: ((dob >= '2019-09-01 00:00:00+00'::timestamp with time zone) AND (dob <= '2020-02-01 00:00:00+00'::timestamp with time zone) AND (state_of_birth = 'Karnataka'::text))
-> Index Scan using partition_2_2020 on partition_2_2020 (cost=0.55..8.57 rows=1 width=1197) (actual time=0.013..0.013 rows=0 loops=1)
Index Cond: ((dob >= '2019-09-01 00:00:00+00'::timestamp with time zone) AND (dob <= '2020-02-01 00:00:00+00'::timestamp with time zone) AND (state_of_birth = 'Karnataka'::text))
Planning Time: 1.315 ms
Execution Time: 1674.708 ms
@Tarun_Garg2