vacuumlazy.c 33.5 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
 * 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.
 *
28 29 30 31 32
 * If we're processing a table with no indexes, we can just vacuum each page
 * as we go; there's no need to save up multiple tuples to minimize the number
 * of index scans performed.  So we don't use maintenance_work_mem memory for
 * the TID array, just enough to hold as many heap tuples as fit on one page.
 *
33
 *
34
 * Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group
35 36 37 38
 * Portions Copyright (c) 1994, Regents of the University of California
 *
 *
 * IDENTIFICATION
39
 *	  $PostgreSQL: pgsql/src/backend/commands/vacuumlazy.c,v 1.81 2006/11/05 22:42:08 tgl Exp $
40 41 42 43 44
 *
 *-------------------------------------------------------------------------
 */
#include "postgres.h"

45 46
#include <math.h>

47 48
#include "access/genam.h"
#include "access/heapam.h"
49
#include "access/transam.h"
50 51
#include "commands/vacuum.h"
#include "miscadmin.h"
52
#include "pgstat.h"
53
#include "storage/freespace.h"
54
#include "utils/lsyscache.h"
55
#include "utils/memutils.h"
56
#include "utils/pg_rusage.h"
57 58 59 60 61 62


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


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


B
Bruce Momjian 已提交
96
static int	elevel = -1;
97

98 99 100
static TransactionId OldestXmin;
static TransactionId FreezeLimit;

101 102 103

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


/*
 *	lazy_vacuum_rel() -- perform LAZY VACUUM for one heap relation
 *
 *		This routine vacuums a single heap, cleans out its indexes, and
132
 *		updates its relpages and reltuples statistics.
133 134 135 136 137 138 139 140 141 142
 *
 *		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;
143
	BlockNumber possibly_freeable;
144 145

	if (vacstmt->verbose)
146
		elevel = INFO;
147
	else
148
		elevel = DEBUG2;
B
Bruce Momjian 已提交
149

150 151
	vacuum_set_xid_limits(vacstmt, onerel->rd_rel->relisshared,
						  &OldestXmin, &FreezeLimit);
152

153
	vacrelstats = (LVRelStats *) palloc0(sizeof(LVRelStats));
154

155 156 157 158
	/* 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);

159
	/* Open all indexes of the relation */
160
	vac_open_indexes(onerel, RowExclusiveLock, &nindexes, &Irel);
161
	vacrelstats->hasindex = (nindexes > 0);
162 163

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

	/* Done with indexes */
167
	vac_close_indexes(nindexes, Irel, NoLock);
168 169 170 171

	/*
	 * Optionally truncate the relation.
	 *
172 173
	 * 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.
174 175
	 */
	possibly_freeable = vacrelstats->rel_pages - vacrelstats->nonempty_pages;
176
	if (possibly_freeable >= REL_TRUNCATE_MINIMUM ||
B
Bruce Momjian 已提交
177
		possibly_freeable >= vacrelstats->rel_pages / REL_TRUNCATE_FRACTION)
178
		lazy_truncate_heap(onerel, vacrelstats);
179 180 181 182 183

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

	/* Update statistics in pg_class */
184 185 186
	vac_update_relstats(RelationGetRelid(onerel),
						vacrelstats->rel_pages,
						vacrelstats->rel_tuples,
187
						vacrelstats->hasindex,
188
						FreezeLimit);
189 190

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


/*
 *	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
202
 *		for dead-tuple TIDs, invoke vacuuming of indexes and heap.
203
 *
204 205
 *		If there are no indexes then we just vacuum each dirty page as we
 *		process it, since there's no point in gathering many tuples.
206 207 208
 */
static void
lazy_scan_heap(Relation onerel, LVRelStats *vacrelstats,
209
			   Relation *Irel, int nindexes)
