vacuumlazy.c 34.1 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12
/*-------------------------------------------------------------------------
 *
 * vacuumlazy.c
 *	  Concurrent ("lazy") vacuuming.
 *
 *
 * The major space usage for LAZY VACUUM is storage for the array of dead
 * tuple TIDs, with the next biggest need being storage for per-disk-page
 * free space info.  We want to ensure we can vacuum even the very largest
 * relations with finite memory space usage.  To do that, we set upper bounds
 * on the number of tuples and pages we will keep track of at once.
 *
13 14 15 16 17
 * We are willing to use at most maintenance_work_mem memory space to keep
 * track of dead tuples.  We initially allocate an array of TIDs of that size.
 * If the array threatens to overflow, we suspend the heap scan phase and
 * perform a pass of index cleanup and page compaction, then resume the heap
 * scan with an empty TID array.
18 19 20
 *
 * We can limit the storage for page free space to MaxFSMPages entries,
 * since that's the most the free space map will be willing to remember
21 22
 * anyway.	If the relation has fewer than that many pages with free space,
 * life is easy: just build an array of per-page info.	If it has more,
23 24 25 26 27 28
 * we store the free space info as a heap ordered by amount of free space,
 * so that we can discard the pages with least free space to ensure we never
 * have more than MaxFSMPages entries in all.  The surviving page entries
 * are passed to the free space map at conclusion of the scan.
 *
 *
29
 * Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group
30 31 32 33
 * Portions Copyright (c) 1994, Regents of the University of California
 *
 *
 * IDENTIFICATION
34
 *	  $PostgreSQL: pgsql/src/backend/commands/vacuumlazy.c,v 1.68 2006/03/05 15:58:25 momjian Exp $
35 36 37 38 39
 *
 *-------------------------------------------------------------------------
 */
#include "postgres.h"

40 41
#include <math.h>

42 43 44 45 46
#include "access/genam.h"
#include "access/heapam.h"
#include "access/xlog.h"
#include "commands/vacuum.h"
#include "miscadmin.h"
47
#include "pgstat.h"
48 49
#include "storage/freespace.h"
#include "storage/smgr.h"
50
#include "utils/lsyscache.h"
51
#include "utils/memutils.h"
52
#include "utils/pg_rusage.h"
53 54 55 56 57 58


/*
 * Space/time tradeoff parameters: do these need to be user-tunable?
 *
 * To consider truncating the relation, we want there to be at least
59 60
 * REL_TRUNCATE_MINIMUM or (relsize / REL_TRUNCATE_FRACTION) (whichever
 * is less) potentially-freeable pages.
61
 */
62
#define REL_TRUNCATE_MINIMUM	1000
63 64 65 66 67 68
#define REL_TRUNCATE_FRACTION	16


typedef struct LVRelStats
{
	/* Overall statistics about rel */
69
	BlockNumber rel_pages;
70
	double		rel_tuples;
B
Bruce Momjian 已提交
71
	BlockNumber pages_removed;
72
	double		tuples_deleted;
73
	BlockNumber nonempty_pages; /* actually, last nonempty page + 1 */
74
	Size		threshold;		/* minimum interesting free space */
75 76
	/* List of TIDs of tuples we intend to delete */
	/* NB: this list is ordered by TID address */
77 78
	int			num_dead_tuples;	/* current # of entries */
	int			max_dead_tuples;	/* # slots allocated in array */
79
	ItemPointer dead_tuples;	/* array of ItemPointerData */
80 81
	/* Array or heap of per-page info about free space */
	/* We use a simple array until it fills up, then convert to heap */
82 83
	bool		fs_is_heap;		/* are we using heap organization? */
	int			num_free_pages; /* current # of entries */
84
	int			max_free_pages; /* # slots allocated in array */
B
Bruce Momjian 已提交
85
	PageFreeSpaceInfo *free_pages;		/* array or heap of blkno/avail */
86 87 88
} LVRelStats;


B
Bruce Momjian 已提交
89
static int	elevel = -1;
90

91 92
static TransactionId OldestXmin;
static TransactionId FreezeLimit;
93 94 95 96


/* non-export function prototypes */
static void lazy_scan_heap(Relation onerel, LVRelStats *vacrelstats,
97
			   Relation *Irel, int nindexes);
98
static void lazy_vacuum_heap(Relation onerel, LVRelStats *vacrelstats);
99
static void lazy_scan_index(Relation indrel, LVRelStats *vacrelstats);
100
static void lazy_vacuum_index(Relation indrel,
B
Bruce Momjian 已提交
101 102 103
				  double *index_tups_vacuumed,
				  BlockNumber *index_pages_removed,
				  LVRelStats *vacrelstats);
104 105
static int lazy_vacuum_page(Relation onerel, BlockNumber blkno, Buffer buffer,
				 int tupindex, LVRelStats *vacrelstats);
106 107
static void lazy_truncate_heap(Relation onerel, LVRelStats *vacrelstats);
static BlockNumber count_nondeletable_pages(Relation onerel,
108
						 LVRelStats *vacrelstats);
109 110
static void lazy_space_alloc(LVRelStats *vacrelstats, BlockNumber relblocks);
static void lazy_record_dead_tuple(LVRelStats *vacrelstats,
111
					   ItemPointer itemptr);
112
static void lazy_record_free_space(LVRelStats *vacrelstats,
113
					   BlockNumber page, Size avail);
114
static bool lazy_tid_reaped(ItemPointer itemptr, void *state);
115
static bool dummy_tid_reaped(ItemPointer itemptr, void *state);
116 117
static void lazy_update_fsm(Relation onerel, LVRelStats *vacrelstats);
static int	vac_cmp_itemptr(const void *left, const void *right);
118
static int	vac_cmp_page_spaces(const void *left, const void *right);
119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136


/*
 *	lazy_vacuum_rel() -- perform LAZY VACUUM for one heap relation
 *
 *		This routine vacuums a single heap, cleans out its indexes, and
 *		updates its num_pages and num_tuples statistics.
 *
 *		At entry, we have already established a transaction and opened
 *		and locked the relation.
 */
