PostgreSQL Source Code git master
vacuum.h File Reference
#include "access/htup.h"
#include "access/genam.h"
#include "access/parallel.h"
#include "access/tidstore.h"
#include "catalog/pg_class.h"
#include "catalog/pg_statistic.h"
#include "catalog/pg_type.h"
#include "parser/parse_node.h"
#include "storage/buf.h"
#include "storage/lock.h"
#include "utils/relcache.h"
Include dependency graph for vacuum.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Data Structures

struct  VacAttrStats
 
struct  VacuumParams
 
struct  VacuumCutoffs
 
struct  VacDeadItemsInfo
 

Macros

#define VACUUM_OPTION_NO_PARALLEL   0
 
#define VACUUM_OPTION_PARALLEL_BULKDEL   (1 << 0)
 
#define VACUUM_OPTION_PARALLEL_COND_CLEANUP   (1 << 1)
 
#define VACUUM_OPTION_PARALLEL_CLEANUP   (1 << 2)
 
#define VACUUM_OPTION_MAX_VALID_VALUE   ((1 << 3) - 1)
 
#define VACOPT_VACUUM   0x01 /* do VACUUM */
 
#define VACOPT_ANALYZE   0x02 /* do ANALYZE */
 
#define VACOPT_VERBOSE   0x04 /* output INFO instrumentation messages */
 
#define VACOPT_FREEZE   0x08 /* FREEZE option */
 
#define VACOPT_FULL   0x10 /* FULL (non-concurrent) vacuum */
 
#define VACOPT_SKIP_LOCKED   0x20 /* skip if cannot get lock */
 
#define VACOPT_PROCESS_MAIN   0x40 /* process main relation */
 
#define VACOPT_PROCESS_TOAST   0x80 /* process the TOAST table, if any */
 
#define VACOPT_DISABLE_PAGE_SKIPPING   0x100 /* don't skip any pages */
 
#define VACOPT_SKIP_DATABASE_STATS   0x200 /* skip vac_update_datfrozenxid() */
 
#define VACOPT_ONLY_DATABASE_STATS   0x400 /* only vac_update_datfrozenxid() */
 
#define MAX_STATISTICS_TARGET   10000
 

Typedefs

typedef struct ParallelVacuumState ParallelVacuumState
 
typedef struct VacAttrStatsVacAttrStatsP
 
typedef Datum(* AnalyzeAttrFetchFunc) (VacAttrStatsP stats, int rownum, bool *isNull)
 
typedef void(* AnalyzeAttrComputeStatsFunc) (VacAttrStatsP stats, AnalyzeAttrFetchFunc fetchfunc, int samplerows, double totalrows)
 
typedef struct VacAttrStats VacAttrStats
 
typedef enum VacOptValue VacOptValue
 
typedef struct VacuumParams VacuumParams
 
typedef struct VacDeadItemsInfo VacDeadItemsInfo
 

Enumerations

enum  VacOptValue { VACOPTVALUE_UNSPECIFIED = 0 , VACOPTVALUE_AUTO , VACOPTVALUE_DISABLED , VACOPTVALUE_ENABLED }
 

Functions

void ExecVacuum (ParseState *pstate, VacuumStmt *vacstmt, bool isTopLevel)
 
void vacuum (List *relations, const VacuumParams params, BufferAccessStrategy bstrategy, MemoryContext vac_context, bool isTopLevel)
 
void vac_open_indexes (Relation relation, LOCKMODE lockmode, int *nindexes, Relation **Irel)
 
void vac_close_indexes (int nindexes, Relation *Irel, LOCKMODE lockmode)
 
double vac_estimate_reltuples (Relation relation, BlockNumber total_pages, BlockNumber scanned_pages, double scanned_tuples)
 
void vac_update_relstats (Relation relation, BlockNumber num_pages, double num_tuples, BlockNumber num_all_visible_pages, BlockNumber num_all_frozen_pages, bool hasindex, TransactionId frozenxid, MultiXactId minmulti, bool *frozenxid_updated, bool *minmulti_updated, bool in_outer_xact)
 
bool vacuum_get_cutoffs (Relation rel, const VacuumParams params, struct VacuumCutoffs *cutoffs)
 
bool vacuum_xid_failsafe_check (const struct VacuumCutoffs *cutoffs)
 
void vac_update_datfrozenxid (void)
 
void vacuum_delay_point (bool is_analyze)
 
bool vacuum_is_permitted_for_relation (Oid relid, Form_pg_class reltuple, bits32 options)
 
Relation vacuum_open_relation (Oid relid, RangeVar *relation, bits32 options, bool verbose, LOCKMODE lmode)
 
IndexBulkDeleteResultvac_bulkdel_one_index (IndexVacuumInfo *ivinfo, IndexBulkDeleteResult *istat, TidStore *dead_items, VacDeadItemsInfo *dead_items_info)
 
IndexBulkDeleteResultvac_cleanup_one_index (IndexVacuumInfo *ivinfo, IndexBulkDeleteResult *istat)
 
void AutoVacuumUpdateCostLimit (void)
 
void VacuumUpdateCosts (void)
 
ParallelVacuumStateparallel_vacuum_init (Relation rel, Relation *indrels, int nindexes, int nrequested_workers, int vac_work_mem, int elevel, BufferAccessStrategy bstrategy)
 
void parallel_vacuum_end (ParallelVacuumState *pvs, IndexBulkDeleteResult **istats)
 
TidStoreparallel_vacuum_get_dead_items (ParallelVacuumState *pvs, VacDeadItemsInfo **dead_items_info_p)
 
void parallel_vacuum_reset_dead_items (ParallelVacuumState *pvs)
 
void parallel_vacuum_bulkdel_all_indexes (ParallelVacuumState *pvs, long num_table_tuples, int num_index_scans)
 
void parallel_vacuum_cleanup_all_indexes (ParallelVacuumState *pvs, long num_table_tuples, int num_index_scans, bool estimated_count)
 
void parallel_vacuum_main (dsm_segment *seg, shm_toc *toc)
 
void analyze_rel (Oid relid, RangeVar *relation, const VacuumParams params, List *va_cols, bool in_outer_xact, BufferAccessStrategy bstrategy)
 
bool std_typanalyze (VacAttrStats *stats)
 
double anl_random_fract (void)
 
double anl_init_selection_state (int n)
 
double anl_get_next_S (double t, int n, double *stateptr)
 

Variables

PGDLLIMPORT int default_statistics_target
 
PGDLLIMPORT int vacuum_freeze_min_age
 
PGDLLIMPORT int vacuum_freeze_table_age
 
PGDLLIMPORT int vacuum_multixact_freeze_min_age
 
PGDLLIMPORT int vacuum_multixact_freeze_table_age
 
PGDLLIMPORT int vacuum_failsafe_age
 
PGDLLIMPORT int vacuum_multixact_failsafe_age
 
PGDLLIMPORT bool track_cost_delay_timing
 
PGDLLIMPORT bool vacuum_truncate
 
PGDLLIMPORT double vacuum_max_eager_freeze_failure_rate
 
PGDLLIMPORT pg_atomic_uint32VacuumSharedCostBalance
 
PGDLLIMPORT pg_atomic_uint32VacuumActiveNWorkers
 
PGDLLIMPORT int VacuumCostBalanceLocal
 
PGDLLIMPORT bool VacuumFailsafeActive
 
PGDLLIMPORT double vacuum_cost_delay
 
PGDLLIMPORT int vacuum_cost_limit
 
PGDLLIMPORT int64 parallel_vacuum_worker_delay_ns
 

Macro Definition Documentation

◆ MAX_STATISTICS_TARGET

#define MAX_STATISTICS_TARGET   10000

Definition at line 329 of file vacuum.h.

◆ VACOPT_ANALYZE

#define VACOPT_ANALYZE   0x02 /* do ANALYZE */

Definition at line 181 of file vacuum.h.

◆ VACOPT_DISABLE_PAGE_SKIPPING

#define VACOPT_DISABLE_PAGE_SKIPPING   0x100 /* don't skip any pages */

Definition at line 188 of file vacuum.h.

◆ VACOPT_FREEZE

#define VACOPT_FREEZE   0x08 /* FREEZE option */

Definition at line 183 of file vacuum.h.

◆ VACOPT_FULL

#define VACOPT_FULL   0x10 /* FULL (non-concurrent) vacuum */

Definition at line 184 of file vacuum.h.

◆ VACOPT_ONLY_DATABASE_STATS

#define VACOPT_ONLY_DATABASE_STATS   0x400 /* only vac_update_datfrozenxid() */

Definition at line 190 of file vacuum.h.

◆ VACOPT_PROCESS_MAIN

#define VACOPT_PROCESS_MAIN   0x40 /* process main relation */

Definition at line 186 of file vacuum.h.

◆ VACOPT_PROCESS_TOAST

#define VACOPT_PROCESS_TOAST   0x80 /* process the TOAST table, if any */

Definition at line 187 of file vacuum.h.

◆ VACOPT_SKIP_DATABASE_STATS

#define VACOPT_SKIP_DATABASE_STATS   0x200 /* skip vac_update_datfrozenxid() */

Definition at line 189 of file vacuum.h.

◆ VACOPT_SKIP_LOCKED

#define VACOPT_SKIP_LOCKED   0x20 /* skip if cannot get lock */

Definition at line 185 of file vacuum.h.

◆ VACOPT_VACUUM

#define VACOPT_VACUUM   0x01 /* do VACUUM */

Definition at line 180 of file vacuum.h.

◆ VACOPT_VERBOSE

#define VACOPT_VERBOSE   0x04 /* output INFO instrumentation messages */

Definition at line 182 of file vacuum.h.

◆ VACUUM_OPTION_MAX_VALID_VALUE

#define VACUUM_OPTION_MAX_VALID_VALUE   ((1 << 3) - 1)

Definition at line 66 of file vacuum.h.

◆ VACUUM_OPTION_NO_PARALLEL

#define VACUUM_OPTION_NO_PARALLEL   0

Definition at line 42 of file vacuum.h.

◆ VACUUM_OPTION_PARALLEL_BULKDEL

#define VACUUM_OPTION_PARALLEL_BULKDEL   (1 << 0)

Definition at line 48 of file vacuum.h.

◆ VACUUM_OPTION_PARALLEL_CLEANUP

#define VACUUM_OPTION_PARALLEL_CLEANUP   (1 << 2)

Definition at line 63 of file vacuum.h.

◆ VACUUM_OPTION_PARALLEL_COND_CLEANUP

#define VACUUM_OPTION_PARALLEL_COND_CLEANUP   (1 << 1)

Definition at line 55 of file vacuum.h.

Typedef Documentation

◆ AnalyzeAttrComputeStatsFunc

typedef void(* AnalyzeAttrComputeStatsFunc) (VacAttrStatsP stats, AnalyzeAttrFetchFunc fetchfunc, int samplerows, double totalrows)

Definition at line 111 of file vacuum.h.

◆ AnalyzeAttrFetchFunc

typedef Datum(* AnalyzeAttrFetchFunc) (VacAttrStatsP stats, int rownum, bool *isNull)

Definition at line 108 of file vacuum.h.

◆ ParallelVacuumState

Definition at line 69 of file vacuum.h.

◆ VacAttrStats

typedef struct VacAttrStats VacAttrStats

◆ VacAttrStatsP

typedef struct VacAttrStats* VacAttrStatsP

Definition at line 106 of file vacuum.h.

◆ VacDeadItemsInfo

◆ VacOptValue

typedef enum VacOptValue VacOptValue

◆ VacuumParams

typedef struct VacuumParams VacuumParams

Enumeration Type Documentation

◆ VacOptValue

Enumerator
VACOPTVALUE_UNSPECIFIED 
VACOPTVALUE_AUTO 
VACOPTVALUE_DISABLED 
VACOPTVALUE_ENABLED 

Definition at line 200 of file vacuum.h.

201{
VacOptValue
Definition: vacuum.h:201
@ VACOPTVALUE_AUTO
Definition: vacuum.h:203
@ VACOPTVALUE_ENABLED
Definition: vacuum.h:205
@ VACOPTVALUE_UNSPECIFIED
Definition: vacuum.h:202
@ VACOPTVALUE_DISABLED
Definition: vacuum.h:204

Function Documentation

◆ analyze_rel()

void analyze_rel ( Oid  relid,
RangeVar relation,
const VacuumParams  params,
List va_cols,
bool  in_outer_xact,
BufferAccessStrategy  bstrategy 
)

Definition at line 108 of file analyze.c.

111{
112 Relation onerel;
113 int elevel;
114 AcquireSampleRowsFunc acquirefunc = NULL;
115 BlockNumber relpages = 0;
116
117 /* Select logging level */
118 if (params.options & VACOPT_VERBOSE)
119 elevel = INFO;
120 else
121 elevel = DEBUG2;
122
123 /* Set up static variables */
124 vac_strategy = bstrategy;
125
126 /*
127 * Check for user-requested abort.
128 */
130
131 /*
132 * Open the relation, getting ShareUpdateExclusiveLock to ensure that two
133 * ANALYZEs don't run on it concurrently. (This also locks out a
134 * concurrent VACUUM, which doesn't matter much at the moment but might
135 * matter if we ever try to accumulate stats on dead tuples.) If the rel
136 * has been dropped since we last saw it, we don't need to process it.
137 *
138 * Make sure to generate only logs for ANALYZE in this case.
139 */
140 onerel = vacuum_open_relation(relid, relation, params.options & ~(VACOPT_VACUUM),
141 params.log_analyze_min_duration >= 0,
143
144 /* leave if relation could not be opened or locked */
145 if (!onerel)
146 return;
147
148 /*
149 * Check if relation needs to be skipped based on privileges. This check
150 * happens also when building the relation list to analyze for a manual
151 * operation, and needs to be done additionally here as ANALYZE could
152 * happen across multiple transactions where privileges could have changed
153 * in-between. Make sure to generate only logs for ANALYZE in this case.
154 */
156 onerel->rd_rel,
157 params.options & ~VACOPT_VACUUM))
158 {
160 return;
161 }
162
163 /*
164 * Silently ignore tables that are temp tables of other backends ---
165 * trying to analyze these is rather pointless, since their contents are
166 * probably not up-to-date on disk. (We don't throw a warning here; it
167 * would just lead to chatter during a database-wide ANALYZE.)
168 */
169 if (RELATION_IS_OTHER_TEMP(onerel))
170 {
172 return;
173 }
174
175 /*
176 * We can ANALYZE any table except pg_statistic. See update_attstats
177 */
178 if (RelationGetRelid(onerel) == StatisticRelationId)
179 {
181 return;
182 }
183
184 /*
185 * Check that it's of an analyzable relkind, and set up appropriately.
186 */
187 if (onerel->rd_rel->relkind == RELKIND_RELATION ||
188 onerel->rd_rel->relkind == RELKIND_MATVIEW)
189 {
190 /* Regular table, so we'll use the regular row acquisition function */
191 acquirefunc = acquire_sample_rows;
192 /* Also get regular table's size */
193 relpages = RelationGetNumberOfBlocks(onerel);
194 }
195 else if (onerel->rd_rel->relkind == RELKIND_FOREIGN_TABLE)
196 {
197 /*
198 * For a foreign table, call the FDW's hook function to see whether it
199 * supports analysis.
200 */
201 FdwRoutine *fdwroutine;
202 bool ok = false;
203
204 fdwroutine = GetFdwRoutineForRelation(onerel, false);
205
206 if (fdwroutine->AnalyzeForeignTable != NULL)
207 ok = fdwroutine->AnalyzeForeignTable(onerel,
208 &acquirefunc,
209 &relpages);
210
211 if (!ok)
212 {
214 (errmsg("skipping \"%s\" --- cannot analyze this foreign table",
215 RelationGetRelationName(onerel))));
217 return;
218 }
219 }
220 else if (onerel->rd_rel->relkind == RELKIND_PARTITIONED_TABLE)
221 {
222 /*
223 * For partitioned tables, we want to do the recursive ANALYZE below.
224 */
225 }
226 else
227 {
228 /* No need for a WARNING if we already complained during VACUUM */
229 if (!(params.options & VACOPT_VACUUM))
231 (errmsg("skipping \"%s\" --- cannot analyze non-tables or special system tables",
232 RelationGetRelationName(onerel))));
234 return;
235 }
236
237 /*
238 * OK, let's do it. First, initialize progress reporting.
239 */
241 RelationGetRelid(onerel));
242
243 /*
244 * Do the normal non-recursive ANALYZE. We can skip this for partitioned
245 * tables, which don't contain any rows.
246 */
247 if (onerel->rd_rel->relkind != RELKIND_PARTITIONED_TABLE)
248 do_analyze_rel(onerel, params, va_cols, acquirefunc,
249 relpages, false, in_outer_xact, elevel);
250
251 /*
252 * If there are child tables, do recursive ANALYZE.
253 */
254 if (onerel->rd_rel->relhassubclass)
255 do_analyze_rel(onerel, params, va_cols, acquirefunc, relpages,
256 true, in_outer_xact, elevel);
257
258 /*
259 * Close source relation now, but keep lock so that no one deletes it
260 * before we commit. (If someone did, they'd fail to clean up the entries
261 * we made in pg_statistic. Also, releasing the lock before commit would
262 * expose us to concurrent-update failures in update_attstats.)
263 */
264 relation_close(onerel, NoLock);
265
267}
void pgstat_progress_start_command(ProgressCommandType cmdtype, Oid relid)
void pgstat_progress_end_command(void)
@ PROGRESS_COMMAND_ANALYZE
uint32 BlockNumber
Definition: block.h:31
#define RelationGetNumberOfBlocks(reln)
Definition: bufmgr.h:294
static void do_analyze_rel(Relation onerel, const VacuumParams params, List *va_cols, AcquireSampleRowsFunc acquirefunc, BlockNumber relpages, bool inh, bool in_outer_xact, int elevel)
Definition: analyze.c:277
static BufferAccessStrategy vac_strategy
Definition: analyze.c:74
static int acquire_sample_rows(Relation onerel, int elevel, HeapTuple *rows, int targrows, double *totalrows, double *totaldeadrows)
Definition: analyze.c:1199
int errmsg(const char *fmt,...)
Definition: elog.c:1080
#define WARNING
Definition: elog.h:36
#define DEBUG2
Definition: elog.h:29
#define INFO
Definition: elog.h:34
#define ereport(elevel,...)
Definition: elog.h:150
int(* AcquireSampleRowsFunc)(Relation relation, int elevel, HeapTuple *rows, int targrows, double *totalrows, double *totaldeadrows)
Definition: fdwapi.h:151
FdwRoutine * GetFdwRoutineForRelation(Relation relation, bool makecopy)
Definition: foreign.c:443
#define NoLock
Definition: lockdefs.h:34
#define ShareUpdateExclusiveLock
Definition: lockdefs.h:39
#define CHECK_FOR_INTERRUPTS()
Definition: miscadmin.h:123
#define RelationGetRelid(relation)
Definition: rel.h:515
#define RelationGetRelationName(relation)
Definition: rel.h:549
#define RELATION_IS_OTHER_TEMP(relation)
Definition: rel.h:668
void relation_close(Relation relation, LOCKMODE lockmode)
Definition: relation.c:205
AnalyzeForeignTable_function AnalyzeForeignTable
Definition: fdwapi.h:257
Form_pg_class rd_rel
Definition: rel.h:111
bits32 options
Definition: vacuum.h:219
int log_analyze_min_duration
Definition: vacuum.h:231
Relation vacuum_open_relation(Oid relid, RangeVar *relation, bits32 options, bool verbose, LOCKMODE lmode)
Definition: vacuum.c:769
bool vacuum_is_permitted_for_relation(Oid relid, Form_pg_class reltuple, bits32 options)
Definition: vacuum.c:717
#define VACOPT_VACUUM
Definition: vacuum.h:180
#define VACOPT_VERBOSE
Definition: vacuum.h:182