210 211 212 213 214
{
	BlockNumber nblocks,
				blkno;
	HeapTupleData tuple;
	char	   *relname;
215 216
	BlockNumber empty_pages,
				vacuumed_pages;
217 218 219 220
	double		num_tuples,
				tups_vacuumed,
				nkeep,
				nunused;
221
	IndexBulkDeleteResult **indstats;
222
	int			i;
223
	PGRUsage	ru0;
224

225
	pg_rusage_init(&ru0);
226 227

	relname = RelationGetRelationName(onerel);
228 229 230 231
	ereport(elevel,
			(errmsg("vacuuming \"%s.%s\"",
					get_namespace_name(RelationGetNamespace(onerel)),
					relname)));
232

233
	empty_pages = vacuumed_pages = 0;
234 235
	num_tuples = tups_vacuumed = nkeep = nunused = 0;

236 237
	indstats = (IndexBulkDeleteResult **)
		palloc0(nindexes * sizeof(IndexBulkDeleteResult *));
238

239 240 241 242
	nblocks = RelationGetNumberOfBlocks(onerel);
	vacrelstats->rel_pages = nblocks;
	vacrelstats->nonempty_pages = 0;

243
	lazy_space_alloc(vacrelstats, nblocks);
244 245 246 247 248 249 250

	for (blkno = 0; blkno < nblocks; blkno++)
	{
		Buffer		buf;
		Page		page;
		OffsetNumber offnum,
					maxoff;
251
		bool		tupgone,
252 253
					hastup;
		int			prev_dead_count;
254 255
		OffsetNumber frozen[MaxOffsetNumber];
		int			nfrozen;
256

257
		vacuum_delay_point();
J
Jan Wieck 已提交
258

259
		/*
B
Bruce Momjian 已提交
260 261
		 * 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.
262
		 */
263
		if ((vacrelstats->max_dead_tuples - vacrelstats->num_dead_tuples) < MaxHeapTuplesPerPage &&
264 265 266 267
			vacrelstats->num_dead_tuples > 0)
		{
			/* Remove index entries */
			for (i = 0; i < nindexes; i++)
268
				lazy_vacuum_index(Irel[i],
269
								  &indstats[i],
270
								  vacrelstats);
271 272 273 274 275 276 277 278
			/* 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);

279
		/* Initially, we only need shared access to the buffer */
280
		LockBuffer(buf, BUFFER_LOCK_SHARE);
281 282 283 284 285

		page = BufferGetPage(buf);

		if (PageIsNew(page))
		{
286
			/*
B
Bruce Momjian 已提交
287 288 289
			 * 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.
290
			 *
291 292 293
			 * 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 已提交
294 295 296 297 298
			 * 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.
299
			 *
300 301 302
			 * 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.
303
			 *
304 305
			 * Note: the comparable code in vacuum.c need not worry because
			 * it's got exclusive lock on the whole relation.
306
			 */
307
			LockBuffer(buf, BUFFER_LOCK_UNLOCK);
308 309
			LockRelationForExtension(onerel, ExclusiveLock);
			UnlockRelationForExtension(onerel, ExclusiveLock);
310 311 312
			LockBuffer(buf, BUFFER_LOCK_EXCLUSIVE);
			if (PageIsNew(page))
			{
313
				ereport(WARNING,
B
Bruce Momjian 已提交
314 315
				(errmsg("relation \"%s\" page %u is uninitialized --- fixing",
						relname, blkno)));
316
				PageInit(page, BufferGetPageSize(buf), 0);
317
				empty_pages++;
318 319 320
				lazy_record_free_space(vacrelstats, blkno,
									   PageGetFreeSpace(page));
			}
321 322
			MarkBufferDirty(buf);
			UnlockReleaseBuffer(buf);
323 324 325 326 327 328 329 330
			continue;
		}

		if (PageIsEmpty(page))
		{
			empty_pages++;
			lazy_record_free_space(vacrelstats, blkno,
								   PageGetFreeSpace(page));
331
			UnlockReleaseBuffer(buf);
332 333 334
			continue;
		}

335
		nfrozen = 0;
336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358
		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
					/* Tuple is good --- but let's do some validity checks */
366 367 368 369
					if (onerel->rd_rel->relhasoids &&
						!OidIsValid(HeapTupleGetOid(&tuple)))
						elog(WARNING, "relation \"%s\" TID %u/%u: OID is invalid",
							 relname, blkno, offnum);
370 371
					break;
				case HEAPTUPLE_RECENTLY_DEAD:
372

373
					/*
B
Bruce Momjian 已提交
374 375
					 * If tuple is recently deleted then we must not remove it
					 * from relation.
376 377 378 379 380 381 382 383 384 385
					 */
					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:
386
					elog(ERROR, "unexpected HeapTupleSatisfiesVacuum result");
387 388 389 390 391 392 393 394 395 396 397 398
					break;
			}

			if (tupgone)
			{
				lazy_record_dead_tuple(vacrelstats, &(tuple.t_self));
				tups_vacuumed += 1;
			}
			else
			{
				num_tuples += 1;
				hastup = true;
399

B
Bruce Momjian 已提交
400
				/*
401 402 403
				 * Each non-removable tuple must be checked to see if it
				 * needs freezing.  If we already froze anything, then
				 * we've already switched the buffer lock to exclusive.
404
				 */
405 406 407
				if (heap_freeze_tuple(tuple.t_data, FreezeLimit,
									  (nfrozen > 0) ? InvalidBuffer : buf))
					frozen[nfrozen++] = offnum;
408
			}
409
		}						/* scan along page */
410

411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430
		/*
		 * If we froze any tuples, mark the buffer dirty, and write a WAL
		 * record recording the changes.  We must log the changes to be
		 * crash-safe against future truncation of CLOG.
		 */
		if (nfrozen > 0)
		{
			MarkBufferDirty(buf);
			/* no XLOG for temp tables, though */
			if (!onerel->rd_istemp)
			{
				XLogRecPtr	recptr;

				recptr = log_heap_freeze(onerel, buf, FreezeLimit,
										 frozen, nfrozen);
				PageSetLSN(page, recptr);
				PageSetTLI(page, ThisTimeLineID);
			}
		}

431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447
		/*
		 * If there are no indexes then we can vacuum the page right now
		 * instead of doing a second scan.
		 */
		if (nindexes == 0 &&
			vacrelstats->num_dead_tuples > 0)
		{
			/* Trade in buffer share lock for super-exclusive lock */
			LockBuffer(buf, BUFFER_LOCK_UNLOCK);
			LockBufferForCleanup(buf);
			/* Remove tuples from heap */
			lazy_vacuum_page(onerel, blkno, buf, 0, vacrelstats);
			/* Forget the now-vacuumed tuples, and press on */
			vacrelstats->num_dead_tuples = 0;
			vacuumed_pages++;
		}

448
		/*
449
		 * If we remembered any tuples for deletion, then the page will be
B
Bruce Momjian 已提交
450 451
		 * visited again by lazy_vacuum_heap, which will compute and record
		 * its post-compaction free space.	If not, then we're done with this
B
Bruce Momjian 已提交
452 453
		 * page, so remember its free space as-is.	(This path will always be
		 * taken if there are no indexes.)
454 455 456 457 458 459 460 461 462 463 464
		 */
		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;

465
		UnlockReleaseBuffer(buf);
466 467
	}