void
lazy_vacuum_rel(Relation onerel, VacuumStmt *vacstmt)
{
	LVRelStats *vacrelstats;
	Relation   *Irel;
	int			nindexes;
	bool		hasindex;
137
	BlockNumber possibly_freeable;
138 139

	if (vacstmt->verbose)
140
		elevel = INFO;
141
	else
142
		elevel = DEBUG2;
B
Bruce Momjian 已提交
143

144 145
	vacuum_set_xid_limits(vacstmt, onerel->rd_rel->relisshared,
						  &OldestXmin, &FreezeLimit);
146

147
	vacrelstats = (LVRelStats *) palloc0(sizeof(LVRelStats));
148

149 150 151 152
	/* Set threshold for interesting free space = average request size */
	/* XXX should we scale it up or down?  Adjust vacuum.c too, if so */
	vacrelstats->threshold = GetAvgFSMRequestSize(&onerel->rd_node);

153
	/* Open all indexes of the relation */
154
	vac_open_indexes(onerel, ShareUpdateExclusiveLock, &nindexes, &Irel);
155 156 157 158 159 160
	hasindex = (nindexes > 0);

	/* Do the vacuuming */
	lazy_scan_heap(onerel, vacrelstats, Irel, nindexes);

	/* Done with indexes */
161
	vac_close_indexes(nindexes, Irel, NoLock);
162 163 164 165

	/*
	 * Optionally truncate the relation.
	 *
166 167
	 * Don't even think about it unless we have a shot at releasing a goodly
	 * number of pages.  Otherwise, the time taken isn't worth it.
168 169
	 */
	possibly_freeable = vacrelstats->rel_pages - vacrelstats->nonempty_pages;
170
	if (possibly_freeable >= REL_TRUNCATE_MINIMUM ||
B
Bruce Momjian 已提交
171
		possibly_freeable >= vacrelstats->rel_pages / REL_TRUNCATE_FRACTION)
172 173 174 175 176 177
		lazy_truncate_heap(onerel, vacrelstats);

	/* Update shared free space map with final free space info */
	lazy_update_fsm(onerel, vacrelstats);

	/* Update statistics in pg_class */
178 179 180 181
	vac_update_relstats(RelationGetRelid(onerel),
						vacrelstats->rel_pages,
						vacrelstats->rel_tuples,
						hasindex);
182 183

	/* report results to the stats collector, too */
184
	pgstat_report_vacuum(RelationGetRelid(onerel), onerel->rd_rel->relisshared,
B
Bruce Momjian 已提交
185
						 vacstmt->analyze, vacrelstats->rel_tuples);
186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204
}


/*
 *	lazy_scan_heap() -- scan an open heap relation
 *
 *		This routine sets commit status bits, builds lists of dead tuples
 *		and pages with free space, and calculates statistics on the number
 *		of live tuples in the heap.  When done, or when we run low on space
 *		for dead-tuple TIDs, invoke vacuuming of indexes and heap.
 */