References acquire_sample_rows(), FdwRoutine::AnalyzeForeignTable, CHECK_FOR_INTERRUPTS, DEBUG2, do_analyze_rel(), ereport, errmsg(), GetFdwRoutineForRelation(), INFO, VacuumParams::log_analyze_min_duration, NoLock, VacuumParams::options, pgstat_progress_end_command(), pgstat_progress_start_command(), PROGRESS_COMMAND_ANALYZE, RelationData::rd_rel, relation_close(), RELATION_IS_OTHER_TEMP, RelationGetNumberOfBlocks, RelationGetRelationName, RelationGetRelid, ShareUpdateExclusiveLock, vac_strategy, VACOPT_VACUUM, VACOPT_VERBOSE, vacuum_is_permitted_for_relation(), vacuum_open_relation(), and WARNING.

Referenced by vacuum().

◆ anl_get_next_S()

double anl_get_next_S ( double  t,
int  n,
double *  stateptr 
)

Definition at line 296 of file sampling.c.

297{
298 double result;
299
300 oldrs.W = *stateptr;
301 result = reservoir_get_next_S(&oldrs, t, n);
302 *stateptr = oldrs.W;
303 return result;
304}
static ReservoirStateData oldrs
Definition: sampling.c:262
double reservoir_get_next_S(ReservoirState rs, double t, int n)
Definition: sampling.c:147

◆ anl_init_selection_state()

double anl_init_selection_state ( int  n)

Definition at line 281 of file sampling.c.

282{
283 /* initialize if first time through */
285 {
288 oldrs_initialized = true;
289 }
290
291 /* Initial value of W (for use when Algorithm Z is first applied) */
292 return exp(-log(sampler_random_fract(&oldrs.randstate)) / n);
293}
#define unlikely(x)
Definition: c.h:407
uint32 pg_prng_uint32(pg_prng_state *state)
Definition: pg_prng.c:227
pg_prng_state pg_global_prng_state
Definition: pg_prng.c:34
static bool oldrs_initialized
Definition: sampling.c:263
double sampler_random_fract(pg_prng_state *randstate)
Definition: sampling.c:241
void sampler_random_init_state(uint32 seed, pg_prng_state *randstate)
Definition: sampling.c:234
pg_prng_state randstate
Definition: sampling.h:49

◆ anl_random_fract()

double anl_random_fract ( void  )

Definition at line 266 of file sampling.c.

267{
268 /* initialize if first time through */
270 {
273 oldrs_initialized = true;
274 }
275
276 /* and compute a random fraction */
278}

◆ AutoVacuumUpdateCostLimit()

void AutoVacuumUpdateCostLimit ( void  )

Definition at line 1737 of file autovacuum.c.

1738{
1739 if (!MyWorkerInfo)
1740 return;
1741
1742 /*
1743 * note: in cost_limit, zero also means use value from elsewhere, because
1744 * zero is not a valid value.
1745 */
1746
1749 else
1750 {
1751 int nworkers_for_balance;
1752
1755 else
1757
1758 /* Only balance limit if no cost-related storage parameters specified */
1760 return;
1761
1763
1765
1766 /* There is at least 1 autovac worker (this worker) */
1767 if (nworkers_for_balance <= 0)
1768 elog(ERROR, "nworkers_for_balance must be > 0");
1769
1770 vacuum_cost_limit = Max(vacuum_cost_limit / nworkers_for_balance, 1);
1771 }
1772}
static bool pg_atomic_unlocked_test_flag(volatile pg_atomic_flag *ptr)
Definition: atomics.h:194
static uint32 pg_atomic_read_u32(volatile pg_atomic_uint32 *ptr)
Definition: atomics.h:237
int autovacuum_vac_cost_limit
Definition: autovacuum.c:133
static int av_storage_param_cost_limit
Definition: autovacuum.c:152
static AutoVacuumShmemStruct * AutoVacuumShmem
Definition: autovacuum.c:304
static WorkerInfo MyWorkerInfo
Definition: autovacuum.c:324
#define Max(x, y)
Definition: c.h:1000
#define ERROR
Definition: elog.h:39
#define elog(elevel,...)
Definition: elog.h:226
int VacuumCostLimit
Definition: globals.c:154
Assert(PointerIsAligned(start, uint64))
pg_atomic_uint32 av_nworkersForBalance
Definition: autovacuum.c:301
pg_atomic_flag wi_dobalance
Definition: autovacuum.c:238
int vacuum_cost_limit
Definition: vacuum.c:92

References Assert(), autovacuum_vac_cost_limit, AutoVacuumShmem, AutoVacuumShmemStruct::av_nworkersForBalance, av_storage_param_cost_limit, elog, ERROR, Max, MyWorkerInfo, pg_atomic_read_u32(), pg_atomic_unlocked_test_flag(), vacuum_cost_limit, VacuumCostLimit, and WorkerInfoData::wi_dobalance.

Referenced by vacuum_delay_point(), and VacuumUpdateCosts().

◆ ExecVacuum()

void ExecVacuum ( ParseState pstate,
VacuumStmt vacstmt,
bool  isTopLevel 
)

Definition at line 162 of file vacuum.c.

163{
164 VacuumParams params;
165 BufferAccessStrategy bstrategy = NULL;
166 bool verbose = false;
167 bool skip_locked = false;
168 bool analyze = false;
169 bool freeze = false;
170 bool full = false;
171 bool disable_page_skipping = false;
172 bool process_main = true;
173 bool process_toast = true;
174 int ring_size;
175 bool skip_database_stats = false;
176 bool only_database_stats = false;
177 MemoryContext vac_context;
178 ListCell *lc;
179
180 /* index_cleanup and truncate values unspecified for now */
183
184 /* By default parallel vacuum is enabled */
185 params.nworkers = 0;
186
187 /* Will be set later if we recurse to a TOAST table. */
188 params.toast_parent = InvalidOid;
189
190 /*
191 * Set this to an invalid value so it is clear whether or not a
192 * BUFFER_USAGE_LIMIT was specified when making the access strategy.
193 */
194 ring_size = -1;
195
196 /* Parse options list */
197 foreach(lc, vacstmt->options)
198 {
199 DefElem *opt = (DefElem *) lfirst(lc);
200
201 /* Parse common options for VACUUM and ANALYZE */
202 if (strcmp(opt->defname, "verbose") == 0)
203 verbose = defGetBoolean(opt);
204 else if (strcmp(opt->defname, "skip_locked") == 0)
205 skip_locked = defGetBoolean(opt);
206 else if (strcmp(opt->defname, "buffer_usage_limit") == 0)
207 {
208 const char *hintmsg;
209 int result;
210 char *vac_buffer_size;
211
212 vac_buffer_size = defGetString(opt);
213
214 /*
215 * Check that the specified value is valid and the size falls
216 * within the hard upper and lower limits if it is not 0.
217 */
218 if (!parse_int(vac_buffer_size, &result, GUC_UNIT_KB, &hintmsg) ||
219 (result != 0 &&
220 (result < MIN_BAS_VAC_RING_SIZE_KB || result > MAX_BAS_VAC_RING_SIZE_KB)))
221 {
223 (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
224 errmsg("%s option must be 0 or between %d kB and %d kB",
225 "BUFFER_USAGE_LIMIT",
227 hintmsg ? errhint_internal("%s", _(hintmsg)) : 0));
228 }
229
230 ring_size = result;
231 }
232 else if (!vacstmt->is_vacuumcmd)
234 (errcode(ERRCODE_SYNTAX_ERROR),
235 errmsg("unrecognized ANALYZE option \"%s\"", opt->defname),
236 parser_errposition(pstate, opt->location)));
237
238 /* Parse options available on VACUUM */
239 else if (strcmp(opt->defname, "analyze") == 0)
240 analyze = defGetBoolean(opt);
241 else if (strcmp(opt->defname, "freeze") == 0)
242 freeze = defGetBoolean(opt);
243 else if (strcmp(opt->defname, "full") == 0)
244 full = defGetBoolean(opt);
245 else if (strcmp(opt->defname, "disable_page_skipping") == 0)
246 disable_page_skipping = defGetBoolean(opt);
247 else if (strcmp(opt->defname, "index_cleanup") == 0)
248 {
249 /* Interpret no string as the default, which is 'auto' */
250 if (!opt->arg)
252 else
253 {
254 char *sval = defGetString(opt);
255
256 /* Try matching on 'auto' string, or fall back on boolean */
257 if (pg_strcasecmp(sval, "auto") == 0)
259 else
261 }
262 }
263 else if (strcmp(opt->defname, "process_main") == 0)
264 process_main = defGetBoolean(opt);
265 else if (strcmp(opt->defname, "process_toast") == 0)
266 process_toast = defGetBoolean(opt);
267 else if (strcmp(opt->defname, "truncate") == 0)
269 else if (strcmp(opt->defname, "parallel") == 0)
270 {
271 int nworkers = defGetInt32(opt);
272
273 if (nworkers < 0 || nworkers > MAX_PARALLEL_WORKER_LIMIT)
275 (errcode(ERRCODE_SYNTAX_ERROR),
276 errmsg("%s option must be between 0 and %d",
277 "PARALLEL",
279 parser_errposition(pstate, opt->location)));
280
281 /*
282 * Disable parallel vacuum, if user has specified parallel degree
283 * as zero.
284 */
285 if (nworkers == 0)
286 params.nworkers = -1;
287 else
288 params.nworkers = nworkers;
289 }
290 else if (strcmp(opt->defname, "skip_database_stats") == 0)
291 skip_database_stats = defGetBoolean(opt);
292 else if (strcmp(opt->defname, "only_database_stats") == 0)
293 only_database_stats = defGetBoolean(opt);
294 else
296 (errcode(ERRCODE_SYNTAX_ERROR),
297 errmsg("unrecognized VACUUM option \"%s\"", opt->defname),
298 parser_errposition(pstate, opt->location)));
299 }
300
301 /* Set vacuum options */
302 params.options =
304 (verbose ? VACOPT_VERBOSE : 0) |
305 (skip_locked ? VACOPT_SKIP_LOCKED : 0) |
306 (analyze ? VACOPT_ANALYZE : 0) |
307 (freeze ? VACOPT_FREEZE : 0) |
308 (full ? VACOPT_FULL : 0) |
309 (disable_page_skipping ? VACOPT_DISABLE_PAGE_SKIPPING : 0) |
310 (process_main ? VACOPT_PROCESS_MAIN : 0) |
311 (process_toast ? VACOPT_PROCESS_TOAST : 0) |
312 (skip_database_stats ? VACOPT_SKIP_DATABASE_STATS : 0) |
313 (only_database_stats ? VACOPT_ONLY_DATABASE_STATS : 0);
314
315 /* sanity checks on options */
317 Assert((params.options & VACOPT_VACUUM) ||
318 !(params.options & (VACOPT_FULL | VACOPT_FREEZE)));
319
320 if ((params.options & VACOPT_FULL) && params.nworkers > 0)
322 (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
323 errmsg("VACUUM FULL cannot be performed in parallel")));
324
325 /*
326 * BUFFER_USAGE_LIMIT does nothing for VACUUM (FULL) so just raise an
327 * ERROR for that case. VACUUM (FULL, ANALYZE) does make use of it, so
328 * we'll permit that.
329 */
330 if (ring_size != -1 && (params.options & VACOPT_FULL) &&
331 !(params.options & VACOPT_ANALYZE))
333 (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
334 errmsg("BUFFER_USAGE_LIMIT cannot be specified for VACUUM FULL")));
335
336 /*
337 * Make sure VACOPT_ANALYZE is specified if any column lists are present.
338 */
339 if (!(params.options & VACOPT_ANALYZE))
340 {
341 foreach(lc, vacstmt->rels)
342 {
344
345 if (vrel->va_cols != NIL)
347 (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
348 errmsg("ANALYZE option must be specified when a column list is provided")));
349 }
350 }
351
352
353 /*
354 * Sanity check DISABLE_PAGE_SKIPPING option.
355 */
356 if ((params.options & VACOPT_FULL) != 0 &&
359 (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
360 errmsg("VACUUM option DISABLE_PAGE_SKIPPING cannot be used with FULL")));
361
362 /* sanity check for PROCESS_TOAST */
363 if ((params.options & VACOPT_FULL) != 0 &&
364 (params.options & VACOPT_PROCESS_TOAST) == 0)
366 (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
367 errmsg("PROCESS_TOAST required with VACUUM FULL")));
368
369 /* sanity check for ONLY_DATABASE_STATS */
371 {
372 Assert(params.options & VACOPT_VACUUM);
373 if (vacstmt->rels != NIL)
375 (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
376 errmsg("ONLY_DATABASE_STATS cannot be specified with a list of tables")));
377 /* don't require people to turn off PROCESS_TOAST/MAIN explicitly */
378 if (params.options & ~(VACOPT_VACUUM |
384 (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
385 errmsg("ONLY_DATABASE_STATS cannot be specified with other VACUUM options")));
386 }
387
388 /*
389 * All freeze ages are zero if the FREEZE option is given; otherwise pass
390 * them as -1 which means to use the default values.
391 */
392 if (params.options & VACOPT_FREEZE)
393 {
394 params.freeze_min_age = 0;
395 params.freeze_table_age = 0;
396 params.multixact_freeze_min_age = 0;
398 }
399 else
400 {
401 params.freeze_min_age = -1;
402 params.freeze_table_age = -1;
403 params.multixact_freeze_min_age = -1;
404 params.multixact_freeze_table_age = -1;
405 }
406
407 /* user-invoked vacuum is never "for wraparound" */
408 params.is_wraparound = false;
409
410 /*
411 * user-invoked vacuum uses VACOPT_VERBOSE instead of
412 * log_vacuum_min_duration and log_analyze_min_duration
413 */
414 params.log_vacuum_min_duration = -1;
415 params.log_analyze_min_duration = -1;
416
417 /*
418 * Later, in vacuum_rel(), we check if a reloption override was specified.
419 */
421
422 /*
423 * Create special memory context for cross-transaction storage.
424 *
425 * Since it is a child of PortalContext, it will go away eventually even
426 * if we suffer an error; there's no need for special abort cleanup logic.
427 */
429 "Vacuum",
431
432 /*
433 * Make a buffer strategy object in the cross-transaction memory context.
434 * We needn't bother making this for VACUUM (FULL) or VACUUM
435 * (ONLY_DATABASE_STATS) as they'll not make use of it. VACUUM (FULL,
436 * ANALYZE) is possible, so we'd better ensure that we make a strategy
437 * when we see ANALYZE.
438 */
439 if ((params.options & (VACOPT_ONLY_DATABASE_STATS |
440 VACOPT_FULL)) == 0 ||
441 (params.options & VACOPT_ANALYZE) != 0)
442 {
443
444 MemoryContext old_context = MemoryContextSwitchTo(vac_context);
445
446 Assert(ring_size >= -1);
447
448 /*
449 * If BUFFER_USAGE_LIMIT was specified by the VACUUM or ANALYZE
450 * command, it overrides the value of VacuumBufferUsageLimit. Either
451 * value may be 0, in which case GetAccessStrategyWithSize() will
452 * return NULL, effectively allowing full use of shared buffers.
453 */
454 if (ring_size == -1)
455 ring_size = VacuumBufferUsageLimit;
456
457 bstrategy = GetAccessStrategyWithSize(BAS_VACUUM, ring_size);
458
459 MemoryContextSwitchTo(old_context);
460 }
461
462 /* Now go through the common routine */
463 vacuum(vacstmt->rels, params, bstrategy, vac_context, isTopLevel);
464
465 /* Finally, clean up the vacuum memory context */
466 MemoryContextDelete(vac_context);
467}
#define MAX_PARALLEL_WORKER_LIMIT
@ BAS_VACUUM
Definition: bufmgr.h:40
int32 defGetInt32(DefElem *def)
Definition: define.c:149
char * defGetString(DefElem *def)
Definition: define.c:35
bool defGetBoolean(DefElem *def)
Definition: define.c:94
int errhint_internal(const char *fmt,...)
Definition: elog.c:1352
int errcode(int sqlerrcode)
Definition: elog.c:863
#define _(x)
Definition: elog.c:91
BufferAccessStrategy GetAccessStrategyWithSize(BufferAccessStrategyType btype, int ring_size_kb)
Definition: freelist.c:546
int VacuumBufferUsageLimit
Definition: globals.c:149
bool parse_int(const char *value, int *result, int flags, const char **hintmsg)
Definition: guc.c:2743
#define GUC_UNIT_KB
Definition: guc.h:232
int verbose
void MemoryContextDelete(MemoryContext context)
Definition: mcxt.c:469
MemoryContext PortalContext
Definition: mcxt.c:175
#define AllocSetContextCreate
Definition: memutils.h:129
#define ALLOCSET_DEFAULT_SIZES
Definition: memutils.h:160
#define MIN_BAS_VAC_RING_SIZE_KB
Definition: miscadmin.h:278
#define MAX_BAS_VAC_RING_SIZE_KB
Definition: miscadmin.h:279
static MemoryContext MemoryContextSwitchTo(MemoryContext context)
Definition: palloc.h:124
int parser_errposition(ParseState *pstate, int location)
Definition: parse_node.c:106
#define lfirst(lc)
Definition: pg_list.h:172
#define lfirst_node(type, lc)
Definition: pg_list.h:176
#define NIL
Definition: pg_list.h:68
int pg_strcasecmp(const char *s1, const char *s2)
Definition: pgstrcasecmp.c:32
#define InvalidOid
Definition: postgres_ext.h:37
static long analyze(struct nfa *nfa)
Definition: regc_nfa.c:3051
char * defname
Definition: parsenodes.h:843
ParseLoc location
Definition: parsenodes.h:847
Node * arg
Definition: parsenodes.h:844
int nworkers
Definition: vacuum.h:251
int freeze_table_age
Definition: vacuum.h:221
VacOptValue truncate
Definition: vacuum.h:236
int freeze_min_age
Definition: vacuum.h:220
int log_vacuum_min_duration
Definition: vacuum.h:227
bool is_wraparound
Definition: vacuum.h:226
int multixact_freeze_min_age
Definition: vacuum.h:222
int multixact_freeze_table_age
Definition: vacuum.h:224
Oid toast_parent
Definition: vacuum.h:237
VacOptValue index_cleanup
Definition: vacuum.h:235
double max_eager_freeze_failure_rate
Definition: vacuum.h:244
List * options
Definition: parsenodes.h:3976
bool is_vacuumcmd
Definition: parsenodes.h:3978
List * rels
Definition: parsenodes.h:3977
void vacuum(List *relations, const VacuumParams params, BufferAccessStrategy bstrategy, MemoryContext vac_context, bool isTopLevel)
Definition: vacuum.c:492
double vacuum_max_eager_freeze_failure_rate
Definition: vacuum.c:81
static VacOptValue get_vacoptval_from_boolean(DefElem *def)
Definition: vacuum.c:2620
#define VACOPT_FREEZE
Definition: vacuum.h:183
#define VACOPT_SKIP_LOCKED
Definition: vacuum.h:185
#define VACOPT_FULL
Definition: vacuum.h:184
#define VACOPT_SKIP_DATABASE_STATS
Definition: vacuum.h:189
#define VACOPT_PROCESS_TOAST
Definition: vacuum.h:187
#define VACOPT_DISABLE_PAGE_SKIPPING
Definition: vacuum.h:188
#define VACOPT_ONLY_DATABASE_STATS
Definition: vacuum.h:190
#define VACOPT_PROCESS_MAIN
Definition: vacuum.h:186
#define VACOPT_ANALYZE
Definition: vacuum.h:181

