Experiments

Posts in category: experiments

  • Fixing Postgres table bloat with pg_repack

    Crash Course: Postgres data storage topology Every row in a table in Postgres is stored as a tuple. Tuples are stored in an 8 KB container referred to as a page. A page is a range of space within an actual file on disk, located within the file via an...