static void
lazy_scan_heap(Relation onerel, LVRelStats *vacrelstats,
			   Relation *Irel, int nindexes)
{
	BlockNumber nblocks,
				blkno;
	HeapTupleData tuple;
	char	   *relname;
205
	BlockNumber empty_pages;
206 207 208 209
	double		num_tuples,
				tups_vacuumed,
				nkeep,
				nunused;
210 211 212
	double	   *index_tups_vacuumed;
	BlockNumber *index_pages_removed;
	bool		did_vacuum_index = false;
213
	int			i;
214
	PGRUsage	ru0;
215

216
	pg_rusage_init(&ru0);
217 218

	relname = RelationGetRelationName(onerel);
219 220 221 222
	ereport(elevel,
			(errmsg("vacuuming \"%s.%s\"",
					get_namespace_name(RelationGetNamespace(onerel)),
					relname)));
223

224
	empty_pages = 0;
225 226
	num_tuples = tups_vacuumed = nkeep = nunused = 0;

227 228 229 230 231
	/*
	 * Because index vacuuming is done in multiple passes, we have to keep
	 * track of the total number of rows and pages removed from each index.
	 * index_tups_vacuumed[i] is the number removed so far from the i'th
	 * index.  (For partial indexes this could well be different from
B
Bruce Momjian 已提交
232
	 * tups_vacuumed.)	Likewise for index_pages_removed[i].
233 234 235 236
	 */
	index_tups_vacuumed = (double *) palloc0(nindexes * sizeof(double));
	index_pages_removed = (BlockNumber *) palloc0(nindexes * sizeof(BlockNumber));

237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253
	nblocks = RelationGetNumberOfBlocks(onerel);
	vacrelstats->rel_pages = nblocks;
	vacrelstats->nonempty_pages = 0;

	lazy_space_alloc(vacrelstats, nblocks);

	for (blkno = 0; blkno < nblocks; blkno++)
	{
		Buffer		buf;
		Page		page;
		OffsetNumber offnum,
					maxoff;
		bool		pgchanged,
					tupgone,
					hastup;
		int			prev_dead_count;

254
		vacuum_delay_point();
J
Jan Wieck 已提交
255

256
		/*
B
Bruce Momjian 已提交
257 258
		 * If we are close to overrunning the available space for dead-tuple
		 * TIDs, pause and do a cycle of vacuuming before we tackle this page.
259
		 */
260
		if ((vacrelstats->max_dead_tuples - vacrelstats->num_dead_tuples) < MaxHeapTuplesPerPage &&
261 262 263 264
			vacrelstats->num_dead_tuples > 0)
		{
			/* Remove index entries */
			for (i = 0; i < nindexes; i++)
265 266 267 268 269
				lazy_vacuum_index(Irel[i],
								  &index_tups_vacuumed[i],
								  &index_pages_removed[i],
								  vacrelstats);
			did_vacuum_index = true;
270 271 272 273 274 275 276 277 278 279 280 281 282 283 284
			/* Remove tuples from heap */
			lazy_vacuum_heap(onerel, vacrelstats);
			/* Forget the now-vacuumed tuples, and press on */
			vacrelstats->num_dead_tuples = 0;
		}

		buf = ReadBuffer(onerel, blkno);

		/* In this phase we only need shared access to the buffer */
		LockBuffer(buf, BUFFER_LOCK_SHARE);

		page = BufferGetPage(buf);

		if (PageIsNew(page))
		{
285
			/*
B
Bruce Momjian 已提交
286 287 288
			 * An all-zeroes page could be left over if a backend extends the
			 * relation but crashes before initializing the page. Reclaim such
			 * pages for use.
289
			 *
290 291 292
			 * We have to be careful here because we could be looking at a
			 * page that someone has just added to the relation and not yet
			 * been able to initialize (see RelationGetBufferForTuple). To
B
Bruce Momjian 已提交
293 294 295 296 297
			 * interlock against that, release the buffer read lock (which we
			 * must do anyway) and grab the relation extension lock before
			 * re-locking in exclusive mode.  If the page is still
			 * uninitialized by then, it must be left over from a crashed
			 * backend, and we can initialize it.
298
			 *
299 300 301
			 * We don't really need the relation lock when this is a new or
			 * temp relation, but it's probably not worth the code space to
			 * check that, since this surely isn't a critical path.
302
			 *
303 304
			 * Note: the comparable code in vacuum.c need not worry because
			 * it's got exclusive lock on the whole relation.
305
			 */
306
			LockBuffer(buf, BUFFER_LOCK_UNLOCK);
307 308
			LockRelationForExtension(onerel, ExclusiveLock);
			UnlockRelationForExtension(onerel, ExclusiveLock);
309 310 311
			LockBuffer(buf, BUFFER_LOCK_EXCLUSIVE);
			if (PageIsNew(page))
			{
312
				ereport(WARNING,
B
Bruce Momjian 已提交
313 314
				(errmsg("relation \"%s\" page %u is uninitialized --- fixing",
						relname, blkno)));
315
				PageInit(page, BufferGetPageSize(buf), 0);
316
				empty_pages++;
317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358
				lazy_record_free_space(vacrelstats, blkno,
									   PageGetFreeSpace(page));
			}
			LockBuffer(buf, BUFFER_LOCK_UNLOCK);
			WriteBuffer(buf);
			continue;
		}

		if (PageIsEmpty(page))
		{
			empty_pages++;
			lazy_record_free_space(vacrelstats, blkno,
								   PageGetFreeSpace(page));
			LockBuffer(buf, BUFFER_LOCK_UNLOCK);
			ReleaseBuffer(buf);
			continue;
		}

		pgchanged = false;
		hastup = false;
		prev_dead_count = vacrelstats->num_dead_tuples;
		maxoff = PageGetMaxOffsetNumber(page);
		for (offnum = FirstOffsetNumber;
			 offnum <= maxoff;
			 offnum = OffsetNumberNext(offnum))
		{
			ItemId		itemid;

			itemid = PageGetItemId(page, offnum);

			if (!ItemIdIsUsed(itemid))
			{
				nunused += 1;
				continue;
			}

			tuple.t_data = (HeapTupleHeader) PageGetItem(page, itemid);
			tuple.t_len = ItemIdGetLength(itemid);
			ItemPointerSet(&(tuple.t_self), blkno, offnum);

			tupgone = false;

359
			switch (HeapTupleSatisfiesVacuum(tuple.t_data, OldestXmin, buf))
360 361
			{
				case HEAPTUPLE_DEAD:
362
					tupgone = true;		/* we can delete the tuple */
363 364
					break;
				case HEAPTUPLE_LIVE:
365

366
					/*
B
Bruce Momjian 已提交
367 368
					 * Tuple is good.  Consider whether to replace its xmin
					 * value with FrozenTransactionId.
T
Tom Lane 已提交
369
					 *
370 371 372 373 374 375
					 * NB: Since we hold only a shared buffer lock here, we
					 * are assuming that TransactionId read/write is atomic.
					 * This is not the only place that makes such an
					 * assumption. It'd be possible to avoid the assumption by
					 * momentarily acquiring exclusive lock, but for the
					 * moment I see no need to.
376
					 */
377 378
					if (TransactionIdIsNormal(HeapTupleHeaderGetXmin(tuple.t_data)) &&
						TransactionIdPrecedes(HeapTupleHeaderGetXmin(tuple.t_data),
379 380
											  FreezeLimit))
					{
381
						HeapTupleHeaderSetXmin(tuple.t_data, FrozenTransactionId);
T
Tom Lane 已提交
382 383
						/* infomask should be okay already */
						Assert(tuple.t_data->t_infomask & HEAP_XMIN_COMMITTED);
384 385
						pgchanged = true;
					}
386 387 388 389 390 391 392 393

					/*
					 * Other checks...
					 */
					if (onerel->rd_rel->relhasoids &&
						!OidIsValid(HeapTupleGetOid(&tuple)))
						elog(WARNING, "relation \"%s\" TID %u/%u: OID is invalid",
							 relname, blkno, offnum);
394 395
					break;
				case HEAPTUPLE_RECENTLY_DEAD:
396

397
					/*
B
Bruce Momjian 已提交
398 399
					 * If tuple is recently deleted then we must not remove it
					 * from relation.
400 401 402 403 404 405 406 407 408 409
					 */
					nkeep += 1;
					break;
				case HEAPTUPLE_INSERT_IN_PROGRESS:
					/* This is an expected case during concurrent vacuum */
					break;
				case HEAPTUPLE_DELETE_IN_PROGRESS:
					/* This is an expected case during concurrent vacuum */
					break;
				default:
410
					elog(ERROR, "unexpected HeapTupleSatisfiesVacuum result");
411 412 413 414 415 416 417 418 419 420 421 422 423
					break;
			}

			if (tupgone)
			{
				lazy_record_dead_tuple(vacrelstats, &(tuple.t_self));
				tups_vacuumed += 1;
			}
			else
			{
				num_tuples += 1;
				hastup = true;
			}
424
		}						/* scan along page */
425 426

		/*
427
		 * If we remembered any tuples for deletion, then the page will be
B
Bruce Momjian 已提交
428 429 430
		 * visited again by lazy_vacuum_heap, which will compute and record
		 * its post-compaction free space.	If not, then we're done with this
		 * page, so remember its free space as-is.
431 432 433 434 435 436 437 438 439 440 441 442 443 444
		 */
		if (vacrelstats->num_dead_tuples == prev_dead_count)
		{
			lazy_record_free_space(vacrelstats, blkno,
								   PageGetFreeSpace(page));
		}

		/* Remember the location of the last page with nonremovable tuples */
		if (hastup)
			vacrelstats->nonempty_pages = blkno + 1;

		LockBuffer(buf, BUFFER_LOCK_UNLOCK);

		if (pgchanged)
445 446 447
			WriteBuffer(buf);
		else
			ReleaseBuffer(buf);
448 449
	}

450 451
	/* save stats for use later */
	vacrelstats->rel_tuples = num_tuples;
452
	vacrelstats->tuples_deleted = tups_vacuumed;
453

454
	/* If any tuples need to be deleted, perform final vacuum cycle */
455
	/* XXX put a threshold on min number of tuples here? */
456 457 458 459
	if (vacrelstats->num_dead_tuples > 0)
	{
		/* Remove index entries */
		for (i = 0; i < nindexes; i++)
460 461 462 463
			lazy_vacuum_index(Irel[i],
							  &index_tups_vacuumed[i],
							  &index_pages_removed[i],
							  vacrelstats);
464 465 466
		/* Remove tuples from heap */
		lazy_vacuum_heap(onerel, vacrelstats);
	}
467
	else if (!did_vacuum_index)
468
	{
469
		/* Must do post-vacuum cleanup and statistics update anyway */
470 471 472
		for (i = 0; i < nindexes; i++)
			lazy_scan_index(Irel[i], vacrelstats);
	}
473

474
	ereport(elevel,
475
			(errmsg("\"%s\": found %.0f removable, %.0f nonremovable row versions in %u pages",
476 477
					RelationGetRelationName(onerel),
					tups_vacuumed, num_tuples, nblocks),
478
			 errdetail("%.0f dead row versions cannot be removed yet.\n"
479 480
					   "There were %.0f unused item pointers.\n"
					   "%u pages are entirely empty.\n"
481
					   "%s.",
482 483 484
					   nkeep,
					   nunused,
					   empty_pages,
485
					   pg_rusage_show(&ru0))));
486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504
}


