Hi Mok
> I have an idea for managing vacuums. When managing vacuums it can sometimes be a struggle to manage the config settings for them, especially when trying to avoid anti
> wraparound vacuums. Some tables are massive and needs scale factor settings in the fractions of percent, sometimes, with no guarantee that enough actions cross that
> threshold. Increasing the autovacuum_freeze_max_age to keep up with an growing number of transactions across an instance is just kicking the can down the road. Engineers run
> backfills that throw off any calculations you may use to work out these scale factors and using the same values across an instance is too simple while managing individually
> for tables can be too messy. Or you run a cron type job so you don't have to think about it at all.
I think you can refer to these two parameters
If you're concerned about wraparound, you can reduce the value of `VACUUM-VACUUM-MAX-THRESHOLD`,vacuum_freeze_table_age, Shouldn't you be focusing on why the blocked table can't be vacuum-freeze?
Thanks