468 469
	/* save stats for use later */
	vacrelstats->rel_tuples = num_tuples;
470
	vacrelstats->tuples_deleted = tups_vacuumed;
471

472
	/* If any tuples need to be deleted, perform final vacuum cycle */
473
	/* XXX put a threshold on min number of tuples here? */
474 475 476 477
	if (vacrelstats->num_dead_tuples > 0)
	{
		/* Remove index entries */
		for (i = 0; i < nindexes; i++)
478
			lazy_vacuum_index(Irel[i],
479
							  &indstats[i],
480
							  vacrelstats);
481 482 483
		/* Remove tuples from heap */
		lazy_vacuum_heap(onerel, vacrelstats);
	}
484 485 486 487

	/* Do post-vacuum cleanup and statistics update for each index */
	for (i = 0; i < nindexes; i++)
		lazy_cleanup_index(Irel[i], indstats[i], vacrelstats);
488

489 490 491 492 493 494 495
	/* If no indexes, make log report that lazy_vacuum_heap would've made */
	if (vacuumed_pages)
		ereport(elevel,
				(errmsg("\"%s\": removed %.0f row versions in %u pages",
						RelationGetRelationName(onerel),
						tups_vacuumed, vacuumed_pages)));

496
	ereport(elevel,
497
			(errmsg("\"%s\": found %.0f removable, %.0f nonremovable row versions in %u pages",
498 499
					RelationGetRelationName(onerel),
					tups_vacuumed, num_tuples, nblocks),
500
			 errdetail("%.0f dead row versions cannot be removed yet.\n"
501
					   "There were %.0f unused item pointers.\n"
502
					   "%u pages contain useful free space.\n"
503
					   "%u pages are entirely empty.\n"
504
					   "%s.",
505 506
					   nkeep,
					   nunused,
507
					   vacrelstats->tot_free_pages,
508
					   empty_pages,
509
					   pg_rusage_show(&ru0))));