/*
 *	lazy_vacuum_heap() -- second pass over the heap
 *
 *		This routine marks dead tuples as unused and compacts out free
 *		space on their pages.  Pages not having dead tuples recorded from
 *		lazy_scan_heap are not visited at all.
 *
 * Note: the reason for doing this as a second pass is we cannot remove
 * the tuples until we've removed their index entries, and we want to
 * process index entry removal in batches as large as possible.
 */
static void
lazy_vacuum_heap(Relation onerel, LVRelStats *vacrelstats)
{
	int			tupindex;
	int			npages;
505
	PGRUsage	ru0;
506

507
	pg_rusage_init(&ru0);
508 509 510 511 512
	npages = 0;

	tupindex = 0;
	while (tupindex < vacrelstats->num_dead_tuples)
	{
513
		BlockNumber tblk;
514 515 516
		Buffer		buf;
		Page		page;

517
		vacuum_delay_point();
J
Jan Wieck 已提交
518

519 520 521 522 523 524 525 526 527 528 529 530 531
		tblk = ItemPointerGetBlockNumber(&vacrelstats->dead_tuples[tupindex]);
		buf = ReadBuffer(onerel, tblk);
		LockBufferForCleanup(buf);
		tupindex = lazy_vacuum_page(onerel, tblk, buf, tupindex, vacrelstats);
		/* Now that we've compacted the page, record its available space */
		page = BufferGetPage(buf);
		lazy_record_free_space(vacrelstats, tblk,
							   PageGetFreeSpace(page));
		LockBuffer(buf, BUFFER_LOCK_UNLOCK);
		WriteBuffer(buf);
		npages++;
	}

532
	ereport(elevel,
533
			(errmsg("\"%s\": removed %d row versions in %d pages",
534 535
					RelationGetRelationName(onerel),
					tupindex, npages),
536 537
			 errdetail("%s.",
					   pg_rusage_show(&ru0))));
538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553
}

/*
 *	lazy_vacuum_page() -- free dead tuples on a page
 *					 and repair its fragmentation.
 *
 * Caller is expected to handle reading, locking, and writing the buffer.
 *
 * tupindex is the index in vacrelstats->dead_tuples of the first dead
 * tuple for this page.  We assume the rest follow sequentially.
 * The return value is the first tupindex after the tuples of this page.
 */
static int
lazy_vacuum_page(Relation onerel, BlockNumber blkno, Buffer buffer,
				 int tupindex, LVRelStats *vacrelstats)
{
554
	OffsetNumber unused[MaxOffsetNumber];
555 556 557 558 559 560 561
	int			uncnt;
	Page		page = BufferGetPage(buffer);
	ItemId		itemid;

	START_CRIT_SECTION();
	for (; tupindex < vacrelstats->num_dead_tuples; tupindex++)
	{
562 563
		BlockNumber tblk;
		OffsetNumber toff;
564 565 566 567 568 569 570 571 572 573 574

		tblk = ItemPointerGetBlockNumber(&vacrelstats->dead_tuples[tupindex]);
		if (tblk != blkno)
			break;				/* past end of tuples for this block */
		toff = ItemPointerGetOffsetNumber(&vacrelstats->dead_tuples[tupindex]);
		itemid = PageGetItemId(page, toff);
		itemid->lp_flags &= ~LP_USED;
	}

	uncnt = PageRepairFragmentation(page, unused);

575 576
	/* XLOG stuff */
	if (!onerel->rd_istemp)
577 578 579
	{
		XLogRecPtr	recptr;

580
		recptr = log_heap_clean(onerel, buffer, unused, uncnt);
581
		PageSetLSN(page, recptr);
582
		PageSetTLI(page, ThisTimeLineID);
583
	}
584 585 586 587 588 589
	else
	{
		/* No XLOG record, but still need to flag that XID exists on disk */
		MyXactMadeTempRelUpdate = true;
	}

590 591 592 593 594
	END_CRIT_SECTION();

	return tupindex;
}