References _, ALLOCSET_DEFAULT_SIZES, AllocSetContextCreate, analyze(), DefElem::arg, Assert(), BAS_VACUUM, defGetBoolean(), defGetInt32(), defGetString(), DefElem::defname, ereport, errcode(), errhint_internal(), errmsg(), ERROR, VacuumParams::freeze_min_age, VacuumParams::freeze_table_age, get_vacoptval_from_boolean(), GetAccessStrategyWithSize(), GUC_UNIT_KB, VacuumParams::index_cleanup, InvalidOid, VacuumStmt::is_vacuumcmd, VacuumParams::is_wraparound, lfirst, lfirst_node, DefElem::location, VacuumParams::log_analyze_min_duration, VacuumParams::log_vacuum_min_duration, MAX_BAS_VAC_RING_SIZE_KB, VacuumParams::max_eager_freeze_failure_rate, MAX_PARALLEL_WORKER_LIMIT, MemoryContextDelete(), MemoryContextSwitchTo(), MIN_BAS_VAC_RING_SIZE_KB, VacuumParams::multixact_freeze_min_age, VacuumParams::multixact_freeze_table_age, NIL, VacuumParams::nworkers, VacuumParams::options, VacuumStmt::options, parse_int(), parser_errposition(), pg_strcasecmp(), PortalContext, VacuumStmt::rels, VacuumParams::toast_parent, VacuumParams::truncate, VacuumRelation::va_cols, VACOPT_ANALYZE, VACOPT_DISABLE_PAGE_SKIPPING, VACOPT_FREEZE, VACOPT_FULL, VACOPT_ONLY_DATABASE_STATS, VACOPT_PROCESS_MAIN, VACOPT_PROCESS_TOAST, VACOPT_SKIP_DATABASE_STATS, VACOPT_SKIP_LOCKED, VACOPT_VACUUM, VACOPT_VERBOSE, VACOPTVALUE_AUTO, VACOPTVALUE_UNSPECIFIED, vacuum(), vacuum_max_eager_freeze_failure_rate, VacuumBufferUsageLimit, and verbose.

Referenced by standard_ProcessUtility().

◆ parallel_vacuum_bulkdel_all_indexes()

void parallel_vacuum_bulkdel_all_indexes ( ParallelVacuumState pvs,
long  num_table_tuples,
int  num_index_scans 
)

Definition at line 500 of file vacuumparallel.c.

502{
504
505 /*
506 * We can only provide an approximate value of num_heap_tuples, at least
507 * for now.
508 */
509 pvs->shared->reltuples = num_table_tuples;
510 pvs->shared->estimated_count = true;
511
512 parallel_vacuum_process_all_indexes(pvs, num_index_scans, true);
513}
#define IsParallelWorker()
Definition: parallel.h:60
double reltuples
bool estimated_count
static void parallel_vacuum_process_all_indexes(ParallelVacuumState *pvs, int num_index_scans, bool vacuum)

References Assert(), PVShared::estimated_count, IsParallelWorker, parallel_vacuum_process_all_indexes(), PVShared::reltuples, and ParallelVacuumState::shared.

Referenced by lazy_vacuum_all_indexes().

◆ parallel_vacuum_cleanup_all_indexes()

void parallel_vacuum_cleanup_all_indexes ( ParallelVacuumState pvs,
long  num_table_tuples,
int  num_index_scans,
bool  estimated_count 
)

Definition at line 519 of file vacuumparallel.c.

521{
523
524 /*
525 * We can provide a better estimate of total number of surviving tuples
526 * (we assume indexes are more interested in that than in the number of
527 * nominally live tuples).
528 */
529 pvs->shared->reltuples = num_table_tuples;
530 pvs->shared->estimated_count = estimated_count;
531
532 parallel_vacuum_process_all_indexes(pvs, num_index_scans, false);
533}

References Assert(), PVShared::estimated_count, IsParallelWorker, parallel_vacuum_process_all_indexes(), PVShared::reltuples, and ParallelVacuumState::shared.

Referenced by lazy_cleanup_all_indexes().

◆ parallel_vacuum_end()

void parallel_vacuum_end ( ParallelVacuumState pvs,
IndexBulkDeleteResult **  istats 
)

Definition at line 436 of file vacuumparallel.c.

437{
439
440 /* Copy the updated statistics */
441 for (int i = 0; i < pvs->nindexes; i++)
442 {
443 PVIndStats *indstats = &(pvs->indstats[i]);
444
445 if (indstats->istat_updated)
446 {
448 memcpy(istats[i], &indstats->istat, sizeof(IndexBulkDeleteResult));
449 }
450 else
451 istats[i] = NULL;
452 }
453
455
458
460 pfree(pvs);
461}
void DestroyParallelContext(ParallelContext *pcxt)
Definition: parallel.c:950
int i
Definition: isn.c:77
void pfree(void *pointer)
Definition: mcxt.c:1594
void * palloc0(Size size)
Definition: mcxt.c:1395
bool istat_updated
IndexBulkDeleteResult istat
ParallelContext * pcxt
PVIndStats * indstats
void TidStoreDestroy(TidStore *ts)
Definition: tidstore.c:317
void ExitParallelMode(void)
Definition: xact.c:1065

References Assert(), ParallelVacuumState::dead_items, DestroyParallelContext(), ExitParallelMode(), i, ParallelVacuumState::indstats, IsParallelWorker, PVIndStats::istat, PVIndStats::istat_updated, ParallelVacuumState::nindexes, palloc0(), ParallelVacuumState::pcxt, pfree(), TidStoreDestroy(), and ParallelVacuumState::will_parallel_vacuum.

Referenced by dead_items_cleanup().

◆ parallel_vacuum_get_dead_items()

TidStore * parallel_vacuum_get_dead_items ( ParallelVacuumState pvs,
VacDeadItemsInfo **  dead_items_info_p 
)

Definition at line 467 of file vacuumparallel.c.

468{
469 *dead_items_info_p = &(pvs->shared->dead_items_info);
470 return pvs->dead_items;
471}
VacDeadItemsInfo dead_items_info

References ParallelVacuumState::dead_items, PVShared::dead_items_info, and ParallelVacuumState::shared.

Referenced by dead_items_alloc(), and dead_items_reset().

◆ parallel_vacuum_init()

ParallelVacuumState * parallel_vacuum_init ( Relation  rel,
Relation indrels,
int  nindexes,
int  nrequested_workers,
int  vac_work_mem,
int  elevel,
BufferAccessStrategy  bstrategy 
)

Definition at line 243 of file vacuumparallel.c.

246{
248 ParallelContext *pcxt;
249 PVShared *shared;
250 TidStore *dead_items;
251 PVIndStats *indstats;
252 BufferUsage *buffer_usage;
253 WalUsage *wal_usage;
254 bool *will_parallel_vacuum;
255 Size est_indstats_len;
256 Size est_shared_len;
257 int nindexes_mwm = 0;
258 int parallel_workers = 0;
259 int querylen;
260
261 /*
262 * A parallel vacuum must be requested and there must be indexes on the
263 * relation
264 */
265 Assert(nrequested_workers >= 0);
266 Assert(nindexes > 0);
267
268 /*
269 * Compute the number of parallel vacuum workers to launch
270 */
271 will_parallel_vacuum = (bool *) palloc0(sizeof(bool) * nindexes);
272 parallel_workers = parallel_vacuum_compute_workers(indrels, nindexes,
273 nrequested_workers,
274 will_parallel_vacuum);
275 if (parallel_workers <= 0)
276 {
277 /* Can't perform vacuum in parallel -- return NULL */
278 pfree(will_parallel_vacuum);
279 return NULL;
280 }
281
283 pvs->indrels = indrels;
284 pvs->nindexes = nindexes;
285 pvs->will_parallel_vacuum = will_parallel_vacuum;
286 pvs->bstrategy = bstrategy;
287 pvs->heaprel = rel;
288
290 pcxt = CreateParallelContext("postgres", "parallel_vacuum_main",
291 parallel_workers);
292 Assert(pcxt->nworkers > 0);
293 pvs->pcxt = pcxt;
294
295 /* Estimate size for index vacuum stats -- PARALLEL_VACUUM_KEY_INDEX_STATS */
296 est_indstats_len = mul_size(sizeof(PVIndStats), nindexes);
297 shm_toc_estimate_chunk(&pcxt->estimator, est_indstats_len);
299
300 /* Estimate size for shared information -- PARALLEL_VACUUM_KEY_SHARED */
301 est_shared_len = sizeof(PVShared);
302 shm_toc_estimate_chunk(&pcxt->estimator, est_shared_len);
304
305 /*
306 * Estimate space for BufferUsage and WalUsage --
307 * PARALLEL_VACUUM_KEY_BUFFER_USAGE and PARALLEL_VACUUM_KEY_WAL_USAGE.
308 *
309 * If there are no extensions loaded that care, we could skip this. We
310 * have no way of knowing whether anyone's looking at pgBufferUsage or
311 * pgWalUsage, so do it unconditionally.
312 */
314 mul_size(sizeof(BufferUsage), pcxt->nworkers));
317 mul_size(sizeof(WalUsage), pcxt->nworkers));
319
320 /* Finally, estimate PARALLEL_VACUUM_KEY_QUERY_TEXT space */
322 {
323 querylen = strlen(debug_query_string);
324 shm_toc_estimate_chunk(&pcxt->estimator, querylen + 1);
326 }
327 else
328 querylen = 0; /* keep compiler quiet */
329
331
332 /* Prepare index vacuum stats */
333 indstats = (PVIndStats *) shm_toc_allocate(pcxt->toc, est_indstats_len);
334 MemSet(indstats, 0, est_indstats_len);
335 for (int i = 0; i < nindexes; i++)
336 {
337 Relation indrel = indrels[i];
338 uint8 vacoptions = indrel->rd_indam->amparallelvacuumoptions;
339
340 /*
341 * Cleanup option should be either disabled, always performing in
342 * parallel or conditionally performing in parallel.
343 */
344 Assert(((vacoptions & VACUUM_OPTION_PARALLEL_CLEANUP) == 0) ||
345 ((vacoptions & VACUUM_OPTION_PARALLEL_COND_CLEANUP) == 0));
347
348 if (!will_parallel_vacuum[i])
349 continue;
350
352 nindexes_mwm++;
353
354 /*
355 * Remember the number of indexes that support parallel operation for
356 * each phase.
357 */
358 if ((vacoptions & VACUUM_OPTION_PARALLEL_BULKDEL) != 0)
360 if ((vacoptions & VACUUM_OPTION_PARALLEL_CLEANUP) != 0)
362 if ((vacoptions & VACUUM_OPTION_PARALLEL_COND_CLEANUP) != 0)
364 }
366 pvs->indstats = indstats;
367
368 /* Prepare shared information */
369 shared = (PVShared *) shm_toc_allocate(pcxt->toc, est_shared_len);
370 MemSet(shared, 0, est_shared_len);
371 shared->relid = RelationGetRelid(rel);
372 shared->elevel = elevel;
375 (nindexes_mwm > 0) ?
376 maintenance_work_mem / Min(parallel_workers, nindexes_mwm) :
378 shared->dead_items_info.max_bytes = vac_work_mem * (size_t) 1024;
379
380 /* Prepare DSA space for dead items */
382 LWTRANCHE_PARALLEL_VACUUM_DSA);
383 pvs->dead_items = dead_items;
384 shared->dead_items_handle = TidStoreGetHandle(dead_items);
386
387 /* Use the same buffer size for all workers */
388 shared->ring_nbuffers = GetAccessStrategyBufferCount(bstrategy);
389
390 pg_atomic_init_u32(&(shared->cost_balance), 0);
391 pg_atomic_init_u32(&(shared->active_nworkers), 0);
392 pg_atomic_init_u32(&(shared->idx), 0);
393
395 pvs->shared = shared;
396
397 /*
398 * Allocate space for each worker's BufferUsage and WalUsage; no need to
399 * initialize
400 */
401 buffer_usage = shm_toc_allocate(pcxt->toc,
402 mul_size(sizeof(BufferUsage), pcxt->nworkers));
404 pvs->buffer_usage = buffer_usage;
405 wal_usage = shm_toc_allocate(pcxt->toc,
406 mul_size(sizeof(WalUsage), pcxt->nworkers));
408 pvs->wal_usage = wal_usage;
409
410 /* Store query string for workers */
412 {
413 char *sharedquery;
414
415 sharedquery = (char *) shm_toc_allocate(pcxt->toc, querylen + 1);
416 memcpy(sharedquery, debug_query_string, querylen + 1);
417 sharedquery[querylen] = '\0';
418 shm_toc_insert(pcxt->toc,
419 PARALLEL_VACUUM_KEY_QUERY_TEXT, sharedquery);
420 }
421
422 /* Success -- return parallel vacuum state */
423 return pvs;
424}
static void pg_atomic_init_u32(volatile pg_atomic_uint32 *ptr, uint32 val)
Definition: atomics.h:219
void InitializeParallelDSM(ParallelContext *pcxt)
Definition: parallel.c:211
ParallelContext * CreateParallelContext(const char *library_name, const char *function_name, int nworkers)
Definition: parallel.c:173
int64 pgstat_get_my_query_id(void)
#define Min(x, y)
Definition: c.h:1006
uint8_t uint8
Definition: c.h:539
#define MemSet(start, val, len)
Definition: c.h:1022
size_t Size
Definition: c.h:613
dsa_handle dsa_get_handle(dsa_area *area)
Definition: dsa.c:498
int GetAccessStrategyBufferCount(BufferAccessStrategy strategy)
Definition: freelist.c:586
int maintenance_work_mem
Definition: globals.c:133
const char * debug_query_string
Definition: postgres.c:89
void * shm_toc_allocate(shm_toc *toc, Size nbytes)
Definition: shm_toc.c:88
void shm_toc_insert(shm_toc *toc, uint64 key, void *address)
Definition: shm_toc.c:171
#define shm_toc_estimate_chunk(e, sz)
Definition: shm_toc.h:51
#define shm_toc_estimate_keys(e, cnt)
Definition: shm_toc.h:53
Size mul_size(Size s1, Size s2)
Definition: shmem.c:510
bool amusemaintenanceworkmem
Definition: amapi.h:280
uint8 amparallelvacuumoptions
Definition: amapi.h:284
pg_atomic_uint32 cost_balance
int maintenance_work_mem_worker
int64 queryid
pg_atomic_uint32 active_nworkers
dsa_pointer dead_items_handle
dsa_handle dead_items_dsa_handle
int ring_nbuffers
pg_atomic_uint32 idx
shm_toc_estimator estimator
Definition: parallel.h:41
shm_toc * toc
Definition: parallel.h:44
BufferAccessStrategy bstrategy
BufferUsage * buffer_usage
struct IndexAmRoutine * rd_indam
Definition: rel.h:206
size_t max_bytes
Definition: vacuum.h:299
dsa_area * TidStoreGetDSA(TidStore *ts)
Definition: tidstore.c:544
dsa_pointer TidStoreGetHandle(TidStore *ts)
Definition: tidstore.c:552
TidStore * TidStoreCreateShared(size_t max_bytes, int tranche_id)
Definition: tidstore.c:208
#define VACUUM_OPTION_PARALLEL_CLEANUP
Definition: vacuum.h:63
#define VACUUM_OPTION_PARALLEL_BULKDEL
Definition: vacuum.h:48
#define VACUUM_OPTION_MAX_VALID_VALUE
Definition: vacuum.h:66
#define VACUUM_OPTION_PARALLEL_COND_CLEANUP
Definition: vacuum.h:55
static int parallel_vacuum_compute_workers(Relation *indrels, int nindexes, int nrequested, bool *will_parallel_vacuum)
#define PARALLEL_VACUUM_KEY_INDEX_STATS
#define PARALLEL_VACUUM_KEY_QUERY_TEXT
#define PARALLEL_VACUUM_KEY_BUFFER_USAGE
#define PARALLEL_VACUUM_KEY_SHARED
#define PARALLEL_VACUUM_KEY_WAL_USAGE
struct PVShared PVShared
void EnterParallelMode(void)
Definition: xact.c:1052

