autovacuum Questions
4
Solved
How can one tell if the autovacuum daemon in Postgres 9.x is running and maintaining the database cluster?
Apelles asked 7/11, 2013 at 1:44
2
Solved
In PostgreSQL 9.5 I've decided to create a materialized view "effects" and scheduled an hourly concurrent refresh, since I wanted it to be always available:
REFRESH MATERIALIZED VIEW CONCURRENTLY ...
Eccentric asked 20/9, 2018 at 9:7
2
Solved
How does one enable autovacuum in PostgreSQL? I understand the purpose, I just can't find a simple answer regarding how to enable it.
Endodontics asked 28/10, 2015 at 2:35
1
Solved
Our Postgres DB (hosted on Google Cloud SQL with 1 CPU, 3.7 GB of RAM, see below) consists mostly of one big ~90GB table with about ~60 million rows. The usage pattern consists almost exclusively o...
Hardtack asked 22/2, 2019 at 16:22
1
Solved
There is one table in my schema that does not get autovacuumed. If I run VACUUM posts; on the table the vacuum process finishes nicely, but the autovacuum daemon never vacuums the table for some re...
Aura asked 15/6, 2018 at 8:50
1
I wanted to utilize the power of index-only scans in Postgres and experimented with one table:
CREATE TABLE dest.contexts
(
id integer NOT NULL,
phrase_id integer NOT NULL,
lang character varyi...
Innocence asked 1/9, 2017 at 16:9
1
Quick question from a PostgreSQL (relative) newb:
We run a batch process that, as its final step, deletes most of the previous batches.
Disk space is a concern, so we need to ensure that PostgreS...
Bennir asked 8/1, 2018 at 15:33
2
Solved
I upgraded my 9.4 postgresql cluster to 9.6. (via pg_upgrade, so my db stats were not moved to a new cluster)
I have a large table(about 450M records). This table is much used in my code(many selec...
Biscuit asked 19/1, 2017 at 8:43
2
I have Postgres 9.2 on my Openshift Online cartridge. Using Pgadmin3, I have enabled (by ticking the box) the autovuum setting for postgresql.conf. However, the autovacuum does not seem to be runni...
Beka asked 22/4, 2014 at 9:20
1
Solved
I have big tables in which I have only inserts and selects, so when autovacuum for this tables is running - system is very slow. I have switch off autovacuum for specific tables:
ALTER TABLE ag_ev...
Desiderate asked 4/11, 2014 at 19:49
2
Solved
I have an autovacuum process running on pg_toast:
select query, from pg_stat_activity where query like '%autov%';
"autovacuum: VACUUM pg_toast.pg_toast_15404513 "
How do I find out what table/in...
Cuspidate asked 27/8, 2013 at 2:32
1
I have PostgreSQL 9.2 running on Ubuntu.
The autovacuum process is running on the server.
The database has heavy load, 1000's of additions and 100's of deletions daily and yet it seems that auto...
Lenes asked 22/10, 2013 at 20:23
3
There is an autovacuum query that is taking a very long time to run, and preventing alter queries to run.
What is the danger is killing this autovacuum process before it's done?
PID QUERY
16967 ...
Sicklebill asked 4/8, 2013 at 23:55
1
Solved
in the pre-8.x days I have run numerous PGSQL databases on Linux, and did the database vacuuming explicitly via maintenance script.
When 8.x came along I did not move to autovacuum on those system...
Kleiman asked 8/1, 2010 at 10:56
1
© 2022 - 2024 — McMap. All rights reserved.