595 596 597 598 599 600 601 602 603
/*
 *	lazy_scan_index() -- scan one index relation to update pg_class statistic.
 *
 * We use this when we have no deletions to do.
 */
static void
lazy_scan_index(Relation indrel, LVRelStats *vacrelstats)
{
	IndexBulkDeleteResult *stats;
604
	IndexVacuumCleanupInfo vcinfo;
605
	PGRUsage	ru0;
606

607
	pg_rusage_init(&ru0);
608 609

	/*
B
Bruce Momjian 已提交
610 611
	 * Acquire appropriate type of lock on index: must be exclusive if index
	 * AM isn't concurrent-safe.
612
	 */
613 614 615
	if (indrel->rd_am->amconcurrent)
		LockRelation(indrel, RowExclusiveLock);
	else
616
		LockRelation(indrel, AccessExclusiveLock);
617 618

	/*
619
	 * Even though we're not planning to delete anything, we use the
B
Bruce Momjian 已提交
620 621 622
	 * ambulkdelete call, because (a) the scan happens within the index AM for
	 * more speed, and (b) it may want to pass private statistics to the
	 * amvacuumcleanup call.
623 624 625
	 */
	stats = index_bulk_delete(indrel, dummy_tid_reaped, NULL);

626 627 628
	/* Do post-VACUUM cleanup, even though we deleted nothing */
	vcinfo.vacuum_full = false;
	vcinfo.message_level = elevel;
629
	vcinfo.num_heap_tuples = vacrelstats->rel_tuples;
630 631 632

	stats = index_vacuum_cleanup(indrel, &vcinfo, stats);

633 634 635
	/*
	 * Release lock acquired above.
	 */
636 637 638
	if (indrel->rd_am->amconcurrent)
		UnlockRelation(indrel, RowExclusiveLock);
	else
639
		UnlockRelation(indrel, AccessExclusiveLock);
640 641 642 643

	if (!stats)
		return;

644
	/* now update statistics in pg_class */
645 646
	vac_update_relstats(RelationGetRelid(indrel),
						stats->num_pages,
647
						stats->num_index_tuples,
648
						false);
649

650
	ereport(elevel,
B
Bruce Momjian 已提交
651 652
			(errmsg("index \"%s\" now contains %.0f row versions in %u pages",
					RelationGetRelationName(indrel),
653
					stats->num_index_tuples,
B
Bruce Momjian 已提交
654 655 656 657 658
					stats->num_pages),
	errdetail("%u index pages have been deleted, %u are currently reusable.\n"
			  "%s.",
			  stats->pages_deleted, stats->pages_free,
			  pg_rusage_show(&ru0))));
659 660 661 662

	pfree(stats);
}

663 664 665 666 667 668
/*
 *	lazy_vacuum_index() -- vacuum one index relation.
 *
 *		Delete all the index entries pointing to tuples listed in
 *		vacrelstats->dead_tuples.
 *
669 670 671
 *		Increment *index_tups_vacuumed by the number of index entries
 *		removed, and *index_pages_removed by the number of pages removed.
 *
672 673 674 675
 *		Finally, we arrange to update the index relation's statistics in
 *		pg_class.
 */
static void
676 677 678 679
lazy_vacuum_index(Relation indrel,
				  double *index_tups_vacuumed,
				  BlockNumber *index_pages_removed,
				  LVRelStats *vacrelstats)
680
{
681
	IndexBulkDeleteResult *stats;
682
	IndexVacuumCleanupInfo vcinfo;
683
	PGRUsage	ru0;
684

685
	pg_rusage_init(&ru0);
686 687

	/*
B
Bruce Momjian 已提交
688 689
	 * Acquire appropriate type of lock on index: must be exclusive if index
	 * AM isn't concurrent-safe.
690
	 */
691 692 693
	if (indrel->rd_am->amconcurrent)
		LockRelation(indrel, RowExclusiveLock);
	else
694 695
		LockRelation(indrel, AccessExclusiveLock);

696 697
	/* Do bulk deletion */
	stats = index_bulk_delete(indrel, lazy_tid_reaped, (void *) vacrelstats);
698

699 700 701
	/* Do post-VACUUM cleanup */
	vcinfo.vacuum_full = false;
	vcinfo.message_level = elevel;
702 703 704
	/* We don't yet know rel_tuples, so pass -1 */
	/* index_bulk_delete can't have skipped scan anyway ... */
	vcinfo.num_heap_tuples = -1;
705 706 707

	stats = index_vacuum_cleanup(indrel, &vcinfo, stats);

708 709 710
	/*
	 * Release lock acquired above.
	 */
711 712 713
	if (indrel->rd_am->amconcurrent)
		UnlockRelation(indrel, RowExclusiveLock);
	else
714 715
		UnlockRelation(indrel, AccessExclusiveLock);

716 717 718
	if (!stats)
		return;

719 720 721 722
	/* accumulate total removed over multiple index-cleaning cycles */
	*index_tups_vacuumed += stats->tuples_removed;
	*index_pages_removed += stats->pages_removed;

723
	/* now update statistics in pg_class */
724 725 726 727
	vac_update_relstats(RelationGetRelid(indrel),
						stats->num_pages,
						stats->num_index_tuples,
						false);
728

729
	ereport(elevel,
B
Bruce Momjian 已提交
730 731 732 733 734 735 736 737 738 739
			(errmsg("index \"%s\" now contains %.0f row versions in %u pages",
					RelationGetRelationName(indrel),
					stats->num_index_tuples,
					stats->num_pages),
			 errdetail("%.0f index row versions were removed.\n"
			 "%u index pages have been deleted, %u are currently reusable.\n"
					   "%s.",
					   stats->tuples_removed,
					   stats->pages_deleted, stats->pages_free,
					   pg_rusage_show(&ru0))));
740

741
	pfree(stats);
742 743 744 745 746 747 748 749
}