References PVShared::active_nworkers, IndexAmRoutine::amparallelvacuumoptions, IndexAmRoutine::amusemaintenanceworkmem, Assert(), ParallelVacuumState::bstrategy, ParallelVacuumState::buffer_usage, PVShared::cost_balance, CreateParallelContext(), ParallelVacuumState::dead_items, PVShared::dead_items_dsa_handle, PVShared::dead_items_handle, PVShared::dead_items_info, debug_query_string, dsa_get_handle(), PVShared::elevel, EnterParallelMode(), ParallelContext::estimator, GetAccessStrategyBufferCount(), ParallelVacuumState::heaprel, i, PVShared::idx, ParallelVacuumState::indrels, ParallelVacuumState::indstats, InitializeParallelDSM(), maintenance_work_mem, PVShared::maintenance_work_mem_worker, VacDeadItemsInfo::max_bytes, MemSet, Min, mul_size(), ParallelVacuumState::nindexes, ParallelVacuumState::nindexes_parallel_bulkdel, ParallelVacuumState::nindexes_parallel_cleanup, ParallelVacuumState::nindexes_parallel_condcleanup, ParallelContext::nworkers, palloc0(), parallel_vacuum_compute_workers(), PARALLEL_VACUUM_KEY_BUFFER_USAGE, PARALLEL_VACUUM_KEY_INDEX_STATS, PARALLEL_VACUUM_KEY_QUERY_TEXT, PARALLEL_VACUUM_KEY_SHARED, PARALLEL_VACUUM_KEY_WAL_USAGE, ParallelVacuumState::pcxt, pfree(), pg_atomic_init_u32(), pgstat_get_my_query_id(), PVShared::queryid, RelationData::rd_indam, RelationGetRelid, PVShared::relid, PVShared::ring_nbuffers, ParallelVacuumState::shared, shm_toc_allocate(), shm_toc_estimate_chunk, shm_toc_estimate_keys, shm_toc_insert(), TidStoreCreateShared(), TidStoreGetDSA(), TidStoreGetHandle(), ParallelContext::toc, VACUUM_OPTION_MAX_VALID_VALUE, VACUUM_OPTION_PARALLEL_BULKDEL, VACUUM_OPTION_PARALLEL_CLEANUP, VACUUM_OPTION_PARALLEL_COND_CLEANUP, ParallelVacuumState::wal_usage, and ParallelVacuumState::will_parallel_vacuum.

Referenced by dead_items_alloc().

◆ parallel_vacuum_main()

void parallel_vacuum_main ( dsm_segment seg,
shm_toc toc 
)

Definition at line 989 of file vacuumparallel.c.

990{
992 Relation rel;
993 Relation *indrels;
994 PVIndStats *indstats;
995 PVShared *shared;
996 TidStore *dead_items;
997 BufferUsage *buffer_usage;
998 WalUsage *wal_usage;
999 int nindexes;
1000 char *sharedquery;
1001 ErrorContextCallback errcallback;
1002
1003 /*
1004 * A parallel vacuum worker must have only PROC_IN_VACUUM flag since we
1005 * don't support parallel vacuum for autovacuum as of now.
1006 */
1008
1009 elog(DEBUG1, "starting parallel vacuum worker");
1010
1011 shared = (PVShared *) shm_toc_lookup(toc, PARALLEL_VACUUM_KEY_SHARED, false);
1012
1013 /* Set debug_query_string for individual workers */
1014 sharedquery = shm_toc_lookup(toc, PARALLEL_VACUUM_KEY_QUERY_TEXT, true);
1015 debug_query_string = sharedquery;
1017
1018 /* Track query ID */
1019 pgstat_report_query_id(shared->queryid, false);
1020
1021 /*
1022 * Open table. The lock mode is the same as the leader process. It's
1023 * okay because the lock mode does not conflict among the parallel
1024 * workers.
1025 */
1027
1028 /*
1029 * Open all indexes. indrels are sorted in order by OID, which should be
1030 * matched to the leader's one.
1031 */
1032 vac_open_indexes(rel, RowExclusiveLock, &nindexes, &indrels);
1033 Assert(nindexes > 0);
1034
1035 /*
1036 * Apply the desired value of maintenance_work_mem within this process.
1037 * Really we should use SetConfigOption() to change a GUC, but since we're
1038 * already in parallel mode guc.c would complain about that. Fortunately,
1039 * by the same token guc.c will not let any user-defined code change it.
1040 * So just avert your eyes while we do this:
1041 */
1042 if (shared->maintenance_work_mem_worker > 0)
1044
1045 /* Set index statistics */
1046 indstats = (PVIndStats *) shm_toc_lookup(toc,
1048 false);
1049
1050 /* Find dead_items in shared memory */
1051 dead_items = TidStoreAttach(shared->dead_items_dsa_handle,
1052 shared->dead_items_handle);
1053
1054 /* Set cost-based vacuum delay */
1060
1061 /* Set parallel vacuum state */
1062 pvs.indrels = indrels;
1063 pvs.nindexes = nindexes;
1064 pvs.indstats = indstats;
1065 pvs.shared = shared;
1066 pvs.dead_items = dead_items;
1069 pvs.heaprel = rel;
1070
1071 /* These fields will be filled during index vacuum or cleanup */
1072 pvs.indname = NULL;
1074
1075 /* Each parallel VACUUM worker gets its own access strategy. */
1077 shared->ring_nbuffers * (BLCKSZ / 1024));
1078
1079 /* Setup error traceback support for ereport() */
1081 errcallback.arg = &pvs;
1082 errcallback.previous = error_context_stack;
1083 error_context_stack = &errcallback;
1084
1085 /* Prepare to track buffer usage during parallel execution */
1087
1088 /* Process indexes to perform vacuum/cleanup */
1090
1091 /* Report buffer/WAL usage during parallel execution */
1092 buffer_usage = shm_toc_lookup(toc, PARALLEL_VACUUM_KEY_BUFFER_USAGE, false);
1093 wal_usage = shm_toc_lookup(toc, PARALLEL_VACUUM_KEY_WAL_USAGE, false);
1095 &wal_usage[ParallelWorkerNumber]);
1096
1097 /* Report any remaining cost-based vacuum delay time */
1101
1102 TidStoreDetach(dead_items);
1103
1104 /* Pop the error context stack */
1105 error_context_stack = errcallback.previous;
1106
1107 vac_close_indexes(nindexes, indrels, RowExclusiveLock);
1110}
void VacuumUpdateCosts(void)
Definition: autovacuum.c:1668
int ParallelWorkerNumber
Definition: parallel.c:115
void pgstat_progress_parallel_incr_param(int index, int64 incr)
void pgstat_report_query_id(int64 query_id, bool force)
void pgstat_report_activity(BackendState state, const char *cmd_str)
@ STATE_RUNNING
ErrorContextCallback * error_context_stack
Definition: elog.c:95
#define DEBUG1
Definition: elog.h:30
void FreeAccessStrategy(BufferAccessStrategy strategy)
Definition: freelist.c:643
int VacuumCostBalance
Definition: globals.c:157
void InstrEndParallelQuery(BufferUsage *bufusage, WalUsage *walusage)
Definition: instrument.c:208
void InstrStartParallelQuery(void)
Definition: instrument.c:200
#define RowExclusiveLock
Definition: lockdefs.h:38
char * get_namespace_name(Oid nspid)
Definition: lsyscache.c:3533
char * pstrdup(const char *in)
Definition: mcxt.c:1759
#define PROC_IN_VACUUM
Definition: proc.h:58
#define PROGRESS_VACUUM_DELAY_TIME
Definition: progress.h:31
#define RelationGetNamespace(relation)
Definition: rel.h:556
void * shm_toc_lookup(shm_toc *toc, uint64 key, bool noError)
Definition: shm_toc.c:232
PGPROC * MyProc
Definition: proc.c:67
struct ErrorContextCallback * previous
Definition: elog.h:297
void(* callback)(void *arg)
Definition: elog.h:298
uint8 statusFlags
Definition: proc.h:259
PVIndVacStatus status
void table_close(Relation relation, LOCKMODE lockmode)
Definition: table.c:126
Relation table_open(Oid relationId, LOCKMODE lockmode)
Definition: table.c:40
void TidStoreDetach(TidStore *ts)
Definition: tidstore.c:269
TidStore * TidStoreAttach(dsa_handle area_handle, dsa_pointer handle)
Definition: tidstore.c:244
pg_atomic_uint32 * VacuumActiveNWorkers
Definition: vacuum.c:117
bool track_cost_delay_timing
Definition: vacuum.c:82
void vac_open_indexes(Relation relation, LOCKMODE lockmode, int *nindexes, Relation **Irel)
Definition: vacuum.c:2360
int VacuumCostBalanceLocal
Definition: vacuum.c:118
int64 parallel_vacuum_worker_delay_ns
Definition: vacuum.c:95
void vac_close_indexes(int nindexes, Relation *Irel, LOCKMODE lockmode)
Definition: vacuum.c:2403
pg_atomic_uint32 * VacuumSharedCostBalance
Definition: vacuum.c:116
static void parallel_vacuum_error_callback(void *arg)
static void parallel_vacuum_process_safe_indexes(ParallelVacuumState *pvs)
@ PARALLEL_INDVAC_STATUS_INITIAL

References PVShared::active_nworkers, ErrorContextCallback::arg, Assert(), BAS_VACUUM, ParallelVacuumState::bstrategy, ErrorContextCallback::callback, PVShared::cost_balance, ParallelVacuumState::dead_items, PVShared::dead_items_dsa_handle, PVShared::dead_items_handle, DEBUG1, debug_query_string, elog, error_context_stack, FreeAccessStrategy(), get_namespace_name(), GetAccessStrategyWithSize(), ParallelVacuumState::heaprel, ParallelVacuumState::indname, ParallelVacuumState::indrels, ParallelVacuumState::indstats, InstrEndParallelQuery(), InstrStartParallelQuery(), maintenance_work_mem, PVShared::maintenance_work_mem_worker, MyProc, ParallelVacuumState::nindexes, PARALLEL_INDVAC_STATUS_INITIAL, parallel_vacuum_error_callback(), PARALLEL_VACUUM_KEY_BUFFER_USAGE, PARALLEL_VACUUM_KEY_INDEX_STATS, PARALLEL_VACUUM_KEY_QUERY_TEXT, PARALLEL_VACUUM_KEY_SHARED, PARALLEL_VACUUM_KEY_WAL_USAGE, parallel_vacuum_process_safe_indexes(), parallel_vacuum_worker_delay_ns, ParallelWorkerNumber, pgstat_progress_parallel_incr_param(), pgstat_report_activity(), pgstat_report_query_id(), ErrorContextCallback::previous, PROC_IN_VACUUM, PROGRESS_VACUUM_DELAY_TIME, pstrdup(), PVShared::queryid, RelationGetNamespace, RelationGetRelationName, PVShared::relid, ParallelVacuumState::relname, ParallelVacuumState::relnamespace, PVShared::ring_nbuffers, RowExclusiveLock, ParallelVacuumState::shared, ShareUpdateExclusiveLock, shm_toc_lookup(), STATE_RUNNING, ParallelVacuumState::status, PGPROC::statusFlags, table_close(), table_open(), TidStoreAttach(), TidStoreDetach(), track_cost_delay_timing, vac_close_indexes(), vac_open_indexes(), VacuumActiveNWorkers, VacuumCostBalance, VacuumCostBalanceLocal, VacuumSharedCostBalance, and VacuumUpdateCosts().

◆ parallel_vacuum_reset_dead_items()

void parallel_vacuum_reset_dead_items ( ParallelVacuumState pvs)

Definition at line 475 of file vacuumparallel.c.

476{
477 VacDeadItemsInfo *dead_items_info = &(pvs->shared->dead_items_info);
478
479 /*
480 * Free the current tidstore and return allocated DSA segments to the
481 * operating system. Then we recreate the tidstore with the same max_bytes
482 * limitation we just used.
483 */
485 pvs->dead_items = TidStoreCreateShared(dead_items_info->max_bytes,
486 LWTRANCHE_PARALLEL_VACUUM_DSA);
487
488 /* Update the DSA pointer for dead_items to the new one */
491
492 /* Reset the counter */
493 dead_items_info->num_items = 0;
494}
int64 num_items
Definition: vacuum.h:300

References ParallelVacuumState::dead_items, PVShared::dead_items_dsa_handle, PVShared::dead_items_handle, PVShared::dead_items_info, dsa_get_handle(), VacDeadItemsInfo::max_bytes, VacDeadItemsInfo::num_items, ParallelVacuumState::shared, TidStoreCreateShared(), TidStoreDestroy(), TidStoreGetDSA(), and TidStoreGetHandle().

Referenced by dead_items_reset().

◆ std_typanalyze()

bool std_typanalyze ( VacAttrStats stats)

Definition at line 1890 of file analyze.c.

1891{
1892 Oid ltopr;
1893 Oid eqopr;
1894 StdAnalyzeData *mystats;
1895
1896 /* If the attstattarget column is negative, use the default value */
1897 if (stats->attstattarget < 0)
1899
1900 /* Look for default "<" and "=" operators for column's type */
1902 false, false, false,
1903 &ltopr, &eqopr, NULL,
1904 NULL);
1905
1906 /* Save the operator info for compute_stats routines */
1907 mystats = (StdAnalyzeData *) palloc(sizeof(StdAnalyzeData));
1908 mystats->eqopr = eqopr;
1909 mystats->eqfunc = OidIsValid(eqopr) ? get_opcode(eqopr) : InvalidOid;
1910 mystats->ltopr = ltopr;
1911 stats->extra_data = mystats;
1912
1913 /*
1914 * Determine which standard statistics algorithm to use
1915 */
1916 if (OidIsValid(eqopr) && OidIsValid(ltopr))
1917 {
1918 /* Seems to be a scalar datatype */
1920 /*--------------------
1921 * The following choice of minrows is based on the paper
1922 * "Random sampling for histogram construction: how much is enough?"
1923 * by Surajit Chaudhuri, Rajeev Motwani and Vivek Narasayya, in
1924 * Proceedings of ACM SIGMOD International Conference on Management
1925 * of Data, 1998, Pages 436-447. Their Corollary 1 to Theorem 5
1926 * says that for table size n, histogram size k, maximum relative
1927 * error in bin size f, and error probability gamma, the minimum
1928 * random sample size is
1929 * r = 4 * k * ln(2*n/gamma) / f^2
1930 * Taking f = 0.5, gamma = 0.01, n = 10^6 rows, we obtain
1931 * r = 305.82 * k
1932 * Note that because of the log function, the dependence on n is
1933 * quite weak; even at n = 10^12, a 300*k sample gives <= 0.66
1934 * bin size error with probability 0.99. So there's no real need to
1935 * scale for n, which is a good thing because we don't necessarily
1936 * know it at this point.
1937 *--------------------
1938 */
1939 stats->minrows = 300 * stats->attstattarget;
1940 }
1941 else if (OidIsValid(eqopr))
1942 {
1943 /* We can still recognize distinct values */
1945 /* Might as well use the same minrows as above */
1946 stats->minrows = 300 * stats->attstattarget;
1947 }
1948 else
1949 {
1950 /* Can't do much but the trivial stuff */
1952 /* Might as well use the same minrows as above */
1953 stats->minrows = 300 * stats->attstattarget;
1954 }
1955
1956 return true;
1957}
#define OidIsValid(objectId)
Definition: c.h:777
static void compute_scalar_stats(VacAttrStatsP stats, AnalyzeAttrFetchFunc fetchfunc, int samplerows, double totalrows)
Definition: analyze.c:2401
int default_statistics_target
Definition: analyze.c:70
static void compute_distinct_stats(VacAttrStatsP stats, AnalyzeAttrFetchFunc fetchfunc, int samplerows, double totalrows)
Definition: analyze.c:2058
static void compute_trivial_stats(VacAttrStatsP stats, AnalyzeAttrFetchFunc fetchfunc, int samplerows, double totalrows)
Definition: analyze.c:1968
RegProcedure get_opcode(Oid opno)
Definition: lsyscache.c:1452
void * palloc(Size size)
Definition: mcxt.c:1365
void get_sort_group_operators(Oid argtype, bool needLT, bool needEQ, bool needGT, Oid *ltOpr, Oid *eqOpr, Oid *gtOpr, bool *isHashable)
Definition: parse_oper.c:181
unsigned int Oid
Definition: postgres_ext.h:32
Oid attrtypid
Definition: vacuum.h:126
int minrows
Definition: vacuum.h:137
int attstattarget
Definition: vacuum.h:125
void * extra_data
Definition: vacuum.h:138
AnalyzeAttrComputeStatsFunc compute_stats
Definition: vacuum.h:136