510 511 512 513 514 515 516

	if (vacrelstats->tot_free_pages > MaxFSMPages)
		ereport(WARNING,
				(errmsg("relation \"%s.%s\" contains more than \"max_fsm_pages\" pages with useful free space",
						get_namespace_name(RelationGetNamespace(onerel)),
						relname),
				 errhint("Consider compacting this relation or increasing the configuration parameter \"max_fsm_pages\".")));
517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535
}


/*
 *	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;
536
	PGRUsage	ru0;
537

538
	pg_rusage_init(&ru0);
539 540 541 542 543
	npages = 0;

	tupindex = 0;
	while (tupindex < vacrelstats->num_dead_tuples)
	{
544
		BlockNumber tblk;
545 546 547
		Buffer		buf;
		Page		page;

548
		vacuum_delay_point();
J
Jan Wieck 已提交
549

550 551 552 553 554 555 556 557
		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));
558
		UnlockReleaseBuffer(buf);
559 560 561
		npages++;
	}

562
	ereport(elevel,
563
			(errmsg("\"%s\": removed %d row versions in %d pages",
564 565
					RelationGetRelationName(onerel),
					tupindex, npages),
566 567
			 errdetail("%s.",
					   pg_rusage_show(&ru0))));
568 569 570 571 572 573
}

/*
 *	lazy_vacuum_page() -- free dead tuples on a page
 *					 and repair its fragmentation.
 *
574
 * Caller must hold pin and lock on the buffer.
575 576 577 578 579 580 581 582 583
 *
 * 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)
{
584
	OffsetNumber unused[MaxOffsetNumber];
585 586 587 588 589
	int			uncnt;
	Page		page = BufferGetPage(buffer);
	ItemId		itemid;

	START_CRIT_SECTION();
590

591 592
	for (; tupindex < vacrelstats->num_dead_tuples; tupindex++)
	{
593 594
		BlockNumber tblk;
		OffsetNumber toff;
595 596 597 598 599 600 601 602 603 604 605

		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);

606 607
	MarkBufferDirty(buffer);

608 609
	/* XLOG stuff */
	if (!onerel->rd_istemp)
610 611 612
	{
		XLogRecPtr	recptr;

613
		recptr = log_heap_clean(onerel, buffer, unused, uncnt);
614
		PageSetLSN(page, recptr);
615
		PageSetTLI(page, ThisTimeLineID);
616
	}
617 618 619 620 621 622
	else
	{
		/* No XLOG record, but still need to flag that XID exists on disk */
		MyXactMadeTempRelUpdate = true;
	}

623 624 625 626 627
	END_CRIT_SECTION();

	return tupindex;
}

628
/*
629
 *	lazy_vacuum_index() -- vacuum one index relation.
630
 *
631 632
 *		Delete all the index entries pointing to tuples listed in
 *		vacrelstats->dead_tuples, and update running statistics.
633 634
 */
static void
635 636 637
lazy_vacuum_index(Relation indrel,
				  IndexBulkDeleteResult **stats,
				  LVRelStats *vacrelstats)
638
{
639
	IndexVacuumInfo ivinfo;
640
	PGRUsage	ru0;
641

642
	pg_rusage_init(&ru0);
643

644 645 646 647 648
	ivinfo.index = indrel;
	ivinfo.vacuum_full = false;
	ivinfo.message_level = elevel;
	/* We don't yet know rel_tuples, so pass -1 */
	ivinfo.num_heap_tuples = -1;
649

650 651 652
	/* Do bulk deletion */
	*stats = index_bulk_delete(&ivinfo, *stats,
							   lazy_tid_reaped, (void *) vacrelstats);
653

654
	ereport(elevel,
655
			(errmsg("scanned index \"%s\" to remove %d row versions",
B
Bruce Momjian 已提交
656
					RelationGetRelationName(indrel),
657 658
					vacrelstats->num_dead_tuples),
			 errdetail("%s.", pg_rusage_show(&ru0))));
659 660
}