/*
 * lazy_truncate_heap - try to truncate off any empty pages at the end
 */
static void
lazy_truncate_heap(Relation onerel, LVRelStats *vacrelstats)
{
750 751
	BlockNumber old_rel_pages = vacrelstats->rel_pages;
	BlockNumber new_rel_pages;
752
	PageFreeSpaceInfo *pageSpaces;
753 754 755
	int			n;
	int			i,
				j;
756
	PGRUsage	ru0;
757

758
	pg_rusage_init(&ru0);
759 760

	/*
B
Bruce Momjian 已提交
761 762 763 764
	 * We need full exclusive lock on the relation in order to do truncation.
	 * If we can't get it, give up rather than waiting --- we don't want to
	 * block other backends, and we don't want to deadlock (which is quite
	 * possible considering we already hold a lower-grade lock).
765
	 */
766
	if (!ConditionalLockRelation(onerel, AccessExclusiveLock))
767 768 769 770
		return;

	/*
	 * Now that we have exclusive lock, look to see if the rel has grown
B
Bruce Momjian 已提交
771 772
	 * whilst we were vacuuming with non-exclusive lock.  If so, give up; the
	 * newly added pages presumably contain non-deletable tuples.
773 774 775 776 777 778 779 780 781 782 783 784
	 */
	new_rel_pages = RelationGetNumberOfBlocks(onerel);
	if (new_rel_pages != old_rel_pages)
	{
		/* might as well use the latest news when we update pg_class stats */
		vacrelstats->rel_pages = new_rel_pages;
		UnlockRelation(onerel, AccessExclusiveLock);
		return;
	}

	/*
	 * Scan backwards from the end to verify that the end pages actually
B
Bruce Momjian 已提交
785 786 787
	 * contain nothing we need to keep.  This is *necessary*, not optional,
	 * because other backends could have added tuples to these pages whilst we
	 * were vacuuming.
788 789 790 791 792 793 794 795 796 797 798 799 800
	 */
	new_rel_pages = count_nondeletable_pages(onerel, vacrelstats);

	if (new_rel_pages >= old_rel_pages)
	{
		/* can't do anything after all */
		UnlockRelation(onerel, AccessExclusiveLock);
		return;
	}

	/*
	 * Okay to truncate.
	 */
801
	RelationTruncate(onerel, new_rel_pages);
802 803 804 805 806

	/*
	 * Drop free-space info for removed blocks; these must not get entered
	 * into the FSM!
	 */
807
	pageSpaces = vacrelstats->free_pages;
808 809 810 811
	n = vacrelstats->num_free_pages;
	j = 0;
	for (i = 0; i < n; i++)
	{
812
		if (pageSpaces[i].blkno < new_rel_pages)
813
		{
814
			pageSpaces[j] = pageSpaces[i];
815 816 817 818
			j++;
		}
	}
	vacrelstats->num_free_pages = j;
819 820
	/* We destroyed the heap ordering, so mark array unordered */
	vacrelstats->fs_is_heap = false;
821

822 823 824 825
	/* update statistics */
	vacrelstats->rel_pages = new_rel_pages;
	vacrelstats->pages_removed = old_rel_pages - new_rel_pages;

826 827 828 829
	/*
	 * We keep the exclusive lock until commit (perhaps not necessary)?
	 */

830 831 832 833
	ereport(elevel,
			(errmsg("\"%s\": truncated %u to %u pages",
					RelationGetRelationName(onerel),
					old_rel_pages, new_rel_pages),
834 835
			 errdetail("%s.",
					   pg_rusage_show(&ru0))));
836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856
}

/*
 * Rescan end pages to verify that they are (still) empty of needed tuples.
 *
 * Returns number of nondeletable pages (last nonempty page + 1).
 */
static BlockNumber
count_nondeletable_pages(Relation onerel, LVRelStats *vacrelstats)
{
	BlockNumber blkno;
	HeapTupleData tuple;

	/* Strange coding of loop control is needed because blkno is unsigned */
	blkno = vacrelstats->rel_pages;
	while (blkno > vacrelstats->nonempty_pages)
	{
		Buffer		buf;
		Page		page;
		OffsetNumber offnum,
					maxoff;
857
		bool		tupgone,
858 859
					hastup;

860
		vacuum_delay_point();
J
Jan Wieck 已提交
861

862 863 864 865 866 867 868 869 870 871 872
		blkno--;

		buf = ReadBuffer(onerel, blkno);

		/* In this phase we only need shared access to the buffer */
		LockBuffer(buf, BUFFER_LOCK_SHARE);

		page = BufferGetPage(buf);

		if (PageIsNew(page) || PageIsEmpty(page))
		{
873
			/* PageIsNew probably shouldn't happen... */
874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897
			LockBuffer(buf, BUFFER_LOCK_UNLOCK);
			ReleaseBuffer(buf);
			continue;
		}

		hastup = false;
		maxoff = PageGetMaxOffsetNumber(page);
		for (offnum = FirstOffsetNumber;
			 offnum <= maxoff;
			 offnum = OffsetNumberNext(offnum))
		{
			ItemId		itemid;

			itemid = PageGetItemId(page, offnum);

			if (!ItemIdIsUsed(itemid))
				continue;

			tuple.t_data = (HeapTupleHeader) PageGetItem(page, itemid);
			tuple.t_len = ItemIdGetLength(itemid);
			ItemPointerSet(&(tuple.t_self), blkno, offnum);

			tupgone = false;

898
			switch (HeapTupleSatisfiesVacuum(tuple.t_data, OldestXmin, buf))
899 900
			{
				case HEAPTUPLE_DEAD:
901
					tupgone = true;		/* we can delete the tuple */
902 903
					break;
				case HEAPTUPLE_LIVE:
904
					/* Shouldn't be necessary to re-freeze anything */
905 906
					break;
				case HEAPTUPLE_RECENTLY_DEAD:
907

908
					/*
B
Bruce Momjian 已提交
909 910
					 * If tuple is recently deleted then we must not remove it
					 * from relation.
911 912 913 914 915 916 917 918 919
					 */
					break;
				case HEAPTUPLE_INSERT_IN_PROGRESS:
					/* This is an expected case during concurrent vacuum */
					break;
				case HEAPTUPLE_DELETE_IN_PROGRESS:
					/* This is an expected case during concurrent vacuum */
					break;
				default:
920
					elog(ERROR, "unexpected HeapTupleSatisfiesVacuum result");
921 922 923 924 925 926 927 928
					break;
			}

			if (!tupgone)
			{
				hastup = true;
				break;			/* can stop scanning */
			}
929
		}						/* scan along page */
930 931 932

		LockBuffer(buf, BUFFER_LOCK_UNLOCK);

933
		ReleaseBuffer(buf);
934 935 936 937 938 939 940 941

		/* Done scanning if we found a tuple here */
		if (hastup)
			return blkno + 1;
	}

	/*
	 * If we fall out of the loop, all the previously-thought-to-be-empty
B
Bruce Momjian 已提交
942 943
	 * pages really are; we need not bother to look at the last known-nonempty
	 * page.
944 945 946 947 948 949 950 951 952 953 954 955
	 */
	return vacrelstats->nonempty_pages;
}