References VacAttrStats::attrtypid, VacAttrStats::attstattarget, compute_distinct_stats(), compute_scalar_stats(), VacAttrStats::compute_stats, compute_trivial_stats(), default_statistics_target, StdAnalyzeData::eqfunc, StdAnalyzeData::eqopr, VacAttrStats::extra_data, get_opcode(), get_sort_group_operators(), InvalidOid, StdAnalyzeData::ltopr, VacAttrStats::minrows, OidIsValid, and palloc().

Referenced by array_typanalyze(), examine_attribute(), and examine_expression().

◆ vac_bulkdel_one_index()

IndexBulkDeleteResult * vac_bulkdel_one_index ( IndexVacuumInfo ivinfo,
IndexBulkDeleteResult istat,
TidStore dead_items,
VacDeadItemsInfo dead_items_info 
)

Definition at line 2631 of file vacuum.c.

2633{
2634 /* Do bulk deletion */
2635 istat = index_bulk_delete(ivinfo, istat, vac_tid_reaped,
2636 dead_items);
2637
2638 ereport(ivinfo->message_level,
2639 (errmsg("scanned index \"%s\" to remove %" PRId64 " row versions",
2641 dead_items_info->num_items)));
2642
2643 return istat;
2644}
IndexBulkDeleteResult * index_bulk_delete(IndexVacuumInfo *info, IndexBulkDeleteResult *istat, IndexBulkDeleteCallback callback, void *callback_state)
Definition: indexam.c:805
Relation index
Definition: genam.h:73
int message_level
Definition: genam.h:78
static bool vac_tid_reaped(ItemPointer itemptr, void *state)
Definition: vacuum.c:2678

References ereport, errmsg(), IndexVacuumInfo::index, index_bulk_delete(), IndexVacuumInfo::message_level, VacDeadItemsInfo::num_items, RelationGetRelationName, and vac_tid_reaped().

Referenced by lazy_vacuum_one_index(), and parallel_vacuum_process_one_index().

◆ vac_cleanup_one_index()

IndexBulkDeleteResult * vac_cleanup_one_index ( IndexVacuumInfo ivinfo,
IndexBulkDeleteResult istat 
)

Definition at line 2652 of file vacuum.c.

2653{
2654 istat = index_vacuum_cleanup(ivinfo, istat);
2655
2656 if (istat)
2657 ereport(ivinfo->message_level,
2658 (errmsg("index \"%s\" now contains %.0f row versions in %u pages",
2660 istat->num_index_tuples,
2661 istat->num_pages),
2662 errdetail("%.0f index row versions were removed.\n"
2663 "%u index pages were newly deleted.\n"
2664 "%u index pages are currently deleted, of which %u are currently reusable.",
2665 istat->tuples_removed,
2666 istat->pages_newly_deleted,
2667 istat->pages_deleted, istat->pages_free)));
2668
2669 return istat;
2670}
int errdetail(const char *fmt,...)
Definition: elog.c:1216
IndexBulkDeleteResult * index_vacuum_cleanup(IndexVacuumInfo *info, IndexBulkDeleteResult *istat)
Definition: indexam.c:826
BlockNumber pages_deleted
Definition: genam.h:109
BlockNumber pages_newly_deleted
Definition: genam.h:108
BlockNumber pages_free
Definition: genam.h:110
BlockNumber num_pages
Definition: genam.h:104
double tuples_removed
Definition: genam.h:107
double num_index_tuples
Definition: genam.h:106

References ereport, errdetail(), errmsg(), IndexVacuumInfo::index, index_vacuum_cleanup(), IndexVacuumInfo::message_level, IndexBulkDeleteResult::num_index_tuples, IndexBulkDeleteResult::num_pages, IndexBulkDeleteResult::pages_deleted, IndexBulkDeleteResult::pages_free, IndexBulkDeleteResult::pages_newly_deleted, RelationGetRelationName, and IndexBulkDeleteResult::tuples_removed.

Referenced by lazy_cleanup_one_index(), and parallel_vacuum_process_one_index().

◆ vac_close_indexes()

void vac_close_indexes ( int  nindexes,
Relation Irel,
LOCKMODE  lockmode 
)

Definition at line 2403 of file vacuum.c.

2404{
2405 if (Irel == NULL)
2406 return;
2407
2408 while (nindexes--)
2409 {
2410 Relation ind = Irel[nindexes];
2411
2412 index_close(ind, lockmode);
2413 }
2414 pfree(Irel);
2415}
void index_close(Relation relation, LOCKMODE lockmode)
Definition: indexam.c:177

References index_close(), and pfree().

Referenced by do_analyze_rel(), heap_vacuum_rel(), and parallel_vacuum_main().

◆ vac_estimate_reltuples()

double vac_estimate_reltuples ( Relation  relation,
BlockNumber  total_pages,
BlockNumber  scanned_pages,
double  scanned_tuples 
)

Definition at line 1328 of file vacuum.c.

1332{
1333 BlockNumber old_rel_pages = relation->rd_rel->relpages;
1334 double old_rel_tuples = relation->rd_rel->reltuples;
1335 double old_density;
1336 double unscanned_pages;
1337 double total_tuples;
1338
1339 /* If we did scan the whole table, just use the count as-is */
1340 if (scanned_pages >= total_pages)
1341 return scanned_tuples;
1342
1343 /*
1344 * When successive VACUUM commands scan the same few pages again and
1345 * again, without anything from the table really changing, there is a risk
1346 * that our beliefs about tuple density will gradually become distorted.
1347 * This might be caused by vacuumlazy.c implementation details, such as
1348 * its tendency to always scan the last heap page. Handle that here.
1349 *
1350 * If the relation is _exactly_ the same size according to the existing
1351 * pg_class entry, and only a few of its pages (less than 2%) were
1352 * scanned, keep the existing value of reltuples. Also keep the existing
1353 * value when only a subset of rel's pages <= a single page were scanned.
1354 *
1355 * (Note: we might be returning -1 here.)
1356 */
1357 if (old_rel_pages == total_pages &&
1358 scanned_pages < (double) total_pages * 0.02)
1359 return old_rel_tuples;
1360 if (scanned_pages <= 1)
1361 return old_rel_tuples;
1362
1363 /*
1364 * If old density is unknown, we can't do much except scale up
1365 * scanned_tuples to match total_pages.
1366 */
1367 if (old_rel_tuples < 0 || old_rel_pages == 0)
1368 return floor((scanned_tuples / scanned_pages) * total_pages + 0.5);
1369
1370 /*
1371 * Okay, we've covered the corner cases. The normal calculation is to
1372 * convert the old measurement to a density (tuples per page), then
1373 * estimate the number of tuples in the unscanned pages using that figure,
1374 * and finally add on the number of tuples in the scanned pages.
1375 */
1376 old_density = old_rel_tuples / old_rel_pages;
1377 unscanned_pages = (double) total_pages - (double) scanned_pages;
1378 total_tuples = old_density * unscanned_pages + scanned_tuples;
1379 return floor(total_tuples + 0.5);
1380}

References RelationData::rd_rel.

Referenced by lazy_scan_heap(), and statapprox_heap().

◆ vac_open_indexes()

void vac_open_indexes ( Relation  relation,
LOCKMODE  lockmode,
int *  nindexes,
Relation **  Irel 
)

Definition at line 2360 of file vacuum.c.

2362{
2363 List *indexoidlist;
2364 ListCell *indexoidscan;
2365 int i;
2366
2367 Assert(lockmode != NoLock);
2368
2369 indexoidlist = RelationGetIndexList(relation);
2370
2371 /* allocate enough memory for all indexes */
2372 i = list_length(indexoidlist);
2373
2374 if (i > 0)
2375 *Irel = (Relation *) palloc(i * sizeof(Relation));
2376 else
2377 *Irel = NULL;
2378
2379 /* collect just the ready indexes */
2380 i = 0;
2381 foreach(indexoidscan, indexoidlist)
2382 {
2383 Oid indexoid = lfirst_oid(indexoidscan);
2384 Relation indrel;
2385
2386 indrel = index_open(indexoid, lockmode);
2387 if (indrel->rd_index->indisready)
2388 (*Irel)[i++] = indrel;
2389 else
2390 index_close(indrel, lockmode);
2391 }
2392
2393 *nindexes = i;
2394
2395 list_free(indexoidlist);
2396}
Relation index_open(Oid relationId, LOCKMODE lockmode)
Definition: indexam.c:133
void list_free(List *list)
Definition: list.c:1546
static int list_length(const List *l)
Definition: pg_list.h:152
#define lfirst_oid(lc)
Definition: pg_list.h:174
List * RelationGetIndexList(Relation relation)
Definition: relcache.c:4836
Definition: pg_list.h:54
Form_pg_index rd_index
Definition: rel.h:192

References Assert(), i, index_close(), index_open(), lfirst_oid, list_free(), list_length(), NoLock, palloc(), RelationData::rd_index, and RelationGetIndexList().

Referenced by do_analyze_rel(), heap_vacuum_rel(), and parallel_vacuum_main().

◆ vac_update_datfrozenxid()

void vac_update_datfrozenxid ( void  )

Definition at line 1606 of file vacuum.c.

