Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
May 17, 2020 11:00 am GMT

Have you VACUUMed your tables lately?

Dishing the dirt on VACUUM

VACUUM is one of the tasks your DBA need to perform to keep things running smoothly in a Postgres database.

This is a high-level overview of why this is important.

Multiversion Concurrency Control

The first thing to get to grips with is the concept of Multiversion Concurrency Control (MVCC). The Postgres docs say that this is a way to protect reading from blocking writing and writing from blocking reading, by providing each transaction with a snapshot of the data.

While this is great when youre querying your data, no one gets locked. The trade-off is that all these snapshots float around only marked for deletion.

They are not automatically deleted. These are called dead tuples, dead rows or bloat because they clog things up and slow queries down.

Alt Text

How does this work?

VACUUM

Using VACUUM is a way to deal with the garbage collection that needs to be done to keep things running smoothly.

This option only clears out the unused data but doesnt rewrite to disk.

VACUUM [tablename]  -- to specify a tableVACUUM [tablename.columnname]  -- to specify a table and column

VACUUM FULL

This is the most no-nonsense way to get the job done. The tradeoff is that VACUUM FULL puts a full lock on the table. Not a great option if you have anyone trying to SELECT as you carry this task out.

VACUUM(FULL) [tablename]-- to specify a tableVACUUM(FULL) [tablename.columnname] -- to specify a table and column

VACUUM ANALYZE

This clears out unused data and updates the query plan.

VACUUM(FULL, ANALYZE) [tablename] -- to specify a tableVACUUM(FULL, ANALYZE) [tablename.columnname] -- to specify a table and column

AUTOVACUUM

This option keeps things under control automatically by using a trigger to kick off VACUUM when it reaches a certain level. When it is exceeded the VACUUM begins.

vacuum base threshold +

vacuum scale factor *

number of tuples

autovacuum_vacuum_threshold = 50 -- the threshold of 50 rows is set to prevent small tables being overcleanedautovacuum_vacuum_scale_factor = 0.2 -- 20% of a table may have dead tuples

So I should clean up all the time?

The aim here is to keep disk space usage at a steady-state, not to knock it down to a minimum.

Not necessarily.

Performing these tasks uses resources, and depending on which strategy you have in mind, could lock users out while it happens.

The advantage of AUTOVACUUM is that is throttled, so it doesnt use all your resources.

How do I know when it last ran?

Using the query below you can check on when the process ran by using the pg_stat_user_tables table:

select   relname,   last_vacuum,   last_autovacuum frompg_stat_user_tables;

To tell if AUTOVACUUM is running you can use this query using the pg_stat_activity table:

select  datname,   usename,   pid,   state,   wait_event,   current_timestamp - xact_start AS xact_runtime,   queryfrom   pg_stat_activity where   upper(query) LIKE '%VACUUM%' order by   xact_start;

Your friendly DBA will be across the details when it comes to this process and other maintenance tasks. Hopefully, this gives you a good introduction to the concepts and demystifies why you may need to log out so the VACCUUMing can be done.

Useful Links:

Postgres documentation Vacuum
Postgres documentation Autovacuum
Amazon RDS documentation

Read more

This post originally appeared on helenanderson.co.nz


Original Link: https://dev.to/helenanders26/have-you-vacuumed-your-tables-lately-47lk

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To