661
/*
662
 *	lazy_cleanup_index() -- do post-vacuum cleanup for one index relation.
663 664
 */
static void
665 666 667
lazy_cleanup_index(Relation indrel,
				   IndexBulkDeleteResult *stats,
				   LVRelStats *vacrelstats)
668
{
669
	IndexVacuumInfo ivinfo;
670
	PGRUsage	ru0;
671

672
	pg_rusage_init(&ru0);
673

674 675 676 677
	ivinfo.index = indrel;
	ivinfo.vacuum_full = false;
	ivinfo.message_level = elevel;
	ivinfo.num_heap_tuples = vacrelstats->rel_tuples;
678

679
	stats = index_vacuum_cleanup(&ivinfo, stats);
680 681 682 683

	if (!stats)
		return;

684
	/* now update statistics in pg_class */
685 686 687
	vac_update_relstats(RelationGetRelid(indrel),
						stats->num_pages,
						stats->num_index_tuples,
688
						false, InvalidTransactionId);
689

690
	ereport(elevel,
B
Bruce Momjian 已提交
691 692 693 694 695 696 697 698 699 700
			(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))));
701

702
	pfree(stats);
703 704 705 706 707 708
}

/*
 * lazy_truncate_heap - try to truncate off any empty pages at the end
 */
static void
709
lazy_truncate_heap(Relation onerel, LVRelStats *vacrelstats)
710
{
711 712
	BlockNumber old_rel_pages = vacrelstats->rel_pages;
	BlockNumber new_rel_pages;
713
	PageFreeSpaceInfo *pageSpaces;
714 715 716
	int			n;
	int			i,
				j;
717
	PGRUsage	ru0;
718

719
	pg_rusage_init(&ru0);
720 721

	/*
B
Bruce Momjian 已提交
722 723 724 725
	 * 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).
726
	 */
727
	if (!ConditionalLockRelation(onerel, AccessExclusiveLock))
728 729 730 731
		return;

	/*
	 * Now that we have exclusive lock, look to see if the rel has grown
B
Bruce Momjian 已提交
732 733
	 * whilst we were vacuuming with non-exclusive lock.  If so, give up; the
	 * newly added pages presumably contain non-deletable tuples.
734 735 736 737 738 739 740 741 742 743 744 745
	 */
	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 已提交
746 747 748
	 * 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.
749
	 */
750
	new_rel_pages = count_nondeletable_pages(onerel, vacrelstats);
751 752 753 754 755 756 757 758 759 760 761

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

	/*
	 * Okay to truncate.
	 */
762
	RelationTruncate(onerel, new_rel_pages);
763 764 765 766 767

	/*
	 * Drop free-space info for removed blocks; these must not get entered
	 * into the FSM!
	 */
768
	pageSpaces = vacrelstats->free_pages;
769 770 771 772
	n = vacrelstats->num_free_pages;
	j = 0;
	for (i = 0; i < n; i++)
	{
773
		if (pageSpaces[i].blkno < new_rel_pages)
774
		{
775
			pageSpaces[j] = pageSpaces[i];
776 777 778 779
			j++;
		}
	}
	vacrelstats->num_free_pages = j;
B
Bruce Momjian 已提交
780

781 782 783
	/*
	 * If tot_free_pages was more than num_free_pages, we can't tell for sure
	 * what its correct value is now, because we don't know which of the
B
Bruce Momjian 已提交
784 785
	 * forgotten pages are getting truncated.  Conservatively set it equal to
	 * num_free_pages.
786 787 788
	 */
	vacrelstats->tot_free_pages = j;

789 790
	/* We destroyed the heap ordering, so mark array unordered */
	vacrelstats->fs_is_heap = false;
791

792 793 794 795
	/* update statistics */
	vacrelstats->rel_pages = new_rel_pages;
	vacrelstats->pages_removed = old_rel_pages - new_rel_pages;

796 797 798 799
	/*
	 * We keep the exclusive lock until commit (perhaps not necessary)?
	 */

800 801 802 803
	ereport(elevel,
			(errmsg("\"%s\": truncated %u to %u pages",
					RelationGetRelationName(onerel),
					old_rel_pages, new_rel_pages),
804 805
			 errdetail("%s.",
					   pg_rusage_show(&ru0))));
806 807 808 809 810 811 812 813
}