1607{
1608 HeapTuple tuple;
1609 Form_pg_database dbform;
1610 Relation relation;
1611 SysScanDesc scan;
1612 HeapTuple classTup;
1613 TransactionId newFrozenXid;
1614 MultiXactId newMinMulti;
1615 TransactionId lastSaneFrozenXid;
1616 MultiXactId lastSaneMinMulti;
1617 bool bogus = false;
1618 bool dirty = false;
1619 ScanKeyData key[1];
1620 void *inplace_state;
1621
1622 /*
1623 * Restrict this task to one backend per database. This avoids race
1624 * conditions that would move datfrozenxid or datminmxid backward. It
1625 * avoids calling vac_truncate_clog() with a datfrozenxid preceding a
1626 * datfrozenxid passed to an earlier vac_truncate_clog() call.
1627 */
1629
1630 /*
1631 * Initialize the "min" calculation with
1632 * GetOldestNonRemovableTransactionId(), which is a reasonable
1633 * approximation to the minimum relfrozenxid for not-yet-committed
1634 * pg_class entries for new tables; see AddNewRelationTuple(). So we
1635 * cannot produce a wrong minimum by starting with this.
1636 */
1637 newFrozenXid = GetOldestNonRemovableTransactionId(NULL);
1638
1639 /*
1640 * Similarly, initialize the MultiXact "min" with the value that would be
1641 * used on pg_class for new tables. See AddNewRelationTuple().
1642 */
1643 newMinMulti = GetOldestMultiXactId();
1644
1645 /*
1646 * Identify the latest relfrozenxid and relminmxid values that we could
1647 * validly see during the scan. These are conservative values, but it's
1648 * not really worth trying to be more exact.
1649 */
1650 lastSaneFrozenXid = ReadNextTransactionId();
1651 lastSaneMinMulti = ReadNextMultiXactId();
1652
1653 /*
1654 * We must seqscan pg_class to find the minimum Xid, because there is no
1655 * index that can help us here.
1656 *
1657 * See vac_truncate_clog() for the race condition to prevent.
1658 */
1659 relation = table_open(RelationRelationId, AccessShareLock);
1660
1661 scan = systable_beginscan(relation, InvalidOid, false,
1662 NULL, 0, NULL);
1663
1664 while ((classTup = systable_getnext(scan)) != NULL)
1665 {
1666 volatile FormData_pg_class *classForm = (Form_pg_class) GETSTRUCT(classTup);
1667 TransactionId relfrozenxid = classForm->relfrozenxid;
1668 TransactionId relminmxid = classForm->relminmxid;
1669
1670 /*
1671 * Only consider relations able to hold unfrozen XIDs (anything else
1672 * should have InvalidTransactionId in relfrozenxid anyway).
1673 */
1674 if (classForm->relkind != RELKIND_RELATION &&
1675 classForm->relkind != RELKIND_MATVIEW &&
1676 classForm->relkind != RELKIND_TOASTVALUE)
1677 {
1678 Assert(!TransactionIdIsValid(relfrozenxid));
1679 Assert(!MultiXactIdIsValid(relminmxid));
1680 continue;
1681 }
1682
1683 /*
1684 * Some table AMs might not need per-relation xid / multixid horizons.
1685 * It therefore seems reasonable to allow relfrozenxid and relminmxid
1686 * to not be set (i.e. set to their respective Invalid*Id)
1687 * independently. Thus validate and compute horizon for each only if
1688 * set.
1689 *
1690 * If things are working properly, no relation should have a
1691 * relfrozenxid or relminmxid that is "in the future". However, such
1692 * cases have been known to arise due to bugs in pg_upgrade. If we
1693 * see any entries that are "in the future", chicken out and don't do
1694 * anything. This ensures we won't truncate clog & multixact SLRUs
1695 * before those relations have been scanned and cleaned up.
1696 */
1697
1698 if (TransactionIdIsValid(relfrozenxid))
1699 {
1700 Assert(TransactionIdIsNormal(relfrozenxid));
1701
1702 /* check for values in the future */
1703 if (TransactionIdPrecedes(lastSaneFrozenXid, relfrozenxid))
1704 {
1705 bogus = true;
1706 break;
1707 }
1708
1709 /* determine new horizon */
1710 if (TransactionIdPrecedes(relfrozenxid, newFrozenXid))
1711 newFrozenXid = relfrozenxid;
1712 }
1713
1714 if (MultiXactIdIsValid(relminmxid))
1715 {
1716 /* check for values in the future */
1717 if (MultiXactIdPrecedes(lastSaneMinMulti, relminmxid))
1718 {
1719 bogus = true;
1720 break;
1721 }
1722
1723 /* determine new horizon */
1724 if (MultiXactIdPrecedes(relminmxid, newMinMulti))
1725 newMinMulti = relminmxid;
1726 }
1727 }
1728
1729 /* we're done with pg_class */
1730 systable_endscan(scan);
1731 table_close(relation, AccessShareLock);
1732
1733 /* chicken out if bogus data found */
1734 if (bogus)
1735 return;
1736
1737 Assert(TransactionIdIsNormal(newFrozenXid));
1738 Assert(MultiXactIdIsValid(newMinMulti));
1739
1740 /* Now fetch the pg_database tuple we need to update. */
1741 relation = table_open(DatabaseRelationId, RowExclusiveLock);
1742
1743 /*
1744 * Fetch a copy of the tuple to scribble on. We could check the syscache
1745 * tuple first. If that concluded !dirty, we'd avoid waiting on
1746 * concurrent heap_update() and would avoid exclusive-locking the buffer.
1747 * For now, don't optimize that.
1748 */
1749 ScanKeyInit(&key[0],
1750 Anum_pg_database_oid,
1751 BTEqualStrategyNumber, F_OIDEQ,
1753
1754 systable_inplace_update_begin(relation, DatabaseOidIndexId, true,
1755 NULL, 1, key, &tuple, &inplace_state);
1756
1757 if (!HeapTupleIsValid(tuple))
1758 elog(ERROR, "could not find tuple for database %u", MyDatabaseId);
1759
1760 dbform = (Form_pg_database) GETSTRUCT(tuple);
1761
1762 /*
1763 * As in vac_update_relstats(), we ordinarily don't want to let
1764 * datfrozenxid go backward; but if it's "in the future" then it must be
1765 * corrupt and it seems best to overwrite it.
1766 */
1767 if (dbform->datfrozenxid != newFrozenXid &&
1768 (TransactionIdPrecedes(dbform->datfrozenxid, newFrozenXid) ||
1769 TransactionIdPrecedes(lastSaneFrozenXid, dbform->datfrozenxid)))
1770 {
1771 dbform->datfrozenxid = newFrozenXid;
1772 dirty = true;
1773 }
1774 else
1775 newFrozenXid = dbform->datfrozenxid;
1776
1777 /* Ditto for datminmxid */
1778 if (dbform->datminmxid != newMinMulti &&
1779 (MultiXactIdPrecedes(dbform->datminmxid, newMinMulti) ||
1780 MultiXactIdPrecedes(lastSaneMinMulti, dbform->datminmxid)))
1781 {
1782 dbform->datminmxid = newMinMulti;
1783 dirty = true;
1784 }
1785 else
1786 newMinMulti = dbform->datminmxid;
1787
1788 if (dirty)
1789 systable_inplace_update_finish(inplace_state, tuple);
1790 else
1791 systable_inplace_update_cancel(inplace_state);
1792
1793 heap_freetuple(tuple);
1794 table_close(relation, RowExclusiveLock);
1795
1796 /*
1797 * If we were able to advance datfrozenxid or datminmxid, see if we can
1798 * truncate pg_xact and/or pg_multixact. Also do it if the shared
1799 * XID-wrap-limit info is stale, since this action will update that too.
1800 */
1801 if (dirty || ForceTransactionIdLimitUpdate())
1802 vac_truncate_clog(newFrozenXid, newMinMulti,
1803 lastSaneFrozenXid, lastSaneMinMulti);
1804}
TransactionId MultiXactId
Definition: c.h:670
uint32 TransactionId
Definition: c.h:660
void systable_endscan(SysScanDesc sysscan)
Definition: genam.c:603
void systable_inplace_update_cancel(void *state)
Definition: genam.c:902
void systable_inplace_update_begin(Relation relation, Oid indexId, bool indexOK, Snapshot snapshot, int nkeys, const ScanKeyData *key, HeapTuple *oldtupcopy, void **state)
Definition: genam.c:807
void systable_inplace_update_finish(void *state, HeapTuple tuple)
Definition: genam.c:883
HeapTuple systable_getnext(SysScanDesc sysscan)
Definition: genam.c:514
SysScanDesc systable_beginscan(Relation heapRelation, Oid indexId, bool indexOK, Snapshot snapshot, int nkeys, ScanKey key)
Definition: genam.c:388
Oid MyDatabaseId
Definition: globals.c:94
void heap_freetuple(HeapTuple htup)
Definition: heaptuple.c:1435
#define HeapTupleIsValid(tuple)
Definition: htup.h:78
static void * GETSTRUCT(const HeapTupleData *tuple)
Definition: htup_details.h:728
void LockDatabaseFrozenIds(LOCKMODE lockmode)
Definition: lmgr.c:491
#define AccessShareLock
Definition: lockdefs.h:36
#define ExclusiveLock
Definition: lockdefs.h:42
bool MultiXactIdPrecedes(MultiXactId multi1, MultiXactId multi2)
Definition: multixact.c:3269
MultiXactId GetOldestMultiXactId(void)
Definition: multixact.c:2598
MultiXactId ReadNextMultiXactId(void)
Definition: multixact.c:755
#define MultiXactIdIsValid(multi)
Definition: multixact.h:29
FormData_pg_class * Form_pg_class
Definition: pg_class.h:156
FormData_pg_class
Definition: pg_class.h:145
FormData_pg_database * Form_pg_database
Definition: pg_database.h:96
static Datum ObjectIdGetDatum(Oid X)
Definition: postgres.h:262
TransactionId GetOldestNonRemovableTransactionId(Relation rel)
Definition: procarray.c:1953
void ScanKeyInit(ScanKey entry, AttrNumber attributeNumber, StrategyNumber strategy, RegProcedure procedure, Datum argument)
Definition: scankey.c:76
#define BTEqualStrategyNumber
Definition: stratnum.h:31
static TransactionId ReadNextTransactionId(void)
Definition: transam.h:377
#define TransactionIdIsValid(xid)
Definition: transam.h:41
#define TransactionIdIsNormal(xid)
Definition: transam.h:42
static bool TransactionIdPrecedes(TransactionId id1, TransactionId id2)
Definition: transam.h:263
static void vac_truncate_clog(TransactionId frozenXID, MultiXactId minMulti, TransactionId lastSaneFrozenXid, MultiXactId lastSaneMinMulti)
Definition: vacuum.c:1825
bool ForceTransactionIdLimitUpdate(void)
Definition: varsup.c:517

References AccessShareLock, Assert(), BTEqualStrategyNumber, elog, ERROR, ExclusiveLock, ForceTransactionIdLimitUpdate(), FormData_pg_class, GetOldestMultiXactId(), GetOldestNonRemovableTransactionId(), GETSTRUCT(), heap_freetuple(), HeapTupleIsValid, InvalidOid, sort-test::key, LockDatabaseFrozenIds(), MultiXactIdIsValid, MultiXactIdPrecedes(), MyDatabaseId, ObjectIdGetDatum(), ReadNextMultiXactId(), ReadNextTransactionId(), RowExclusiveLock, ScanKeyInit(), systable_beginscan(), systable_endscan(), systable_getnext(), systable_inplace_update_begin(), systable_inplace_update_cancel(), systable_inplace_update_finish(), table_close(), table_open(), TransactionIdIsNormal, TransactionIdIsValid, TransactionIdPrecedes(), and vac_truncate_clog().

Referenced by do_autovacuum(), and vacuum().

◆ vac_update_relstats()

void vac_update_relstats ( Relation  relation,
BlockNumber  num_pages,
double  num_tuples,
BlockNumber  num_all_visible_pages,
BlockNumber  num_all_frozen_pages,
bool  hasindex,
TransactionId  frozenxid,
MultiXactId  minmulti,
bool *  frozenxid_updated,
bool *  minmulti_updated,
bool  in_outer_xact 
)

Definition at line 1424 of file vacuum.c.

1432{
1433 Oid relid = RelationGetRelid(relation);
1434 Relation rd;
1435 ScanKeyData key[1];
1436 HeapTuple ctup;
1437 void *inplace_state;
1438 Form_pg_class pgcform;
1439 bool dirty,
1440 futurexid,
1441 futuremxid;
1442 TransactionId oldfrozenxid;
1443 MultiXactId oldminmulti;
1444
1445 rd = table_open(RelationRelationId, RowExclusiveLock);
1446
1447 /* Fetch a copy of the tuple to scribble on */
1448 ScanKeyInit(&key[0],
1449 Anum_pg_class_oid,
1450 BTEqualStrategyNumber, F_OIDEQ,
1451 ObjectIdGetDatum(relid));
1452 systable_inplace_update_begin(rd, ClassOidIndexId, true,
1453 NULL, 1, key, &ctup, &inplace_state);
1454 if (!HeapTupleIsValid(ctup))
1455 elog(ERROR, "pg_class entry for relid %u vanished during vacuuming",
1456 relid);
1457 pgcform = (Form_pg_class) GETSTRUCT(ctup);
1458
1459 /* Apply statistical updates, if any, to copied tuple */
1460
1461 dirty = false;
1462 if (pgcform->relpages != (int32) num_pages)
1463 {
1464 pgcform->relpages = (int32) num_pages;
1465 dirty = true;
1466 }
1467 if (pgcform->reltuples != (float4) num_tuples)
1468 {
1469 pgcform->reltuples = (float4) num_tuples;
1470 dirty = true;
1471 }
1472 if (pgcform->relallvisible != (int32) num_all_visible_pages)
1473 {
1474 pgcform->relallvisible = (int32) num_all_visible_pages;
1475 dirty = true;
1476 }
1477 if (pgcform->relallfrozen != (int32) num_all_frozen_pages)
1478 {
1479 pgcform->relallfrozen = (int32) num_all_frozen_pages;
1480 dirty = true;
1481 }
1482
1483 /* Apply DDL updates, but not inside an outer transaction (see above) */
1484
1485 if (!in_outer_xact)
1486 {
1487 /*
1488 * If we didn't find any indexes, reset relhasindex.
1489 */
1490 if (pgcform->relhasindex && !hasindex)
1491 {
1492 pgcform->relhasindex = false;
1493 dirty = true;
1494 }
1495
1496 /* We also clear relhasrules and relhastriggers if needed */
1497 if (pgcform->relhasrules && relation->rd_rules == NULL)
1498 {
1499 pgcform->relhasrules = false;
1500 dirty = true;
1501 }
1502 if (pgcform->relhastriggers && relation->trigdesc == NULL)
1503 {
1504 pgcform->relhastriggers = false;
1505 dirty = true;
1506 }
1507 }
1508
1509 /*
1510 * Update relfrozenxid, unless caller passed InvalidTransactionId
1511 * indicating it has no new data.
1512 *
1513 * Ordinarily, we don't let relfrozenxid go backwards. However, if the
1514 * stored relfrozenxid is "in the future" then it seems best to assume
1515 * it's corrupt, and overwrite with the oldest remaining XID in the table.
1516 * This should match vac_update_datfrozenxid() concerning what we consider
1517 * to be "in the future".
1518 */
1519 oldfrozenxid = pgcform->relfrozenxid;
1520 futurexid = false;
1521 if (frozenxid_updated)
1522 *frozenxid_updated = false;
1523 if (TransactionIdIsNormal(frozenxid) && oldfrozenxid != frozenxid)
1524 {
1525 bool update = false;
1526
1527 if (TransactionIdPrecedes(oldfrozenxid, frozenxid))
1528 update = true;
1529 else if (TransactionIdPrecedes(ReadNextTransactionId(), oldfrozenxid))
1530 futurexid = update = true;
1531
1532 if (update)
1533 {
1534 pgcform->relfrozenxid = frozenxid;
1535 dirty = true;
1536 if (frozenxid_updated)
1537 *frozenxid_updated = true;
1538 }
1539 }
1540
1541 /* Similarly for relminmxid */
1542 oldminmulti = pgcform->relminmxid;
1543 futuremxid = false;
1544 if (minmulti_updated)
1545 *minmulti_updated = false;
1546 if (MultiXactIdIsValid(minmulti) && oldminmulti != minmulti)
1547 {
1548 bool update = false;
1549
1550 if (MultiXactIdPrecedes(oldminmulti, minmulti))
1551 update = true;
1552 else if (MultiXactIdPrecedes(ReadNextMultiXactId(), oldminmulti))
1553 futuremxid = update = true;
1554
1555 if (update)
1556 {
1557 pgcform->relminmxid = minmulti;
1558 dirty = true;
1559 if (minmulti_updated)
1560 *minmulti_updated = true;
1561 }
1562 }
1563
1564 /* If anything changed, write out the tuple. */
1565 if (dirty)
1566 systable_inplace_update_finish(inplace_state, ctup);
1567 else
1568 systable_inplace_update_cancel(inplace_state);
1569
1571
1572 if (futurexid)
1575 errmsg_internal("overwrote invalid relfrozenxid value %u with new value %u for table \"%s\"",
1576 oldfrozenxid, frozenxid,
1577 RelationGetRelationName(relation))));
1578 if (futuremxid)
1581 errmsg_internal("overwrote invalid relminmxid value %u with new value %u for table \"%s\"",
1582 oldminmulti, minmulti,
1583 RelationGetRelationName(relation))));
1584}
int32_t int32
Definition: c.h:537
float float4
Definition: c.h:637
int errmsg_internal(const char *fmt,...)
Definition: elog.c:1170
#define ERRCODE_DATA_CORRUPTED
Definition: pg_basebackup.c:42
TriggerDesc * trigdesc
Definition: rel.h:117
RuleLock * rd_rules
Definition: rel.h:115

References BTEqualStrategyNumber, elog, ereport, errcode(), ERRCODE_DATA_CORRUPTED, errmsg_internal(), ERROR, GETSTRUCT(), HeapTupleIsValid, sort-test::key, MultiXactIdIsValid, MultiXactIdPrecedes(), ObjectIdGetDatum(), RelationData::rd_rules, ReadNextMultiXactId(), ReadNextTransactionId(), RelationGetRelationName, RelationGetRelid, RowExclusiveLock, ScanKeyInit(), systable_inplace_update_begin(), systable_inplace_update_cancel(), systable_inplace_update_finish(), table_close(), table_open(), TransactionIdIsNormal, TransactionIdPrecedes(), RelationData::trigdesc, and WARNING.

Referenced by do_analyze_rel(), heap_vacuum_rel(), and update_relstats_all_indexes().

◆ vacuum()

void vacuum ( List relations,
const VacuumParams  params,
BufferAccessStrategy  bstrategy,
MemoryContext  vac_context,
bool  isTopLevel 
)

Definition at line 492 of file vacuum.c.

494{
495 static bool in_vacuum = false;
496
497 const char *stmttype;
498 volatile bool in_outer_xact,
499 use_own_xacts;
500
501 stmttype = (params.options & VACOPT_VACUUM) ? "VACUUM" : "ANALYZE";
502
503 /*
504 * We cannot run VACUUM inside a user transaction block; if we were inside
505 * a transaction, then our commit- and start-transaction-command calls
506 * would not have the intended effect! There are numerous other subtle
507 * dependencies on this, too.
508 *
509 * ANALYZE (without VACUUM) can run either way.
510 */
511 if (params.options & VACOPT_VACUUM)
512 {
513 PreventInTransactionBlock(isTopLevel, stmttype);
514 in_outer_xact = false;
515 }
516 else
517 in_outer_xact = IsInTransactionBlock(isTopLevel);
518
519 /*
520 * Check for and disallow recursive calls. This could happen when VACUUM
521 * FULL or ANALYZE calls a hostile index expression that itself calls
522 * ANALYZE.
523 */
524 if (in_vacuum)
526 (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
527 errmsg("%s cannot be executed from VACUUM or ANALYZE",
528 stmttype)));
529
530 /*
531 * Build list of relation(s) to process, putting any new data in
532 * vac_context for safekeeping.
533 */
535 {
536 /* We don't process any tables in this case */
537 Assert(relations == NIL);
538 }
539 else if (relations != NIL)
540 {
541 List *newrels = NIL;
542 ListCell *lc;
543
544 foreach(lc, relations)
545 {
547 List *sublist;
548 MemoryContext old_context;
549
550 sublist = expand_vacuum_rel(vrel, vac_context, params.options);
551 old_context = MemoryContextSwitchTo(vac_context);
552 newrels = list_concat(newrels, sublist);
553 MemoryContextSwitchTo(old_context);
554 }
555 relations = newrels;
556 }
557 else
558 relations = get_all_vacuum_rels(vac_context, params.options);
559
560 /*
561 * Decide whether we need to start/commit our own transactions.
562 *
563 * For VACUUM (with or without ANALYZE): always do so, so that we can
564 * release locks as soon as possible. (We could possibly use the outer
565 * transaction for a one-table VACUUM, but handling TOAST tables would be
566 * problematic.)
567 *
568 * For ANALYZE (no VACUUM): if inside a transaction block, we cannot
569 * start/commit our own transactions. Also, there's no need to do so if
570 * only processing one relation. For multiple relations when not within a
571 * transaction block, and also in an autovacuum worker, use own
572 * transactions so we can release locks sooner.
573 */
574 if (params.options & VACOPT_VACUUM)
575 use_own_xacts = true;
576 else
577 {
578 Assert(params.options & VACOPT_ANALYZE);
580 use_own_xacts = true;
581 else if (in_outer_xact)
582 use_own_xacts = false;
583 else if (list_length(relations) > 1)
584 use_own_xacts = true;
585 else
586 use_own_xacts = false;
587 }
588
589 /*
590 * vacuum_rel expects to be entered with no transaction active; it will
591 * start and commit its own transaction. But we are called by an SQL
592 * command, and so we are executing inside a transaction already. We
593 * commit the transaction started in PostgresMain() here, and start
594 * another one before exiting to match the commit waiting for us back in
595 * PostgresMain().
596 */
597 if (use_own_xacts)
598 {
599 Assert(!in_outer_xact);
600
601 /* ActiveSnapshot is not set by autovacuum */
602 if (ActiveSnapshotSet())
604
605 /* matches the StartTransaction in PostgresMain() */
607 }
608
609 /* Turn vacuum cost accounting on or off, and set/clear in_vacuum */
610 PG_TRY();
611 {
612 ListCell *cur;
613
614 in_vacuum = true;
615 VacuumFailsafeActive = false;
621
622 /*
623 * Loop to process each selected relation.
624 */
625 foreach(cur, relations)
626 {
628
629 if (params.options & VACOPT_VACUUM)
630 {
631 if (!vacuum_rel(vrel->oid, vrel->relation, params, bstrategy))
632 continue;
633 }
634
635 if (params.options & VACOPT_ANALYZE)
636 {
637 /*
638 * If using separate xacts, start one for analyze. Otherwise,
639 * we can use the outer transaction.
640 */
641 if (use_own_xacts)
642 {
644 /* functions in indexes may want a snapshot set */
646 }
647
648 analyze_rel(vrel->oid, vrel->relation, params,
649 vrel->va_cols, in_outer_xact, bstrategy);
650
651 if (use_own_xacts)
652 {
654 /* standard_ProcessUtility() does CCI if !use_own_xacts */
657 }
658 else
659 {
660 /*
661 * If we're not using separate xacts, better separate the
662 * ANALYZE actions with CCIs. This avoids trouble if user
663 * says "ANALYZE t, t".
664 */
666 }
667 }
668
669 /*
670 * Ensure VacuumFailsafeActive has been reset before vacuuming the
671 * next relation.
672 */
673 VacuumFailsafeActive = false;
674 }
675 }
676 PG_FINALLY();
677 {
678 in_vacuum = false;
679 VacuumCostActive = false;
680 VacuumFailsafeActive = false;
682 }
683 PG_END_TRY();
684
685 /*
686 * Finish up processing.
687 */
688 if (use_own_xacts)
689 {
690 /* here, we are not in a transaction */
691
692 /*
693 * This matches the CommitTransaction waiting for us in
694 * PostgresMain().
695 */
697 }
698
699 if ((params.options & VACOPT_VACUUM) &&
701 {
702 /*
703 * Update pg_database.datfrozenxid, and truncate pg_xact if possible.
704 */
706 }
707
708}
void analyze_rel(Oid relid, RangeVar *relation, const VacuumParams params, List *va_cols, bool in_outer_xact, BufferAccessStrategy bstrategy)
Definition: analyze.c:108
struct cursor * cur
Definition: ecpg.c:29
#define PG_TRY(...)
Definition: elog.h:372
#define PG_END_TRY(...)
Definition: elog.h:397
#define PG_FINALLY(...)
Definition: elog.h:389
bool VacuumCostActive
Definition: globals.c:158
List * list_concat(List *list1, const List *list2)
Definition: list.c:561
#define AmAutoVacuumWorkerProcess()
Definition: miscadmin.h:383
Snapshot GetTransactionSnapshot(void)
Definition: snapmgr.c:272
void PushActiveSnapshot(Snapshot snapshot)
Definition: snapmgr.c:682
bool ActiveSnapshotSet(void)
Definition: snapmgr.c:812
void PopActiveSnapshot(void)
Definition: snapmgr.c:775
RangeVar * relation
Definition: parsenodes.h:3991
static List * expand_vacuum_rel(VacuumRelation *vrel, MemoryContext vac_context, int options)
Definition: vacuum.c:881
static List * get_all_vacuum_rels(MemoryContext vac_context, int options)
Definition: vacuum.c:1036
void vac_update_datfrozenxid(void)
Definition: vacuum.c:1606
bool VacuumFailsafeActive
Definition: vacuum.c:110
static bool vacuum_rel(Oid relid, RangeVar *relation, VacuumParams params, BufferAccessStrategy bstrategy)
Definition: vacuum.c:2000
bool IsInTransactionBlock(bool isTopLevel)
Definition: xact.c:3787
void CommandCounterIncrement(void)
Definition: xact.c:1101
void PreventInTransactionBlock(bool isTopLevel, const char *stmtType)
Definition: xact.c:3666
void StartTransactionCommand(void)
Definition: xact.c:3077
void CommitTransactionCommand(void)
Definition: xact.c:3175

