This site is about a previous instance of this event. For the current event, please see the updated site.

Schedule - PGConf.EU 2016

Page level compression and encryption in Postgres

Date: 2016-11-03
Time: 09:30–10:20
Room: Omega
Level: Intermediate

Until this moment PostgreSQL is lacking compression and encryption functionality which is provided by most of other DBMSes, In this presentation we explain how compression and encryption of database pages can be done at lower level of Postgres backend. Pages will be stored at disk in compressed (and optionally encrypted) format and are decompressed+decrypted when loading in memory (in buffer pool).

Proposed approach allows: - Minimize database size on the disk - Reduce disk IO and so increase speed - Improve disk access locality: updated pages are written sequentially - Provide database encryption with no space overhead and almost not speed penalty It requires minimal changes in Postgres core, only few files are affected: fd.c, md.c

Compression is done at tablespace level, providing convenient way to trigger which tables should be compressed. Compressing is most efficient for archive and append-only data.

Speaker

Anastasia Lubennikova
Konstantin Knizhnik