/*
 * Rescan end pages to verify that they are (still) empty of needed tuples.
 *
 * Returns number of nondeletable pages (last nonempty page + 1).
 */
static BlockNumber
814
count_nondeletable_pages(Relation onerel, LVRelStats *vacrelstats)
815 816 817 818 819 820 821 822 823 824 825 826
{
	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;
827
		bool		tupgone,
828 829
					hastup;

830
		vacuum_delay_point();
J
Jan Wieck 已提交
831

832 833 834 835 836 837 838 839 840 841 842
		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))
		{
843
			/* PageIsNew probably shouldn't happen... */
844
			UnlockReleaseBuffer(buf);
845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866
			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;

867
			switch (HeapTupleSatisfiesVacuum(tuple.t_data, OldestXmin, buf))
868 869
			{
				case HEAPTUPLE_DEAD:
870
					tupgone = true;		/* we can delete the tuple */
871 872
					break;
				case HEAPTUPLE_LIVE:
873
					/* Shouldn't be necessary to re-freeze anything */
874 875
					break;
				case HEAPTUPLE_RECENTLY_DEAD:
876

877
					/*
B
Bruce Momjian 已提交
878 879
					 * If tuple is recently deleted then we must not remove it
					 * from relation.
880 881 882 883 884 885 886 887 888
					 */
					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:
889
					elog(ERROR, "unexpected HeapTupleSatisfiesVacuum result");
890 891 892 893 894 895 896 897
					break;
			}

			if (!tupgone)
			{
				hastup = true;
				break;			/* can stop scanning */
			}
898
		}						/* scan along page */
899

900
		UnlockReleaseBuffer(buf);
901 902 903 904 905 906 907 908

		/* 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 已提交
909 910
	 * pages really are; we need not bother to look at the last known-nonempty
	 * page.
911 912 913 914 915 916 917 918 919 920
	 */
	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