/*
 * lazy_space_alloc - space allocation decisions for lazy vacuum
 *
 * See the comments at the head of this file for rationale.
 */
static void
lazy_space_alloc(LVRelStats *vacrelstats, BlockNumber relblocks)
{
956
	long		maxtuples;
957 958
	int			maxpages;

959 960
	maxtuples = (maintenance_work_mem * 1024L) / sizeof(ItemPointerData);
	maxtuples = Min(maxtuples, INT_MAX);
961
	maxtuples = Min(maxtuples, MaxAllocSize / sizeof(ItemPointerData));
962
	/* stay sane if small maintenance_work_mem */
963
	maxtuples = Max(maxtuples, MaxHeapTuplesPerPage);
964 965

	vacrelstats->num_dead_tuples = 0;
966
	vacrelstats->max_dead_tuples = (int) maxtuples;
967 968 969 970
	vacrelstats->dead_tuples = (ItemPointer)
		palloc(maxtuples * sizeof(ItemPointerData));

	maxpages = MaxFSMPages;
971
	maxpages = Min(maxpages, MaxAllocSize / sizeof(PageFreeSpaceInfo));
972 973 974 975 976 977 978
	/* No need to allocate more pages than the relation has blocks */
	if (relblocks < (BlockNumber) maxpages)
		maxpages = (int) relblocks;

	vacrelstats->fs_is_heap = false;
	vacrelstats->num_free_pages = 0;
	vacrelstats->max_free_pages = maxpages;
979 980
	vacrelstats->free_pages = (PageFreeSpaceInfo *)
		palloc(maxpages * sizeof(PageFreeSpaceInfo));
981 982 983 984 985 986 987 988 989 990
}

/*
 * lazy_record_dead_tuple - remember one deletable tuple
 */
static void
lazy_record_dead_tuple(LVRelStats *vacrelstats,
					   ItemPointer itemptr)
{
	/*
991
	 * The array shouldn't overflow under normal behavior, but perhaps it
992 993
	 * could if we are given a really small maintenance_work_mem. In that
	 * case, just forget the last few tuples.
994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009
	 */
	if (vacrelstats->num_dead_tuples < vacrelstats->max_dead_tuples)
	{
		vacrelstats->dead_tuples[vacrelstats->num_dead_tuples] = *itemptr;
		vacrelstats->num_dead_tuples++;
	}
}

/*
 * lazy_record_free_space - remember free space on one page
 */