References ActiveSnapshotSet(), AmAutoVacuumWorkerProcess, analyze_rel(), Assert(), CommandCounterIncrement(), CommitTransactionCommand(), cur, ereport, errcode(), errmsg(), ERROR, expand_vacuum_rel(), get_all_vacuum_rels(), GetTransactionSnapshot(), IsInTransactionBlock(), lfirst_node, list_concat(), list_length(), MemoryContextSwitchTo(), NIL, VacuumRelation::oid, VacuumParams::options, PG_END_TRY, PG_FINALLY, PG_TRY, PopActiveSnapshot(), PreventInTransactionBlock(), PushActiveSnapshot(), VacuumRelation::relation, StartTransactionCommand(), VacuumRelation::va_cols, vac_update_datfrozenxid(), VACOPT_ANALYZE, VACOPT_ONLY_DATABASE_STATS, VACOPT_SKIP_DATABASE_STATS, VACOPT_VACUUM, vacuum_rel(), VacuumActiveNWorkers, VacuumCostActive, VacuumCostBalance, VacuumCostBalanceLocal, VacuumFailsafeActive, VacuumSharedCostBalance, and VacuumUpdateCosts().

Referenced by autovacuum_do_vac_analyze(), ExecVacuum(), parallel_vacuum_index_is_parallel_safe(), and parallel_vacuum_process_all_indexes().

◆ vacuum_delay_point()

void vacuum_delay_point ( bool  is_analyze)

Definition at line 2424 of file vacuum.c.

2425{
2426 double msec = 0;
2427
2428 /* Always check for interrupts */
2430
2431 if (InterruptPending ||
2433 return;
2434
2435 /*
2436 * Autovacuum workers should reload the configuration file if requested.
2437 * This allows changes to [autovacuum_]vacuum_cost_limit and
2438 * [autovacuum_]vacuum_cost_delay to take effect while a table is being
2439 * vacuumed or analyzed.
2440 */
2442 {
2443 ConfigReloadPending = false;
2446 }
2447
2448 /*
2449 * If we disabled cost-based delays after reloading the config file,
2450 * return.
2451 */
2452 if (!VacuumCostActive)
2453 return;
2454
2455 /*
2456 * For parallel vacuum, the delay is computed based on the shared cost
2457 * balance. See compute_parallel_delay.
2458 */
2459 if (VacuumSharedCostBalance != NULL)
2460 msec = compute_parallel_delay();
2463
2464 /* Nap if appropriate */
2465 if (msec > 0)
2466 {
2467 instr_time delay_start;
2468
2469 if (msec > vacuum_cost_delay * 4)
2470 msec = vacuum_cost_delay * 4;
2471
2473 INSTR_TIME_SET_CURRENT(delay_start);
2474
2475 pgstat_report_wait_start(WAIT_EVENT_VACUUM_DELAY);
2476 pg_usleep(msec * 1000);
2478
2480 {
2481 instr_time delay_end;
2482 instr_time delay;
2483
2484 INSTR_TIME_SET_CURRENT(delay_end);
2485 INSTR_TIME_SET_ZERO(delay);
2486 INSTR_TIME_ACCUM_DIFF(delay, delay_end, delay_start);
2487
2488 /*
2489 * For parallel workers, we only report the delay time every once
2490 * in a while to avoid overloading the leader with messages and
2491 * interrupts.
2492 */
2493 if (IsParallelWorker())
2494 {
2495 static instr_time last_report_time;
2496 instr_time time_since_last_report;
2497
2498 Assert(!is_analyze);
2499
2500 /* Accumulate the delay time */
2502
2503 /* Calculate interval since last report */
2504 INSTR_TIME_SET_ZERO(time_since_last_report);
2505 INSTR_TIME_ACCUM_DIFF(time_since_last_report, delay_end, last_report_time);
2506
2507 /* If we haven't reported in a while, do so now */
2508 if (INSTR_TIME_GET_NANOSEC(time_since_last_report) >=
2510 {
2513
2514 /* Reset variables */
2515 last_report_time = delay_end;
2517 }
2518 }
2519 else if (is_analyze)
2521 INSTR_TIME_GET_NANOSEC(delay));
2522 else
2524 INSTR_TIME_GET_NANOSEC(delay));
2525 }
2526
2527 /*
2528 * We don't want to ignore postmaster death during very long vacuums
2529 * with vacuum_cost_delay configured. We can't use the usual
2530 * WaitLatch() approach here because we want microsecond-based sleep
2531 * durations above.
2532 */
2534 exit(1);
2535
2537
2538 /*
2539 * Balance and update limit values for autovacuum workers. We must do
2540 * this periodically, as the number of workers across which we are
2541 * balancing the limit may have changed.
2542 *
2543 * TODO: There may be better criteria for determining when to do this
2544 * besides "check after napping".
2545 */
2547
2548 /* Might have gotten an interrupt while sleeping */
2550 }
2551}
void AutoVacuumUpdateCostLimit(void)
Definition: autovacuum.c:1737
void pgstat_progress_incr_param(int index, int64 incr)
volatile sig_atomic_t InterruptPending
Definition: globals.c:32
bool IsUnderPostmaster
Definition: globals.c:120
void ProcessConfigFile(GucContext context)
Definition: guc-file.l:120
@ PGC_SIGHUP
Definition: guc.h:75
#define INSTR_TIME_SET_CURRENT(t)
Definition: instr_time.h:122
#define INSTR_TIME_GET_NANOSEC(t)
Definition: instr_time.h:125
#define INSTR_TIME_SET_ZERO(t)
Definition: instr_time.h:172
#define INSTR_TIME_ACCUM_DIFF(x, y, z)
Definition: instr_time.h:184
volatile sig_atomic_t ConfigReloadPending
Definition: interrupt.c:27
#define PostmasterIsAlive()
Definition: pmsignal.h:107
#define PROGRESS_ANALYZE_DELAY_TIME
Definition: progress.h:50
void pg_usleep(long microsec)
Definition: signal.c:53
double vacuum_cost_delay
Definition: vacuum.c:91
static double compute_parallel_delay(void)
Definition: vacuum.c:2576
#define PARALLEL_VACUUM_DELAY_REPORT_INTERVAL_NS
Definition: vacuum.c:70
static void pgstat_report_wait_start(uint32 wait_event_info)
Definition: wait_event.h:69
static void pgstat_report_wait_end(void)
Definition: wait_event.h:85

References AmAutoVacuumWorkerProcess, Assert(), AutoVacuumUpdateCostLimit(), CHECK_FOR_INTERRUPTS, compute_parallel_delay(), ConfigReloadPending, INSTR_TIME_ACCUM_DIFF, INSTR_TIME_GET_NANOSEC, INSTR_TIME_SET_CURRENT, INSTR_TIME_SET_ZERO, InterruptPending, IsParallelWorker, IsUnderPostmaster, PARALLEL_VACUUM_DELAY_REPORT_INTERVAL_NS, parallel_vacuum_worker_delay_ns, pg_usleep(), PGC_SIGHUP, pgstat_progress_incr_param(), pgstat_progress_parallel_incr_param(), pgstat_report_wait_end(), pgstat_report_wait_start(), PostmasterIsAlive, ProcessConfigFile(), PROGRESS_ANALYZE_DELAY_TIME, PROGRESS_VACUUM_DELAY_TIME, track_cost_delay_timing, vacuum_cost_delay, vacuum_cost_limit, VacuumCostActive, VacuumCostBalance, VacuumSharedCostBalance, and VacuumUpdateCosts().

Referenced by acquire_sample_rows(), blbulkdelete(), blvacuumcleanup(), btvacuumpage(), btvacuumscan(), compute_array_stats(), compute_distinct_stats(), compute_index_stats(), compute_range_stats(), compute_scalar_stats(), compute_trivial_stats(), compute_tsvector_stats(), file_acquire_sample_rows(), ginbulkdelete(), ginInsertCleanup(), ginvacuumcleanup(), gistvacuumpage(), gistvacuumscan(), hashbucketcleanup(), lazy_scan_heap(), lazy_vacuum_heap_rel(), spgprocesspending(), and spgvacuumscan().

◆ vacuum_get_cutoffs()

bool vacuum_get_cutoffs ( Relation  rel,
const VacuumParams  params,
struct VacuumCutoffs cutoffs 
)

Definition at line 1098 of file vacuum.c.

1100{
1101 int freeze_min_age,
1102 multixact_freeze_min_age,
1103 freeze_table_age,
1104 multixact_freeze_table_age,
1105 effective_multixact_freeze_max_age;
1106 TransactionId nextXID,
1107 safeOldestXmin,
1108 aggressiveXIDCutoff;
1109 MultiXactId nextMXID,
1110 safeOldestMxact,
1111 aggressiveMXIDCutoff;
1112
1113 /* Use mutable copies of freeze age parameters */
1114 freeze_min_age = params.freeze_min_age;
1115 multixact_freeze_min_age = params.multixact_freeze_min_age;
1116 freeze_table_age = params.freeze_table_age;
1117 multixact_freeze_table_age = params.multixact_freeze_table_age;
1118
1119 /* Set pg_class fields in cutoffs */
1120 cutoffs->relfrozenxid = rel->rd_rel->relfrozenxid;
1121 cutoffs->relminmxid = rel->rd_rel->relminmxid;
1122
1123 /*
1124 * Acquire OldestXmin.
1125 *
1126 * We can always ignore processes running lazy vacuum. This is because we
1127 * use these values only for deciding which tuples we must keep in the
1128 * tables. Since lazy vacuum doesn't write its XID anywhere (usually no
1129 * XID assigned), it's safe to ignore it. In theory it could be
1130 * problematic to ignore lazy vacuums in a full vacuum, but keep in mind
1131 * that only one vacuum process can be working on a particular table at
1132 * any time, and that each vacuum is always an independent transaction.
1133 */
1135
1137
1138 /* Acquire OldestMxact */
1139 cutoffs->OldestMxact = GetOldestMultiXactId();
1141
1142 /* Acquire next XID/next MXID values used to apply age-based settings */
1143 nextXID = ReadNextTransactionId();
1144 nextMXID = ReadNextMultiXactId();
1145
1146 /*
1147 * Also compute the multixact age for which freezing is urgent. This is
1148 * normally autovacuum_multixact_freeze_max_age, but may be less if we are
1149 * short of multixact member space.
1150 */
1151 effective_multixact_freeze_max_age = MultiXactMemberFreezeThreshold();
1152
1153 /*
1154 * Almost ready to set freeze output parameters; check if OldestXmin or
1155 * OldestMxact are held back to an unsafe degree before we start on that
1156 */
1157 safeOldestXmin = nextXID - autovacuum_freeze_max_age;
1158 if (!TransactionIdIsNormal(safeOldestXmin))
1159 safeOldestXmin = FirstNormalTransactionId;
1160 safeOldestMxact = nextMXID - effective_multixact_freeze_max_age;
1161 if (safeOldestMxact < FirstMultiXactId)
1162 safeOldestMxact = FirstMultiXactId;
1163 if (TransactionIdPrecedes(cutoffs->OldestXmin, safeOldestXmin))
1165 (errmsg("cutoff for removing and freezing tuples is far in the past"),
1166 errhint("Close open transactions soon to avoid wraparound problems.\n"
1167 "You might also need to commit or roll back old prepared transactions, or drop stale replication slots.")));
1168 if (MultiXactIdPrecedes(cutoffs->OldestMxact, safeOldestMxact))
1170 (errmsg("cutoff for freezing multixacts is far in the past"),
1171 errhint("Close open transactions soon to avoid wraparound problems.\n"
1172 "You might also need to commit or roll back old prepared transactions, or drop stale replication slots.")));
1173
1174 /*
1175 * Determine the minimum freeze age to use: as specified by the caller, or
1176 * vacuum_freeze_min_age, but in any case not more than half
1177 * autovacuum_freeze_max_age, so that autovacuums to prevent XID
1178 * wraparound won't occur too frequently.
1179 */
1180 if (freeze_min_age < 0)
1181 freeze_min_age = vacuum_freeze_min_age;
1182 freeze_min_age = Min(freeze_min_age, autovacuum_freeze_max_age / 2);
1183 Assert(freeze_min_age >= 0);
1184
1185 /* Compute FreezeLimit, being careful to generate a normal XID */
1186 cutoffs->FreezeLimit = nextXID - freeze_min_age;
1187 if (!TransactionIdIsNormal(cutoffs->FreezeLimit))
1189 /* FreezeLimit must always be <= OldestXmin */
1190 if (TransactionIdPrecedes(cutoffs->OldestXmin, cutoffs->FreezeLimit))
1191 cutoffs->FreezeLimit = cutoffs->OldestXmin;
1192
1193 /*
1194 * Determine the minimum multixact freeze age to use: as specified by
1195 * caller, or vacuum_multixact_freeze_min_age, but in any case not more
1196 * than half effective_multixact_freeze_max_age, so that autovacuums to
1197 * prevent MultiXact wraparound won't occur too frequently.
1198 */
1199 if (multixact_freeze_min_age < 0)
1200 multixact_freeze_min_age = vacuum_multixact_freeze_min_age;
1201 multixact_freeze_min_age = Min(multixact_freeze_min_age,
1202 effective_multixact_freeze_max_age / 2);
1203 Assert(multixact_freeze_min_age >= 0);
1204
1205 /* Compute MultiXactCutoff, being careful to generate a valid value */
1206 cutoffs->MultiXactCutoff = nextMXID - multixact_freeze_min_age;
1207 if (cutoffs->MultiXactCutoff < FirstMultiXactId)
1209 /* MultiXactCutoff must always be <= OldestMxact */
1210 if (MultiXactIdPrecedes(cutoffs->OldestMxact, cutoffs->MultiXactCutoff))
1211 cutoffs->MultiXactCutoff = cutoffs->OldestMxact;
1212
1213 /*
1214 * Finally, figure out if caller needs to do an aggressive VACUUM or not.
1215 *
1216 * Determine the table freeze age to use: as specified by the caller, or
1217 * the value of the vacuum_freeze_table_age GUC, but in any case not more
1218 * than autovacuum_freeze_max_age * 0.95, so that if you have e.g nightly
1219 * VACUUM schedule, the nightly VACUUM gets a chance to freeze XIDs before
1220 * anti-wraparound autovacuum is launched.
1221 */
1222 if (freeze_table_age < 0)
1223 freeze_table_age = vacuum_freeze_table_age;
1224 freeze_table_age = Min(freeze_table_age, autovacuum_freeze_max_age * 0.95);
1225 Assert(freeze_table_age >= 0);
1226 aggressiveXIDCutoff = nextXID - freeze_table_age;
1227 if (!TransactionIdIsNormal(aggressiveXIDCutoff))
1228 aggressiveXIDCutoff = FirstNormalTransactionId;
1230 aggressiveXIDCutoff))
1231 return true;
1232
1233 /*
1234 * Similar to the above, determine the table freeze age to use for
1235 * multixacts: as specified by the caller, or the value of the
1236 * vacuum_multixact_freeze_table_age GUC, but in any case not more than
1237 * effective_multixact_freeze_max_age * 0.95, so that if you have e.g.
1238 * nightly VACUUM schedule, the nightly VACUUM gets a chance to freeze
1239 * multixacts before anti-wraparound autovacuum is launched.
1240 */
1241 if (multixact_freeze_table_age < 0)
1242 multixact_freeze_table_age = vacuum_multixact_freeze_table_age;
1243 multixact_freeze_table_age =
1244 Min(multixact_freeze_table_age,
1245 effective_multixact_freeze_max_age * 0.95);
1246 Assert(multixact_freeze_table_age >= 0);
1247 aggressiveMXIDCutoff = nextMXID - multixact_freeze_table_age;
1248 if (aggressiveMXIDCutoff < FirstMultiXactId)
1249 aggressiveMXIDCutoff = FirstMultiXactId;
1251 aggressiveMXIDCutoff))
1252 return true;
1253
1254 /* Non-aggressive VACUUM */
1255 return false;
1256}
int autovacuum_freeze_max_age
Definition: autovacuum.c:129
int errhint(const char *fmt,...)
Definition: elog.c:1330
bool MultiXactIdPrecedesOrEquals(MultiXactId multi1, MultiXactId multi2)
Definition: multixact.c:3283
int MultiXactMemberFreezeThreshold(void)
Definition: multixact.c:2928
#define FirstMultiXactId
Definition: multixact.h:26
TransactionId FreezeLimit
Definition: vacuum.h:289
TransactionId OldestXmin
Definition: vacuum.h:279
TransactionId relfrozenxid
Definition: vacuum.h:263
MultiXactId relminmxid
Definition: vacuum.h:264
MultiXactId MultiXactCutoff
Definition: vacuum.h:290
MultiXactId OldestMxact
Definition: vacuum.h:280
static bool TransactionIdPrecedesOrEquals(TransactionId id1, TransactionId id2)
Definition: transam.h:282
#define FirstNormalTransactionId
Definition: transam.h:34
int vacuum_freeze_min_age
Definition: vacuum.c:75
int vacuum_multixact_freeze_table_age
Definition: vacuum.c:78
int vacuum_freeze_table_age
Definition: vacuum.c:76
int vacuum_multixact_freeze_min_age
Definition: vacuum.c:77