921
lazy_space_alloc(LVRelStats *vacrelstats, BlockNumber relblocks)
922
{
923
	long		maxtuples;
924 925
	int			maxpages;

926 927
	if (vacrelstats->hasindex)
	{
928 929 930 931 932
		maxtuples = (maintenance_work_mem * 1024L) / sizeof(ItemPointerData);
		maxtuples = Min(maxtuples, INT_MAX);
		maxtuples = Min(maxtuples, MaxAllocSize / sizeof(ItemPointerData));
		/* stay sane if small maintenance_work_mem */
		maxtuples = Max(maxtuples, MaxHeapTuplesPerPage);
933 934 935
	}
	else
	{
936 937
		maxtuples = MaxHeapTuplesPerPage;
	}
938 939

	vacrelstats->num_dead_tuples = 0;
940
	vacrelstats->max_dead_tuples = (int) maxtuples;
941 942 943 944
	vacrelstats->dead_tuples = (ItemPointer)
		palloc(maxtuples * sizeof(ItemPointerData));

	maxpages = MaxFSMPages;
945
	maxpages = Min(maxpages, MaxAllocSize / sizeof(PageFreeSpaceInfo));
946 947 948 949 950 951 952
	/* 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;
953 954
	vacrelstats->free_pages = (PageFreeSpaceInfo *)
		palloc(maxpages * sizeof(PageFreeSpaceInfo));
955
	vacrelstats->tot_free_pages = 0;
956 957 958 959 960 961 962 963 964 965
}

/*
 * lazy_record_dead_tuple - remember one deletable tuple
 */
static void
lazy_record_dead_tuple(LVRelStats *vacrelstats,
					   ItemPointer itemptr)
{
	/*
966
	 * The array shouldn't overflow under normal behavior, but perhaps it
967 968
	 * could if we are given a really small maintenance_work_mem. In that
	 * case, just forget the last few tuples.
969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984
	 */
	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)
{
985
	PageFreeSpaceInfo *pageSpaces;
986 987
	int			n;

988 989 990
	/*
	 * 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 已提交
991 992 993 994
	 * 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.
995
	 *
B
Bruce Momjian 已提交
996 997 998 999 1000
	 * 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.
1001 1002
	 */
	if (avail < vacrelstats->threshold)
1003 1004
		return;

1005 1006 1007
	/* Count all pages over threshold, even if not enough space in array */
	vacrelstats->tot_free_pages++;

1008
	/* Copy pointers to local variables for notational simplicity */
1009
	pageSpaces = vacrelstats->free_pages;
1010 1011 1012 1013 1014
	n = vacrelstats->max_free_pages;

	/* If we haven't filled the array yet, just keep adding entries */
	if (vacrelstats->num_free_pages < n)
	{
1015 1016
		pageSpaces[vacrelstats->num_free_pages].blkno = page;
		pageSpaces[vacrelstats->num_free_pages].avail = avail;
1017 1018 1019 1020 1021 1022 1023
		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 已提交
1024
	 *			avail[(j-1) div 2] <= avail[j]	for 0 < j < n.
1025 1026 1027 1028 1029 1030 1031 1032
	 * 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 */
1033
	if (!vacrelstats->fs_is_heap)
1034 1035 1036
	{
		/*
		 * Scan backwards through the array, "sift-up" each value into its
B
Bruce Momjian 已提交
1037 1038
		 * correct position.  We can start the scan at n/2-1 since each entry
		 * above that position has no children to worry about.
1039
		 */
1040
		int			l = n / 2;
1041 1042 1043

		while (--l >= 0)
		{
1044 1045
			BlockNumber R = pageSpaces[l].blkno;
			Size		K = pageSpaces[l].avail;
1046 1047 1048 1049 1050
			int			i;		/* i is where the "hole" is */

			i = l;
			for (;;)
			{
1051
				int			j = 2 * i + 1;
1052 1053 1054

				if (j >= n)
					break;
1055
				if (j + 1 < n && pageSpaces[j].avail > pageSpaces[j + 1].avail)
1056
					j++;
1057
				if (K <= pageSpaces[j].avail)
1058
					break;
1059
				pageSpaces[i] = pageSpaces[j];
1060 1061
				i = j;
			}
1062 1063
			pageSpaces[i].blkno = R;
			pageSpaces[i].avail = K;
1064 1065 1066 1067 1068 1069
		}

		vacrelstats->fs_is_heap = true;
	}

	/* If new page has more than zero'th entry, insert it into heap */
1070
	if (avail > pageSpaces[0].avail)
1071 1072
	{
		/*
1073
		 * Notionally, we replace the zero'th entry with the new data, and
B
Bruce Momjian 已提交
1074 1075 1076
		 * 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.
1077
		 */
1078
		int			i = 0;		/* i is where the "hole" is */
1079 1080 1081

		for (;;)
		{
1082
			int			j = 2 * i + 1;
1083 1084 1085

			if (j >= n)
				break;
1086
			if (j + 1 < n && pageSpaces[j].avail > pageSpaces[j + 1].avail)
1087
				j++;
1088
			if (avail <= pageSpaces[j].avail)
1089
				break;
1090
			pageSpaces[i] = pageSpaces[j];
1091 1092
			i = j;
		}
1093 1094
		pageSpaces[i].blkno = page;
		pageSpaces[i].avail = avail;
1095 1096 1097 1098 1099 1100
	}
}

/*
 *	lazy_tid_reaped() -- is a particular tid deletable?
 *
1101 1102
 *		This has the right signature to be an IndexBulkDeleteCallback.
 *
1103 1104 1105
 *		Assumes dead_tuples array is in sorted order.
 */
static bool
1106
lazy_tid_reaped(ItemPointer itemptr, void *state)
1107
{
1108
	LVRelStats *vacrelstats = (LVRelStats *) state;
1109
	ItemPointer res;
1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126

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

	return (res != NULL);
}

/*
 * 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)
{
1127 1128 1129
	PageFreeSpaceInfo *pageSpaces = vacrelstats->free_pages;
	int			nPages = vacrelstats->num_free_pages;

1130
	/*
1131
	 * Sort data into order, as required by RecordRelationFreeSpace.
1132
	 */
1133 1134 1135 1136
	if (nPages > 1)
		qsort(pageSpaces, nPages, sizeof(PageFreeSpaceInfo),
			  vac_cmp_page_spaces);

1137 1138
	RecordRelationFreeSpace(&onerel->rd_node, vacrelstats->tot_free_pages,
							nPages, pageSpaces);
1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169
}

/*
 * 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;
}
1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182

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;
}