You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
This option controls if toast tables associated with a relation arevacuumed or not when running a manual VACUUM. It was already possibleto trigger a manual VACUUM on a toast relation without processing itsmain relation, but a manual vacuum on a main relation always forced avacuum on its toast table. This is useful in scenarios where the levelof bloat or transaction age of the main and toast relations differs alot.This option is an extension of the existing VACOPT_SKIPTOAST that wasused by autovacuum to control if toast relations should be skipped ornot. This internal flag is renamed to VACOPT_PROCESS_TOAST forconsistency with the new option.A new option switch, called --no-process-toast, is added to vacuumdb.Author: Nathan BossartReviewed-by: Kirk Jamison, Michael Paquier, Justin PryzbyDiscussion:https://postgr.es/m/BA8951E9-1524-48C5-94AF-73B1F0D7857F@amazon.com