Partitions

󰃭 2024-08-22

-- Create a new database CREATE DATABSE par; postgres=# select pg_database.oid, pg_database.datname from pg_database; oid | datname -------+--------------- 5 | postgres 16388 | testdump 1 | template1 4 | template0 16395 | partitiontest 24592 | testdb 24649 | par postgres=# \c par You are now connected to database "par" as user "postgres". par=# CREATE TABLE foo ( id int not null, name VARCHAR(50), amount INT NOT NULL ) PARTITION BY RANGE(amount); CREATE TABLE par=# CREATE INDEX idx_amount ON foo(amount); CREATE INDEX par=# select pg_relation_filepath('foo'); pg_relation_filepath ---------------------- (1 row) par=# \d foo Partitioned table "public.

Continue reading 


MVCC in PostgreSQL

󰃭 2024-08-22

/* * LOCKMODE is an integer (1..N) indicating a lock type. LOCKMASK is a bit * mask indicating a set of held or requested lock types (the bit 1<<mode * corresponds to a particular lock mode). */ typedef int LOCKMASK; typedef int LOCKMODE; /* * These are the valid values of type LOCKMODE for all the standard lock * methods (both DEFAULT and USER). */ /* NoLock is not a lock mode, but a flag value meaning "don't get a lock" */ #define NoLock 0 #define AccessShareLock 1 /* SELECT */ #define RowShareLock 2 /* SELECT FOR UPDATE/FOR SHARE */ #define RowExclusiveLock 3 /* INSERT, UPDATE, DELETE */ #define ShareUpdateExclusiveLock 4 /* VACUUM (non-FULL), ANALYZE, CREATE * INDEX CONCURRENTLY */ #define ShareLock 5 /* CREATE INDEX (WITHOUT CONCURRENTLY) */ #define ShareRowExclusiveLock 6 /* like EXCLUSIVE MODE, but allows ROW * SHARE */ #define ExclusiveLock 7 /* blocks ROW SHARE/SELECT.

Continue reading 


Create Hugo in Amazon Linux Part 1

󰃭 2024-08-09

At Very Begining Yet again, I’ve started hosting my blog and trying to keep writing. The last time I wrote was over two years ago. A lot has changed in these years – Graduated with a master’s degree, moved to a new country, joined a company, and found the one I love. I think it’s time to start writing again because just consuming without producing isn’t an effective way to learn.

Continue reading 