static void
lazy_record_free_space(LVRelStats *vacrelstats,
					   BlockNumber page,
					   Size avail)
{
1010
	PageFreeSpaceInfo *pageSpaces;
1011 1012
	int			n;

1013 1014 1015
	/*
	 * A page with less than stats->threshold free space will be forgotten
	 * immediately, and never passed to the free space map.  Removing the
B
Bruce Momjian 已提交
1016 1017 1018 1019
	 * uselessly small entries early saves cycles, and in particular reduces
	 * the amount of time we spend holding the FSM lock when we finally call
	 * RecordRelationFreeSpace.  Since the FSM will probably drop pages with
	 * little free space anyway, there's no point in making this really small.
1020
	 *
B
Bruce Momjian 已提交
1021 1022 1023 1024 1025
	 * XXX Is it worth trying to measure average tuple size, and using that to
	 * adjust the threshold?  Would be worthwhile if FSM has no stats yet for
	 * this relation.  But changing the threshold as we scan the rel might
	 * lead to bizarre behavior, too.  Also, it's probably better if vacuum.c
	 * has the same thresholding behavior as we do here.
1026 1027
	 */
	if (avail < vacrelstats->threshold)
1028 1029 1030
		return;

	/* Copy pointers to local variables for notational simplicity */
1031
	pageSpaces = vacrelstats->free_pages;
1032 1033 1034 1035 1036
	n = vacrelstats->max_free_pages;

	/* If we haven't filled the array yet, just keep adding entries */
	if (vacrelstats->num_free_pages < n)
	{
1037 1038
		pageSpaces[vacrelstats->num_free_pages].blkno = page;
		pageSpaces[vacrelstats->num_free_pages].avail = avail;
1039 1040 1041 1042 1043 1044 1045
		vacrelstats->num_free_pages++;
		return;
	}

	/*----------
	 * The rest of this routine works with "heap" organization of the
	 * free space arrays, wherein we maintain the heap property
B
Bruce Momjian 已提交
1046
	 *			avail[(j-1) div 2] <= avail[j]	for 0 < j < n.
1047 1048 1049 1050 1051 1052 1053 1054
	 * In particular, the zero'th element always has the smallest available
	 * space and can be discarded to make room for a new page with more space.
	 * See Knuth's discussion of heap-based priority queues, sec 5.2.3;
	 * but note he uses 1-origin array subscripts, not 0-origin.
	 *----------
	 */

	/* If we haven't yet converted the array to heap organization, do it */
1055
	if (!vacrelstats->fs_is_heap)
1056 1057 1058
	{
		/*
		 * Scan backwards through the array, "sift-up" each value into its
B
Bruce Momjian 已提交
1059 1060
		 * correct position.  We can start the scan at n/2-1 since each entry
		 * above that position has no children to worry about.
1061
		 */
1062
		int			l = n / 2;
1063 1064 1065

		while (--l >= 0)
		{
1066 1067
			BlockNumber R = pageSpaces[l].blkno;
			Size		K = pageSpaces[l].avail;
1068 1069 1070 1071 1072
			int			i;		/* i is where the "hole" is */

			i = l;
			for (;;)
			{
1073
				int			j = 2 * i + 1;
1074 1075 1076

				if (j >= n)
					break;
1077
				if (j + 1 < n && pageSpaces[j].avail > pageSpaces[j + 1].avail)
1078
					j++;
1079
				if (K <= pageSpaces[j].avail)
1080
					break;
1081
				pageSpaces[i] = pageSpaces[j];
1082 1083
				i = j;
			}
1084 1085
			pageSpaces[i].blkno = R;
			pageSpaces[i].avail = K;
1086 1087 1088 1089 1090 1091
		}

		vacrelstats->fs_is_heap = true;
	}

	/* If new page has more than zero'th entry, insert it into heap */
1092
	if (avail > pageSpaces[0].avail)
1093 1094
	{
		/*
1095
		 * Notionally, we replace the zero'th entry with the new data, and
B
Bruce Momjian 已提交
1096 1097 1098
		 * then sift-up to maintain the heap property.	Physically, the new
		 * data doesn't get stored into the arrays until we find the right
		 * location for it.
1099
		 */
1100
		int			i = 0;		/* i is where the "hole" is */
1101 1102 1103

		for (;;)
		{
1104
			int			j = 2 * i + 1;
1105 1106 1107

			if (j >= n)
				break;
1108
			if (j + 1 < n && pageSpaces[j].avail > pageSpaces[j + 1].avail)
1109
				j++;
1110
			if (avail <= pageSpaces[j].avail)
1111
				break;
1112
			pageSpaces[i] = pageSpaces[j];
1113 1114
			i = j;
		}
1115 1116
		pageSpaces[i].blkno = page;
		pageSpaces[i].avail = avail;
1117 1118 1119 1120 1121 1122
	}
}

/*
 *	lazy_tid_reaped() -- is a particular tid deletable?
 *
1123 1124
 *		This has the right signature to be an IndexBulkDeleteCallback.
 *
1125 1126 1127
 *		Assumes dead_tuples array is in sorted order.
 */
static bool
1128
lazy_tid_reaped(ItemPointer itemptr, void *state)
1129
{
1130
	LVRelStats *vacrelstats = (LVRelStats *) state;
1131
	ItemPointer res;
1132 1133 1134 1135 1136 1137 1138 1139 1140 1141

	res = (ItemPointer) bsearch((void *) itemptr,
								(void *) vacrelstats->dead_tuples,
								vacrelstats->num_dead_tuples,
								sizeof(ItemPointerData),
								vac_cmp_itemptr);

	return (res != NULL);
}

1142 1143 1144 1145 1146 1147 1148 1149 1150
/*
 * Dummy version for lazy_scan_index.
 */
static bool
dummy_tid_reaped(ItemPointer itemptr, void *state)
{
	return false;
}

1151 1152 1153 1154 1155 1156 1157
/*
 * Update the shared Free Space Map with the info we now have about
 * free space in the relation, discarding any old info the map may have.
 */
static void
lazy_update_fsm(Relation onerel, LVRelStats *vacrelstats)
{
1158 1159 1160
	PageFreeSpaceInfo *pageSpaces = vacrelstats->free_pages;
	int			nPages = vacrelstats->num_free_pages;

1161
	/*
1162
	 * Sort data into order, as required by RecordRelationFreeSpace.
1163
	 */
1164 1165 1166 1167
	if (nPages > 1)
		qsort(pageSpaces, nPages, sizeof(PageFreeSpaceInfo),
			  vac_cmp_page_spaces);

1168
	RecordRelationFreeSpace(&onerel->rd_node, nPages, pageSpaces);
1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199
}

/*
 * Comparator routines for use with qsort() and bsearch().
 */
static int
vac_cmp_itemptr(const void *left, const void *right)
{
	BlockNumber lblk,
				rblk;
	OffsetNumber loff,
				roff;

	lblk = ItemPointerGetBlockNumber((ItemPointer) left);
	rblk = ItemPointerGetBlockNumber((ItemPointer) right);

	if (lblk < rblk)
		return -1;
	if (lblk > rblk)
		return 1;

	loff = ItemPointerGetOffsetNumber((ItemPointer) left);
	roff = ItemPointerGetOffsetNumber((ItemPointer) right);

	if (loff < roff)
		return -1;
	if (loff > roff)
		return 1;

	return 0;
}
1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212

static int
vac_cmp_page_spaces(const void *left, const void *right)
{
	PageFreeSpaceInfo *linfo = (PageFreeSpaceInfo *) left;
	PageFreeSpaceInfo *rinfo = (PageFreeSpaceInfo *) right;

	if (linfo->blkno < rinfo->blkno)
		return -1;
	else if (linfo->blkno > rinfo->blkno)
		return 1;
	return 0;
}