References Assert(), autovacuum_freeze_max_age, ereport, errhint(), errmsg(), FirstMultiXactId, FirstNormalTransactionId, VacuumParams::freeze_min_age, VacuumParams::freeze_table_age, VacuumCutoffs::FreezeLimit, GetOldestMultiXactId(), GetOldestNonRemovableTransactionId(), Min, VacuumParams::multixact_freeze_min_age, VacuumParams::multixact_freeze_table_age, VacuumCutoffs::MultiXactCutoff, MultiXactIdIsValid, MultiXactIdPrecedes(), MultiXactIdPrecedesOrEquals(), MultiXactMemberFreezeThreshold(), VacuumCutoffs::OldestMxact, VacuumCutoffs::OldestXmin, RelationData::rd_rel, ReadNextMultiXactId(), ReadNextTransactionId(), VacuumCutoffs::relfrozenxid, VacuumCutoffs::relminmxid, TransactionIdIsNormal, TransactionIdPrecedes(), TransactionIdPrecedesOrEquals(), vacuum_freeze_min_age, vacuum_freeze_table_age, vacuum_multixact_freeze_min_age, vacuum_multixact_freeze_table_age, and WARNING.

Referenced by copy_table_data(), and heap_vacuum_rel().

◆ vacuum_is_permitted_for_relation()

bool vacuum_is_permitted_for_relation ( Oid  relid,
Form_pg_class  reltuple,
bits32  options 
)

Definition at line 717 of file vacuum.c.

719{
720 char *relname;
721
723
724 /*----------
725 * A role has privileges to vacuum or analyze the relation if any of the
726 * following are true:
727 * - the role owns the current database and the relation is not shared
728 * - the role has the MAINTAIN privilege on the relation
729 *----------
730 */
731 if ((object_ownercheck(DatabaseRelationId, MyDatabaseId, GetUserId()) &&
732 !reltuple->relisshared) ||
734 return true;
735
736 relname = NameStr(reltuple->relname);
737
738 if ((options & VACOPT_VACUUM) != 0)
739 {
741 (errmsg("permission denied to vacuum \"%s\", skipping it",
742 relname)));
743
744 /*
745 * For VACUUM ANALYZE, both logs could show up, but just generate
746 * information for VACUUM as that would be the first one to be
747 * processed.
748 */
749 return false;
750 }
751
752 if ((options & VACOPT_ANALYZE) != 0)
754 (errmsg("permission denied to analyze \"%s\", skipping it",
755 relname)));
756
757 return false;
758}
@ ACLCHECK_OK
Definition: acl.h:183
bool object_ownercheck(Oid classid, Oid objectid, Oid roleid)
Definition: aclchk.c:4088
AclResult pg_class_aclcheck(Oid table_oid, Oid roleid, AclMode mode)
Definition: aclchk.c:4037
#define NameStr(name)
Definition: c.h:754
Oid GetUserId(void)
Definition: miscinit.c:469
#define ACL_MAINTAIN
Definition: parsenodes.h:90
NameData relname
Definition: pg_class.h:38

References ACL_MAINTAIN, ACLCHECK_OK, Assert(), ereport, errmsg(), GetUserId(), MyDatabaseId, NameStr, object_ownercheck(), pg_class_aclcheck(), relname, VACOPT_ANALYZE, VACOPT_VACUUM, and WARNING.

Referenced by analyze_rel(), expand_vacuum_rel(), get_all_vacuum_rels(), and vacuum_rel().

◆ vacuum_open_relation()

Relation vacuum_open_relation ( Oid  relid,
RangeVar relation,
bits32  options,
bool  verbose,
LOCKMODE  lmode 
)

Definition at line 769 of file vacuum.c.

771{
772 Relation rel;
773 bool rel_lock = true;
774 int elevel;
775
777
778 /*
779 * Open the relation and get the appropriate lock on it.
780 *
781 * There's a race condition here: the relation may have gone away since
782 * the last time we saw it. If so, we don't need to vacuum or analyze it.
783 *
784 * If we've been asked not to wait for the relation lock, acquire it first
785 * in non-blocking mode, before calling try_relation_open().
786 */
788 rel = try_relation_open(relid, lmode);
789 else if (ConditionalLockRelationOid(relid, lmode))
790 rel = try_relation_open(relid, NoLock);
791 else
792 {
793 rel = NULL;
794 rel_lock = false;
795 }
796
797 /* if relation is opened, leave */
798 if (rel)
799 return rel;
800
801 /*
802 * Relation could not be opened, hence generate if possible a log
803 * informing on the situation.
804 *
805 * If the RangeVar is not defined, we do not have enough information to
806 * provide a meaningful log statement. Chances are that the caller has
807 * intentionally not provided this information so that this logging is
808 * skipped, anyway.
809 */
810 if (relation == NULL)
811 return NULL;
812
813 /*
814 * Determine the log level.
815 *
816 * For manual VACUUM or ANALYZE, we emit a WARNING to match the log
817 * statements in the permission checks; otherwise, only log if the caller
818 * so requested.
819 */
821 elevel = WARNING;
822 else if (verbose)
823 elevel = LOG;
824 else
825 return NULL;
826
827 if ((options & VACOPT_VACUUM) != 0)
828 {
829 if (!rel_lock)
830 ereport(elevel,
831 (errcode(ERRCODE_LOCK_NOT_AVAILABLE),
832 errmsg("skipping vacuum of \"%s\" --- lock not available",
833 relation->relname)));
834 else
835 ereport(elevel,
837 errmsg("skipping vacuum of \"%s\" --- relation no longer exists",
838 relation->relname)));
839
840 /*
841 * For VACUUM ANALYZE, both logs could show up, but just generate
842 * information for VACUUM as that would be the first one to be
843 * processed.
844 */
845 return NULL;
846 }
847
848 if ((options & VACOPT_ANALYZE) != 0)
849 {
850 if (!rel_lock)
851 ereport(elevel,
852 (errcode(ERRCODE_LOCK_NOT_AVAILABLE),
853 errmsg("skipping analyze of \"%s\" --- lock not available",
854 relation->relname)));
855 else
856 ereport(elevel,
858 errmsg("skipping analyze of \"%s\" --- relation no longer exists",
859 relation->relname)));
860 }
861
862 return NULL;
863}
#define LOG
Definition: elog.h:31
bool ConditionalLockRelationOid(Oid relid, LOCKMODE lockmode)
Definition: lmgr.c:151
#define ERRCODE_UNDEFINED_TABLE
Definition: pgbench.c:79
Relation try_relation_open(Oid relationId, LOCKMODE lockmode)
Definition: relation.c:88
char * relname
Definition: primnodes.h:83

References AmAutoVacuumWorkerProcess, Assert(), ConditionalLockRelationOid(), ereport, errcode(), ERRCODE_UNDEFINED_TABLE, errmsg(), LOG, NoLock, RangeVar::relname, try_relation_open(), VACOPT_ANALYZE, VACOPT_SKIP_LOCKED, VACOPT_VACUUM, verbose, and WARNING.

Referenced by analyze_rel(), and vacuum_rel().

◆ vacuum_xid_failsafe_check()

bool vacuum_xid_failsafe_check ( const struct VacuumCutoffs cutoffs)

Definition at line 1266 of file vacuum.c.

1267{
1268 TransactionId relfrozenxid = cutoffs->relfrozenxid;
1269 MultiXactId relminmxid = cutoffs->relminmxid;
1270 TransactionId xid_skip_limit;
1271 MultiXactId multi_skip_limit;
1272 int skip_index_vacuum;
1273
1274 Assert(TransactionIdIsNormal(relfrozenxid));
1275 Assert(MultiXactIdIsValid(relminmxid));
1276
1277 /*
1278 * Determine the index skipping age to use. In any case no less than
1279 * autovacuum_freeze_max_age * 1.05.
1280 */
1281 skip_index_vacuum = Max(vacuum_failsafe_age, autovacuum_freeze_max_age * 1.05);
1282
1283 xid_skip_limit = ReadNextTransactionId() - skip_index_vacuum;
1284 if (!TransactionIdIsNormal(xid_skip_limit))
1285 xid_skip_limit = FirstNormalTransactionId;
1286
1287 if (TransactionIdPrecedes(relfrozenxid, xid_skip_limit))
1288 {
1289 /* The table's relfrozenxid is too old */
1290 return true;
1291 }
1292
1293 /*
1294 * Similar to above, determine the index skipping age to use for
1295 * multixact. In any case no less than autovacuum_multixact_freeze_max_age *
1296 * 1.05.
1297 */
1298 skip_index_vacuum = Max(vacuum_multixact_failsafe_age,
1300
1301 multi_skip_limit = ReadNextMultiXactId() - skip_index_vacuum;
1302 if (multi_skip_limit < FirstMultiXactId)
1303 multi_skip_limit = FirstMultiXactId;
1304
1305 if (MultiXactIdPrecedes(relminmxid, multi_skip_limit))
1306 {
1307 /* The table's relminmxid is too old */
1308 return true;
1309 }
1310
1311 return false;
1312}
int autovacuum_multixact_freeze_max_age
Definition: autovacuum.c:130
int vacuum_multixact_failsafe_age
Definition: vacuum.c:80
int vacuum_failsafe_age
Definition: vacuum.c:79

References Assert(), autovacuum_freeze_max_age, autovacuum_multixact_freeze_max_age, FirstMultiXactId, FirstNormalTransactionId, Max, MultiXactIdIsValid, MultiXactIdPrecedes(), ReadNextMultiXactId(), ReadNextTransactionId(), VacuumCutoffs::relfrozenxid, VacuumCutoffs::relminmxid, TransactionIdIsNormal, TransactionIdPrecedes(), vacuum_failsafe_age, and vacuum_multixact_failsafe_age.

Referenced by lazy_check_wraparound_failsafe().

◆ VacuumUpdateCosts()

void VacuumUpdateCosts ( void  )

Definition at line 1668 of file autovacuum.c.

1669{
1670 if (MyWorkerInfo)
1671 {
1674 else if (autovacuum_vac_cost_delay >= 0)
1676 else
1677 /* fall back to VacuumCostDelay */
1679
1681 }
1682 else
1683 {
1684 /* Must be explicit VACUUM or ANALYZE */
1687 }
1688
1689 /*
1690 * If configuration changes are allowed to impact VacuumCostActive, make
1691 * sure it is updated.
1692 */
1695 else if (vacuum_cost_delay > 0)
1696 VacuumCostActive = true;
1697 else
1698 {
1699 VacuumCostActive = false;
1701 }
1702
1703 /*
1704 * Since the cost logging requires a lock, avoid rendering the log message
1705 * in case we are using a message level where the log wouldn't be emitted.
1706 */
1708 {
1709 Oid dboid,
1710 tableoid;
1711
1712 Assert(!LWLockHeldByMe(AutovacuumLock));
1713
1714 LWLockAcquire(AutovacuumLock, LW_SHARED);
1715 dboid = MyWorkerInfo->wi_dboid;
1716 tableoid = MyWorkerInfo->wi_tableoid;
1717 LWLockRelease(AutovacuumLock);
1718
1719 elog(DEBUG2,
1720 "Autovacuum VacuumUpdateCosts(db=%u, rel=%u, dobalance=%s, cost_limit=%d, cost_delay=%g active=%s failsafe=%s)",
1721 dboid, tableoid, pg_atomic_unlocked_test_flag(&MyWorkerInfo->wi_dobalance) ? "no" : "yes",
1723 vacuum_cost_delay > 0 ? "yes" : "no",
1724 VacuumFailsafeActive ? "yes" : "no");
1725 }
1726}
static double av_storage_param_cost_delay
Definition: autovacuum.c:151
double autovacuum_vac_cost_delay
Definition: autovacuum.c:132
bool message_level_is_interesting(int elevel)
Definition: elog.c:273
double VacuumCostDelay
Definition: globals.c:155
bool LWLockHeldByMe(LWLock *lock)
Definition: lwlock.c:1977
bool LWLockAcquire(LWLock *lock, LWLockMode mode)
Definition: lwlock.c:1174
void LWLockRelease(LWLock *lock)
Definition: lwlock.c:1894
@ LW_SHARED
Definition: lwlock.h:113

References Assert(), autovacuum_vac_cost_delay, AutoVacuumUpdateCostLimit(), av_storage_param_cost_delay, DEBUG2, elog, LW_SHARED, LWLockAcquire(), LWLockHeldByMe(), LWLockRelease(), message_level_is_interesting(), MyWorkerInfo, pg_atomic_unlocked_test_flag(), vacuum_cost_delay, vacuum_cost_limit, VacuumCostActive, VacuumCostBalance, VacuumCostDelay, VacuumCostLimit, VacuumFailsafeActive, WorkerInfoData::wi_dboid, WorkerInfoData::wi_dobalance, and WorkerInfoData::wi_tableoid.

Referenced by do_autovacuum(), parallel_vacuum_main(), vacuum(), and vacuum_delay_point().

Variable Documentation

◆ default_statistics_target

PGDLLIMPORT int default_statistics_target
extern

◆ parallel_vacuum_worker_delay_ns

PGDLLIMPORT int64 parallel_vacuum_worker_delay_ns
extern

Definition at line 95 of file vacuum.c.

Referenced by parallel_vacuum_main(), and vacuum_delay_point().

◆ track_cost_delay_timing

PGDLLIMPORT bool track_cost_delay_timing
extern

Definition at line 82 of file vacuum.c.

Referenced by do_analyze_rel(), heap_vacuum_rel(), parallel_vacuum_main(), and vacuum_delay_point().

◆ vacuum_cost_delay

PGDLLIMPORT double vacuum_cost_delay
extern

◆ vacuum_cost_limit

PGDLLIMPORT int vacuum_cost_limit
extern

◆ vacuum_failsafe_age

PGDLLIMPORT int vacuum_failsafe_age
extern

Definition at line 79 of file vacuum.c.

Referenced by vacuum_xid_failsafe_check().

◆ vacuum_freeze_min_age

PGDLLIMPORT int vacuum_freeze_min_age
extern

Definition at line 75 of file vacuum.c.

Referenced by do_autovacuum(), and vacuum_get_cutoffs().

◆ vacuum_freeze_table_age

PGDLLIMPORT int vacuum_freeze_table_age
extern

Definition at line 76 of file vacuum.c.

Referenced by do_autovacuum(), and vacuum_get_cutoffs().

◆ vacuum_max_eager_freeze_failure_rate

PGDLLIMPORT double vacuum_max_eager_freeze_failure_rate
extern

Definition at line 81 of file vacuum.c.

Referenced by default_reloptions(), ExecVacuum(), and table_recheck_autovac().

◆ vacuum_multixact_failsafe_age

PGDLLIMPORT int vacuum_multixact_failsafe_age
extern

Definition at line 80 of file vacuum.c.

Referenced by vacuum_xid_failsafe_check().

◆ vacuum_multixact_freeze_min_age

PGDLLIMPORT int vacuum_multixact_freeze_min_age
extern

Definition at line 77 of file vacuum.c.

Referenced by do_autovacuum(), and vacuum_get_cutoffs().

◆ vacuum_multixact_freeze_table_age

PGDLLIMPORT int vacuum_multixact_freeze_table_age
extern

Definition at line 78 of file vacuum.c.

Referenced by do_autovacuum(), and vacuum_get_cutoffs().

◆ vacuum_truncate

PGDLLIMPORT bool vacuum_truncate
extern

Definition at line 83 of file vacuum.c.

Referenced by default_reloptions(), and vacuum_rel().

◆ VacuumActiveNWorkers

◆ VacuumCostBalanceLocal

PGDLLIMPORT int VacuumCostBalanceLocal
extern

◆ VacuumFailsafeActive

◆ VacuumSharedCostBalance