As I remember, it used to
be "in the old days" that autovacuum processes acted like primary ones
blocking user requests. But now, I think PG got it right making them
act like secondary type processes that must be "outed" when conflicting
with user requests. What I find is the best vacuuming solution is a combination of 3 things: 1. separate autovacuum tuning for high and low load times (triggered via crontab) 2. ALTER table commands to specify autovacuum parms at the table level based on sql loads on particular tables. 3. Scheduled manual vacuums to help take the stress off of autovacuum daemons. Regards, Michael Vitale Rui DeSousa wrote on 4/30/2019 10:12 AM:
|