pgstat.c 68.3 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11
/* ----------
 * pgstat.c
 *
 *	All the statistics collector stuff hacked up in one big, ugly file.
 *
 *	TODO:	- Separate collector, postmaster and backend stuff
 *			  into different files.
 *
 *			- Add some automatic call for pgstat vacuuming.
 *
 *			- Add a pgstat config column to pg_database, so this
12
 *			  entire thing can be enabled/disabled on a per db basis.
13
 *
14
 *	Copyright (c) 2001-2007, PostgreSQL Global Development Group
15
 *
16
 *	$PostgreSQL: pgsql/src/backend/postmaster/pgstat.c,v 1.155 2007/04/30 16:37:08 tgl Exp $
17 18
 * ----------
 */
P
Peter Eisentraut 已提交
19 20
#include "postgres.h"

21 22 23 24 25
#include <unistd.h>
#include <fcntl.h>
#include <sys/param.h>
#include <sys/time.h>
#include <sys/socket.h>
B
Bruce Momjian 已提交
26
#include <netdb.h>
27 28 29
#include <netinet/in.h>
#include <arpa/inet.h>
#include <signal.h>
30
#include <time.h>
31 32 33 34 35 36
#ifdef HAVE_POLL_H
#include <poll.h>
#endif
#ifdef HAVE_SYS_POLL_H
#include <sys/poll.h>
#endif
37

38 39
#include "pgstat.h"

40
#include "access/heapam.h"
41
#include "access/transam.h"
42
#include "access/xact.h"
43
#include "catalog/pg_database.h"
44
#include "libpq/ip.h"
B
Bruce Momjian 已提交
45
#include "libpq/libpq.h"
46
#include "libpq/pqsignal.h"
47
#include "mb/pg_wchar.h"
48
#include "miscadmin.h"
49
#include "postmaster/autovacuum.h"
50
#include "postmaster/fork_process.h"
51
#include "postmaster/postmaster.h"
52
#include "storage/backendid.h"
53
#include "storage/fd.h"
54
#include "storage/ipc.h"
55
#include "storage/pg_shmem.h"
56 57
#include "storage/pmsignal.h"
#include "utils/memutils.h"
58
#include "utils/ps_status.h"
59 60


61
/* ----------
62
 * Paths for the statistics files (relative to installation's $PGDATA).
63 64
 * ----------
 */
65 66
#define PGSTAT_STAT_FILENAME	"global/pgstat.stat"
#define PGSTAT_STAT_TMPFILE		"global/pgstat.tmp"
67 68 69 70 71

/* ----------
 * Timer definitions.
 * ----------
 */
72 73
#define PGSTAT_STAT_INTERVAL	500		/* How often to write the status file;
										 * in milliseconds. */
74

75 76 77
#define PGSTAT_RESTART_INTERVAL 60		/* How often to attempt to restart a
										 * failed statistics collector; in
										 * seconds. */
78

79 80 81
#define PGSTAT_SELECT_TIMEOUT	2		/* How often to check for postmaster
										 * death; in seconds. */

82 83 84 85 86 87 88 89 90

/* ----------
 * The initial size hints for the hash tables used in the collector.
 * ----------
 */
#define PGSTAT_DB_HASH_SIZE		16
#define PGSTAT_TAB_HASH_SIZE	512


91
/* ----------
92
 * GUC parameters
93 94
 * ----------
 */
95
bool		pgstat_collect_startcollector = true;
96
bool		pgstat_collect_resetonpmstart = false;
97 98
bool		pgstat_collect_tuplelevel = false;
bool		pgstat_collect_blocklevel = false;
99
bool		pgstat_collect_querystring = false;
100 101 102 103 104

/* ----------
 * Local data
 * ----------
 */
B
Bruce Momjian 已提交
105
NON_EXEC_STATIC int pgStatSock = -1;
106

B
Bruce Momjian 已提交
107
static struct sockaddr_storage pgStatAddr;
108

109
static time_t last_pgstat_start_time;
110

111
static bool pgStatRunningInCollector = false;
112

113 114 115 116
/*
 * Place where backends store per-table info to be sent to the collector.
 * We store shared relations separately from non-shared ones, to be able to
 * send them in separate messages.
117 118 119 120 121 122 123 124
 *
 * NOTE: once allocated, a PgStat_MsgTabstat struct belonging to a
 * TabStatArray is never moved or deleted for the life of the backend.
 * Also, we zero out the t_id fields of the contained PgStat_TableEntry
 * structs whenever they are not actively in use.  This allows PgStat_Info
 * pointers to be treated as long-lived data, avoiding repeated searches in
 * pgstat_initstats() when a relation is repeatedly heap_open'd or
 * index_open'd during a transaction.
125 126 127
 */
typedef struct TabStatArray
{
B
Bruce Momjian 已提交
128 129
	int			tsa_alloc;		/* num allocated */
	int			tsa_used;		/* num actually used */
130 131
	PgStat_MsgTabstat **tsa_messages;	/* the array itself */
} TabStatArray;
B
Bruce Momjian 已提交
132

133 134
#define TABSTAT_QUANTUM		4	/* we alloc this many at a time */

B
Bruce Momjian 已提交
135 136
static TabStatArray RegularTabStat = {0, 0, NULL};
static TabStatArray SharedTabStat = {0, 0, NULL};
137

138 139
static int	pgStatXactCommit = 0;
static int	pgStatXactRollback = 0;
140

141
static MemoryContext pgStatLocalContext = NULL;
142
static HTAB *pgStatDBHash = NULL;
143 144
static PgBackendStatus *localBackendStatusTable = NULL;
static int	localNumBackends = 0;
145

146 147 148 149 150 151 152 153 154 155 156 157
/*
 * BgWriter global statistics counters, from bgwriter.c
 */
extern PgStat_MsgBgWriter BgWriterStats;

/*
 * Cluster wide statistics, kept in the stats collector.
 * Contains statistics that are not collected per database
 * or per table.
 */
static PgStat_GlobalStats globalStats;

B
Bruce Momjian 已提交
158 159
static volatile bool need_exit = false;
static volatile bool need_statwrite = false;
160

161

162 163 164 165
/* ----------
 * Local function forward declarations
 * ----------
 */
166
#ifdef EXEC_BACKEND
167
static pid_t pgstat_forkexec(void);
168
#endif
169 170

NON_EXEC_STATIC void PgstatCollectorMain(int argc, char *argv[]);
171
static void pgstat_exit(SIGNAL_ARGS);
172
static void force_statwrite(SIGNAL_ARGS);
173
static void pgstat_beshutdown_hook(int code, Datum arg);
174

175
static PgStat_StatDBEntry *pgstat_get_db_entry(Oid databaseid, bool create);
176
static void pgstat_write_statsfile(void);
177
static HTAB *pgstat_read_statsfile(Oid onlydb);
178
static void backend_read_statsfile(void);
179
static void pgstat_read_current_status(void);
180
static void pgstat_report_one_tabstat(TabStatArray *tsarr, Oid dbid);
181
static HTAB *pgstat_collect_oids(Oid catalogid);
182

183 184
static void pgstat_setup_memcxt(void);

185
static void pgstat_setheader(PgStat_MsgHdr *hdr, StatMsgType mtype);
186 187 188 189 190 191
static void pgstat_send(void *msg, int len);

static void pgstat_recv_tabstat(PgStat_MsgTabstat *msg, int len);
static void pgstat_recv_tabpurge(PgStat_MsgTabpurge *msg, int len);
static void pgstat_recv_dropdb(PgStat_MsgDropdb *msg, int len);
static void pgstat_recv_resetcounter(PgStat_MsgResetcounter *msg, int len);
192 193 194
static void pgstat_recv_autovac(PgStat_MsgAutovacStart *msg, int len);
static void pgstat_recv_vacuum(PgStat_MsgVacuum *msg, int len);
static void pgstat_recv_analyze(PgStat_MsgAnalyze *msg, int len);
195
static void pgstat_recv_bgwriter(PgStat_MsgBgWriter *msg, int len);
196 197 198 199 200 201 202 203 204 205 206


/* ------------------------------------------------------------
 * Public functions called from postmaster follow
 * ------------------------------------------------------------
 */

/* ----------
 * pgstat_init() -
 *
 *	Called from postmaster at startup. Create the resources required
207 208 209
 *	by the statistics collector process.  If unable to do so, do not
 *	fail --- better to let the postmaster start with stats collection
 *	disabled.
210 211
 * ----------
 */
212
void
213 214
pgstat_init(void)
{
B
Bruce Momjian 已提交
215 216 217 218
	ACCEPT_TYPE_ARG3 alen;
	struct addrinfo *addrs = NULL,
			   *addr,
				hints;
B
Bruce Momjian 已提交
219
	int			ret;
B
Bruce Momjian 已提交
220
	fd_set		rset;
221
	struct timeval tv;
B
Bruce Momjian 已提交
222 223
	char		test_byte;
	int			sel_res;
224
	int			tries = 0;
B
Bruce Momjian 已提交
225

226
#define TESTBYTEVAL ((char) 199)
227

228
	/*
229
	 * Force start of collector daemon if something to collect.  Note that
B
Bruce Momjian 已提交
230 231
	 * pgstat_collect_querystring is now an independent facility that does not
	 * require the collector daemon.
232
	 */
233
	if (pgstat_collect_tuplelevel ||
234
		pgstat_collect_blocklevel)
235 236 237
		pgstat_collect_startcollector = true;

	/*
238
	 * If we don't have to start a collector or should reset the collected
239
	 * statistics on postmaster start, simply remove the stats file.
240 241
	 */
	if (!pgstat_collect_startcollector || pgstat_collect_resetonpmstart)
242
		pgstat_reset_all();
243 244 245 246 247

	/*
	 * Nothing else required if collector will not get started
	 */
	if (!pgstat_collect_startcollector)
248
		return;
249

250
	/*
251
	 * Create the UDP socket for sending and receiving statistic messages
252
	 */
B
Bruce Momjian 已提交
253 254 255 256 257 258 259 260
	hints.ai_flags = AI_PASSIVE;
	hints.ai_family = PF_UNSPEC;
	hints.ai_socktype = SOCK_DGRAM;
	hints.ai_protocol = 0;
	hints.ai_addrlen = 0;
	hints.ai_addr = NULL;
	hints.ai_canonname = NULL;
	hints.ai_next = NULL;
261
	ret = pg_getaddrinfo_all("localhost", NULL, &hints, &addrs);
262
	if (ret || !addrs)
B
Bruce Momjian 已提交
263
	{
264
		ereport(LOG,
265
				(errmsg("could not resolve \"localhost\": %s",
266
						gai_strerror(ret))));
B
Bruce Momjian 已提交
267 268
		goto startup_failed;
	}
B
Bruce Momjian 已提交
269

270
	/*
271 272 273
	 * On some platforms, pg_getaddrinfo_all() may return multiple addresses
	 * only one of which will actually work (eg, both IPv6 and IPv4 addresses
	 * when kernel will reject IPv6).  Worse, the failure may occur at the
274
	 * bind() or perhaps even connect() stage.	So we must loop through the
275 276
	 * results till we find a working combination. We will generate LOG
	 * messages, but no error, for bogus combinations.
277
	 */
278 279 280 281 282 283 284
	for (addr = addrs; addr; addr = addr->ai_next)
	{
#ifdef HAVE_UNIX_SOCKETS
		/* Ignore AF_UNIX sockets, if any are returned. */
		if (addr->ai_family == AF_UNIX)
			continue;
#endif
B
Bruce Momjian 已提交
285

286 287
		if (++tries > 1)
			ereport(LOG,
B
Bruce Momjian 已提交
288 289
			(errmsg("trying another address for the statistics collector")));

290 291 292 293 294 295 296
		/*
		 * Create the socket.
		 */
		if ((pgStatSock = socket(addr->ai_family, SOCK_DGRAM, 0)) < 0)
		{
			ereport(LOG,
					(errcode_for_socket_access(),
B
Bruce Momjian 已提交
297
			errmsg("could not create socket for statistics collector: %m")));
298 299 300 301
			continue;
		}

		/*
B
Bruce Momjian 已提交
302 303
		 * Bind it to a kernel assigned port on localhost and get the assigned
		 * port via getsockname().
304 305 306 307 308
		 */
		if (bind(pgStatSock, addr->ai_addr, addr->ai_addrlen) < 0)
		{
			ereport(LOG,
					(errcode_for_socket_access(),
B
Bruce Momjian 已提交
309
			  errmsg("could not bind socket for statistics collector: %m")));
310 311 312 313 314 315
			closesocket(pgStatSock);
			pgStatSock = -1;
			continue;
		}

		alen = sizeof(pgStatAddr);
B
Bruce Momjian 已提交
316
		if (getsockname(pgStatSock, (struct sockaddr *) & pgStatAddr, &alen) < 0)
317 318 319 320 321 322 323 324 325 326
		{
			ereport(LOG,
					(errcode_for_socket_access(),
					 errmsg("could not get address of socket for statistics collector: %m")));
			closesocket(pgStatSock);
			pgStatSock = -1;
			continue;
		}

		/*
B
Bruce Momjian 已提交
327 328 329 330
		 * Connect the socket to its own address.  This saves a few cycles by
		 * not having to respecify the target address on every send. This also
		 * provides a kernel-level check that only packets from this same
		 * address will be received.
331
		 */
B
Bruce Momjian 已提交
332
		if (connect(pgStatSock, (struct sockaddr *) & pgStatAddr, alen) < 0)
333 334 335
		{
			ereport(LOG,
					(errcode_for_socket_access(),
B
Bruce Momjian 已提交
336
			errmsg("could not connect socket for statistics collector: %m")));
337 338 339 340
			closesocket(pgStatSock);
			pgStatSock = -1;
			continue;
		}
B
Bruce Momjian 已提交
341

342
		/*
B
Bruce Momjian 已提交
343 344 345 346
		 * Try to send and receive a one-byte test message on the socket. This
		 * is to catch situations where the socket can be created but will not
		 * actually pass data (for instance, because kernel packet filtering
		 * rules prevent it).
347 348
		 */
		test_byte = TESTBYTEVAL;
349 350

retry1:
351 352
		if (send(pgStatSock, &test_byte, 1, 0) != 1)
		{
353 354
			if (errno == EINTR)
				goto retry1;	/* if interrupted, just retry */
355 356 357 358 359 360 361 362 363
			ereport(LOG,
					(errcode_for_socket_access(),
					 errmsg("could not send test message on socket for statistics collector: %m")));
			closesocket(pgStatSock);
			pgStatSock = -1;
			continue;
		}

		/*
B
Bruce Momjian 已提交
364 365 366
		 * There could possibly be a little delay before the message can be
		 * received.  We arbitrarily allow up to half a second before deciding
		 * it's broken.
367 368 369 370 371 372 373
		 */
		for (;;)				/* need a loop to handle EINTR */
		{
			FD_ZERO(&rset);
			FD_SET(pgStatSock, &rset);
			tv.tv_sec = 0;
			tv.tv_usec = 500000;
B
Bruce Momjian 已提交
374
			sel_res = select(pgStatSock + 1, &rset, NULL, NULL, &tv);
375 376 377 378 379 380 381
			if (sel_res >= 0 || errno != EINTR)
				break;
		}
		if (sel_res < 0)
		{
			ereport(LOG,
					(errcode_for_socket_access(),
B
Bruce Momjian 已提交
382
					 errmsg("select() failed in statistics collector: %m")));
383 384 385 386 387 388 389
			closesocket(pgStatSock);
			pgStatSock = -1;
			continue;
		}
		if (sel_res == 0 || !FD_ISSET(pgStatSock, &rset))
		{
			/*
B
Bruce Momjian 已提交
390 391
			 * This is the case we actually think is likely, so take pains to
			 * give a specific message for it.
392 393 394 395
			 *
			 * errno will not be set meaningfully here, so don't use it.
			 */
			ereport(LOG,
396
					(errcode(ERRCODE_CONNECTION_FAILURE),
397 398 399 400 401 402 403 404
					 errmsg("test message did not get through on socket for statistics collector")));
			closesocket(pgStatSock);
			pgStatSock = -1;
			continue;
		}

		test_byte++;			/* just make sure variable is changed */

405
retry2:
406 407
		if (recv(pgStatSock, &test_byte, 1, 0) != 1)
		{
408 409
			if (errno == EINTR)
				goto retry2;	/* if interrupted, just retry */
410 411 412 413 414 415 416 417
			ereport(LOG,
					(errcode_for_socket_access(),
					 errmsg("could not receive test message on socket for statistics collector: %m")));
			closesocket(pgStatSock);
			pgStatSock = -1;
			continue;
		}

B
Bruce Momjian 已提交
418
		if (test_byte != TESTBYTEVAL)	/* strictly paranoia ... */
419 420
		{
			ereport(LOG,
421
					(errcode(ERRCODE_INTERNAL_ERROR),
422 423 424 425 426 427
					 errmsg("incorrect test message transmission on socket for statistics collector")));
			closesocket(pgStatSock);
			pgStatSock = -1;
			continue;
		}

428 429
		/* If we get here, we have a working socket */
		break;
430 431
	}

432 433
	/* Did we find a working address? */
	if (!addr || pgStatSock < 0)
434
		goto startup_failed;
435 436

	/*
B
Bruce Momjian 已提交
437
	 * Set the socket to non-blocking IO.  This ensures that if the collector
438 439
	 * falls behind, statistics messages will be discarded; backends won't
	 * block waiting to send messages to the collector.
440
	 */
441
	if (!pg_set_noblock(pgStatSock))
442
	{
443 444
		ereport(LOG,
				(errcode_for_socket_access(),
B
Bruce Momjian 已提交
445
				 errmsg("could not set statistics collector socket to nonblocking mode: %m")));
446
		goto startup_failed;
447 448
	}

449
	pg_freeaddrinfo_all(hints.ai_family, addrs);
450

451
	return;
452 453

startup_failed:
454
	ereport(LOG,
B
Bruce Momjian 已提交
455
	  (errmsg("disabling statistics collector for lack of working socket")));
456

457
	if (addrs)
458
		pg_freeaddrinfo_all(hints.ai_family, addrs);
B
Bruce Momjian 已提交
459

460
	if (pgStatSock >= 0)
461
		closesocket(pgStatSock);
462 463 464
	pgStatSock = -1;

	/* Adjust GUC variables to suppress useless activity */
465
	pgstat_collect_startcollector = false;
466 467
	pgstat_collect_tuplelevel = false;
	pgstat_collect_blocklevel = false;
468 469
}

470 471 472
/*
 * pgstat_reset_all() -
 *
B
Bruce Momjian 已提交
473
 * Remove the stats file.  This is used on server start if the
474 475 476 477 478 479 480 481
 * stats_reset_on_server_start feature is enabled, or if WAL
 * recovery is needed after a crash.
 */
void
pgstat_reset_all(void)
{
	unlink(PGSTAT_STAT_FILENAME);
}
482

483 484
#ifdef EXEC_BACKEND

485
/*
486
 * pgstat_forkexec() -
487
 *
488
 * Format up the arglist for, then fork and exec, statistics collector process
489
 */
490
static pid_t
491
pgstat_forkexec(void)
492
{
B
Bruce Momjian 已提交
493
	char	   *av[10];
494
	int			ac = 0;
495 496

	av[ac++] = "postgres";
497
	av[ac++] = "--forkcol";
498 499 500 501
	av[ac++] = NULL;			/* filled in by postmaster_forkexec */

	av[ac] = NULL;
	Assert(ac < lengthof(av));
502

503
	return postmaster_forkexec(ac, av);
504
}
B
Bruce Momjian 已提交
505
#endif   /* EXEC_BACKEND */
506

507

508 509 510 511
/* ----------
 * pgstat_start() -
 *
 *	Called from postmaster at startup or after an existing collector
512
 *	died.  Attempt to fire up a fresh statistics collector.
513
 *
514 515
 *	Returns PID of child process, or 0 if fail.
 *
516
 *	Note: if fail, we will be called again from the postmaster main loop.
517 518
 * ----------
 */
519
int
520
pgstat_start(void)
521
{
522
	time_t		curtime;
523
	pid_t		pgStatPid;
524

525 526 527
	/*
	 * Do nothing if no collector needed
	 */
528 529
	if (!pgstat_collect_startcollector)
		return 0;
530

531
	/*
B
Bruce Momjian 已提交
532 533 534 535
	 * Do nothing if too soon since last collector start.  This is a safety
	 * valve to protect against continuous respawn attempts if the collector
	 * is dying immediately at launch.	Note that since we will be re-called
	 * from the postmaster main loop, we will get another chance later.
536 537 538 539
	 */
	curtime = time(NULL);
	if ((unsigned int) (curtime - last_pgstat_start_time) <
		(unsigned int) PGSTAT_RESTART_INTERVAL)
540
		return 0;
541 542 543 544
	last_pgstat_start_time = curtime;

	/*
	 * Check that the socket is there, else pgstat_init failed.
545 546 547
	 */
	if (pgStatSock < 0)
	{
548 549
		ereport(LOG,
				(errmsg("statistics collector startup skipped")));
B
Bruce Momjian 已提交
550

551 552 553 554 555
		/*
		 * We can only get here if someone tries to manually turn
		 * pgstat_collect_startcollector on after it had been off.
		 */
		pgstat_collect_startcollector = false;
556
		return 0;
557 558 559
	}

	/*
560
	 * Okay, fork off the collector.
561
	 */
562
#ifdef EXEC_BACKEND
563
	switch ((pgStatPid = pgstat_forkexec()))
564
#else
565
	switch ((pgStatPid = fork_process()))
566
#endif
567 568
	{
		case -1:
569
			ereport(LOG,
570
					(errmsg("could not fork statistics collector: %m")));
571
			return 0;
572

573
#ifndef EXEC_BACKEND
574
		case 0:
575
			/* in postmaster child ... */
576
			/* Close the postmaster's sockets */
577
			ClosePostmasterPorts(false);
578

579 580 581
			/* Lose the postmaster's on-exit routines */
			on_exit_reset();

582 583 584
			/* Drop our connection to postmaster's shared memory, as well */
			PGSharedMemoryDetach();

585
			PgstatCollectorMain(0, NULL);
586
			break;
587
#endif
588 589

		default:
590
			return (int) pgStatPid;
591 592
	}

593 594
	/* shouldn't get here */
	return 0;
595 596
}

597 598 599 600
void allow_immediate_pgstat_restart(void)
{
		last_pgstat_start_time = 0;
}
601 602 603

/* ------------------------------------------------------------
 * Public functions used by backends follow
604
 *------------------------------------------------------------
605 606 607 608 609 610
 */


/* ----------
 * pgstat_report_tabstat() -
 *
611 612 613 614
 *	Called from tcop/postgres.c to send the so far collected per-table
 *	access statistics to the collector.  Note that this is called only
 *	when not within a transaction, so it is fair to use transaction stop
 *	time as an approximation of current time.
615 616 617
 * ----------
 */
void
618
pgstat_report_tabstat(bool force)
619
{
620 621 622 623 624 625 626 627 628 629
	static TimestampTz last_report = 0;	
	TimestampTz now;

	/* Don't expend a clock check if nothing to do */
	if (RegularTabStat.tsa_used == 0 &&
		SharedTabStat.tsa_used == 0)
		return;

	/*
	 * Don't send a message unless it's been at least PGSTAT_STAT_INTERVAL
630
	 * msec since we last sent one, or the caller wants to force stats out.
631 632
	 */
	now = GetCurrentTransactionStopTimestamp();
633 634
	if (!force &&
		!TimestampDifferenceExceeds(last_report, now, PGSTAT_STAT_INTERVAL))
635 636 637
		return;
	last_report = now;

638
	/*
639
	 * For each message buffer used during the last queries, set the header
640
	 * fields and send it out; then mark the entries unused.
641
	 */
642 643 644 645 646 647 648 649 650 651
	pgstat_report_one_tabstat(&RegularTabStat, MyDatabaseId);
	pgstat_report_one_tabstat(&SharedTabStat, InvalidOid);
}

static void
pgstat_report_one_tabstat(TabStatArray *tsarr, Oid dbid)
{
	int			i;

	for (i = 0; i < tsarr->tsa_used; i++)
652
	{
653
		PgStat_MsgTabstat *tsmsg = tsarr->tsa_messages[i];
654 655 656 657
		int			n;
		int			len;

		n = tsmsg->m_nentries;
658 659
		len = offsetof(PgStat_MsgTabstat, m_entry[0]) +
			n * sizeof(PgStat_TableEntry);
660

661 662
		tsmsg->m_xact_commit = pgStatXactCommit;
		tsmsg->m_xact_rollback = pgStatXactRollback;
663
		pgStatXactCommit = 0;
664 665
		pgStatXactRollback = 0;

666 667 668 669 670 671 672 673 674 675
		/*
		 * It's unlikely we'd get here with no socket, but maybe not
		 * impossible
		 */
		if (pgStatSock >= 0)
		{
			pgstat_setheader(&tsmsg->m_hdr, PGSTAT_MTYPE_TABSTAT);
			tsmsg->m_databaseid = dbid;
			pgstat_send(tsmsg, len);
		}
676

677 678 679 680 681
		/*
		 * Zero out the entries, to mark them unused and prepare them
		 * for next use.
		 */
		MemSet(tsmsg, 0, len);
682
	}
683
	tsarr->tsa_used = 0;
684 685 686 687 688 689 690 691 692
}


/* ----------
 * pgstat_vacuum_tabstat() -
 *
 *	Will tell the collector about objects he can get rid of.
 * ----------
 */
693
void
694 695
pgstat_vacuum_tabstat(void)
{
696
	HTAB	   *htab;
697
	PgStat_MsgTabpurge msg;
698 699 700 701
	HASH_SEQ_STATUS hstat;
	PgStat_StatDBEntry *dbentry;
	PgStat_StatTabEntry *tabentry;
	int			len;
702 703

	if (pgStatSock < 0)
704
		return;
705 706

	/*
B
Bruce Momjian 已提交
707 708
	 * If not done for this transaction, read the statistics collector stats
	 * file into some hash tables.
709
	 */
710
	backend_read_statsfile();
711 712

	/*
713 714
	 * Read pg_database and make a list of OIDs of all existing databases
	 */
715
	htab = pgstat_collect_oids(DatabaseRelationId);
716 717 718 719 720 721 722 723 724 725

	/*
	 * Search the database hash table for dead databases and tell the
	 * collector to drop them.
	 */
	hash_seq_init(&hstat, pgStatDBHash);
	while ((dbentry = (PgStat_StatDBEntry *) hash_seq_search(&hstat)) != NULL)
	{
		Oid			dbid = dbentry->databaseid;

726 727 728
		CHECK_FOR_INTERRUPTS();

		if (hash_search(htab, (void *) &dbid, HASH_FIND, NULL) == NULL)
729 730 731 732
			pgstat_drop_database(dbid);
	}

	/* Clean up */
733
	hash_destroy(htab);
734 735 736

	/*
	 * Lookup our own database entry; if not found, nothing more to do.
737
	 */
738 739 740
	dbentry = (PgStat_StatDBEntry *) hash_search(pgStatDBHash,
												 (void *) &MyDatabaseId,
												 HASH_FIND, NULL);
741 742 743 744 745 746
	if (dbentry == NULL || dbentry->tables == NULL)
		return;

	/*
	 * Similarly to above, make a list of all known relations in this DB.
	 */
747
	htab = pgstat_collect_oids(RelationRelationId);
748 749 750 751 752 753 754

	/*
	 * Initialize our messages table counter to zero
	 */
	msg.m_nentries = 0;

	/*
755
	 * Check for all tables listed in stats hashtable if they still exist.
756
	 */
757
	hash_seq_init(&hstat, dbentry->tables);
758
	while ((tabentry = (PgStat_StatTabEntry *) hash_seq_search(&hstat)) != NULL)
759
	{
760 761 762 763 764
		Oid			tabid = tabentry->tableid;

		CHECK_FOR_INTERRUPTS();

		if (hash_search(htab, (void *) &tabid, HASH_FIND, NULL) != NULL)
765 766 767
			continue;

		/*
768
		 * Not there, so add this table's Oid to the message
769
		 */
770
		msg.m_tableid[msg.m_nentries++] = tabid;
771 772

		/*
773
		 * If the message is full, send it out and reinitialize to empty
774 775 776
		 */
		if (msg.m_nentries >= PGSTAT_NUM_TABPURGE)
		{
777
			len = offsetof(PgStat_MsgTabpurge, m_tableid[0])
B
Bruce Momjian 已提交
778
				+msg.m_nentries * sizeof(Oid);
779 780

			pgstat_setheader(&msg.m_hdr, PGSTAT_MTYPE_TABPURGE);
781
			msg.m_databaseid = MyDatabaseId;
782 783 784 785 786 787 788 789 790 791 792
			pgstat_send(&msg, len);

			msg.m_nentries = 0;
		}
	}

	/*
	 * Send the rest
	 */
	if (msg.m_nentries > 0)
	{
793
		len = offsetof(PgStat_MsgTabpurge, m_tableid[0])
B
Bruce Momjian 已提交
794
			+msg.m_nentries * sizeof(Oid);
795 796

		pgstat_setheader(&msg.m_hdr, PGSTAT_MTYPE_TABPURGE);
797
		msg.m_databaseid = MyDatabaseId;
798 799 800
		pgstat_send(&msg, len);
	}

801
	/* Clean up */
802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845
	hash_destroy(htab);
}


/* ----------
 * pgstat_collect_oids() -
 *
 *	Collect the OIDs of either all databases or all tables, according to
 *	the parameter, into a temporary hash table.  Caller should hash_destroy
 *	the result when done with it.
 * ----------
 */
static HTAB *
pgstat_collect_oids(Oid catalogid)
{
	HTAB	   *htab;
	HASHCTL		hash_ctl;
	Relation	rel;
	HeapScanDesc scan;
	HeapTuple	tup;

	memset(&hash_ctl, 0, sizeof(hash_ctl));
	hash_ctl.keysize = sizeof(Oid);
	hash_ctl.entrysize = sizeof(Oid);
	hash_ctl.hash = oid_hash;
	htab = hash_create("Temporary table of OIDs",
					   PGSTAT_TAB_HASH_SIZE,
					   &hash_ctl,
					   HASH_ELEM | HASH_FUNCTION);

	rel = heap_open(catalogid, AccessShareLock);
	scan = heap_beginscan(rel, SnapshotNow, 0, NULL);
	while ((tup = heap_getnext(scan, ForwardScanDirection)) != NULL)
	{
		Oid		thisoid = HeapTupleGetOid(tup);

		CHECK_FOR_INTERRUPTS();

		(void) hash_search(htab, (void *) &thisoid, HASH_ENTER, NULL);
	}
	heap_endscan(scan);
	heap_close(rel, AccessShareLock);

	return htab;
846 847 848 849 850 851 852
}


/* ----------
 * pgstat_drop_database() -
 *
 *	Tell the collector that we just dropped a database.
853 854
 *	(If the message gets lost, we will still clean the dead DB eventually
 *	via future invocations of pgstat_vacuum_tabstat().)
855 856
 * ----------
 */
857
void
858 859
pgstat_drop_database(Oid databaseid)
{
860
	PgStat_MsgDropdb msg;
861 862 863 864 865

	if (pgStatSock < 0)
		return;

	pgstat_setheader(&msg.m_hdr, PGSTAT_MTYPE_DROPDB);
866
	msg.m_databaseid = databaseid;
867 868 869 870
	pgstat_send(&msg, sizeof(msg));
}


871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890
/* ----------
 * pgstat_drop_relation() -
 *
 *	Tell the collector that we just dropped a relation.
 *	(If the message gets lost, we will still clean the dead entry eventually
 *	via future invocations of pgstat_vacuum_tabstat().)
 * ----------
 */
void
pgstat_drop_relation(Oid relid)
{
	PgStat_MsgTabpurge msg;
	int			len;

	if (pgStatSock < 0)
		return;

	msg.m_tableid[0] = relid;
	msg.m_nentries = 1;

B
Bruce Momjian 已提交
891
	len = offsetof(PgStat_MsgTabpurge, m_tableid[0]) +sizeof(Oid);
892 893 894 895 896 897 898

	pgstat_setheader(&msg.m_hdr, PGSTAT_MTYPE_TABPURGE);
	msg.m_databaseid = MyDatabaseId;
	pgstat_send(&msg, len);
}


899 900 901 902 903 904 905 906 907
/* ----------
 * pgstat_reset_counters() -
 *
 *	Tell the statistics collector to reset counters for our database.
 * ----------
 */
void
pgstat_reset_counters(void)
{
908
	PgStat_MsgResetcounter msg;
909 910 911 912 913

	if (pgStatSock < 0)
		return;

	if (!superuser())
914 915
		ereport(ERROR,
				(errcode(ERRCODE_INSUFFICIENT_PRIVILEGE),
B
Bruce Momjian 已提交
916
				 errmsg("must be superuser to reset statistics counters")));
917 918

	pgstat_setheader(&msg.m_hdr, PGSTAT_MTYPE_RESETCOUNTER);
919
	msg.m_databaseid = MyDatabaseId;
920 921 922 923
	pgstat_send(&msg, sizeof(msg));
}


924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967
/* ----------
 * pgstat_report_autovac() -
 *
 *	Called from autovacuum.c to report startup of an autovacuum process.
 *	We are called before InitPostgres is done, so can't rely on MyDatabaseId;
 *	the db OID must be passed in, instead.
 * ----------
 */
void
pgstat_report_autovac(Oid dboid)
{
	PgStat_MsgAutovacStart msg;

	if (pgStatSock < 0)
		return;

	pgstat_setheader(&msg.m_hdr, PGSTAT_MTYPE_AUTOVAC_START);
	msg.m_databaseid = dboid;
	msg.m_start_time = GetCurrentTimestamp();

	pgstat_send(&msg, sizeof(msg));
}


/* ---------
 * pgstat_report_vacuum() -
 *
 *	Tell the collector about the table we just vacuumed.
 * ---------
 */
void
pgstat_report_vacuum(Oid tableoid, bool shared,
					 bool analyze, PgStat_Counter tuples)
{
	PgStat_MsgVacuum msg;

	if (pgStatSock < 0 ||
		!pgstat_collect_tuplelevel)
		return;

	pgstat_setheader(&msg.m_hdr, PGSTAT_MTYPE_VACUUM);
	msg.m_databaseid = shared ? InvalidOid : MyDatabaseId;
	msg.m_tableoid = tableoid;
	msg.m_analyze = analyze;
968
	msg.m_autovacuum = IsAutoVacuumWorkerProcess();	/* is this autovacuum? */
969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992
	msg.m_vacuumtime = GetCurrentTimestamp();
	msg.m_tuples = tuples;
	pgstat_send(&msg, sizeof(msg));
}

/* --------
 * pgstat_report_analyze() -
 *
 *	Tell the collector about the table we just analyzed.
 * --------
 */
void
pgstat_report_analyze(Oid tableoid, bool shared, PgStat_Counter livetuples,
					  PgStat_Counter deadtuples)
{
	PgStat_MsgAnalyze msg;

	if (pgStatSock < 0 ||
		!pgstat_collect_tuplelevel)
		return;

	pgstat_setheader(&msg.m_hdr, PGSTAT_MTYPE_ANALYZE);
	msg.m_databaseid = shared ? InvalidOid : MyDatabaseId;
	msg.m_tableoid = tableoid;
993
	msg.m_autovacuum = IsAutoVacuumWorkerProcess();	/* is this autovacuum? */
994 995 996 997 998 999 1000
	msg.m_analyzetime = GetCurrentTimestamp();
	msg.m_live_tuples = livetuples;
	msg.m_dead_tuples = deadtuples;
	pgstat_send(&msg, sizeof(msg));
}


1001 1002 1003 1004 1005 1006 1007 1008 1009
/* ----------
 * pgstat_ping() -
 *
 *	Send some junk data to the collector to increase traffic.
 * ----------
 */
void
pgstat_ping(void)
{
1010
	PgStat_MsgDummy msg;
1011 1012 1013 1014 1015 1016 1017 1018

	if (pgStatSock < 0)
		return;

	pgstat_setheader(&msg.m_hdr, PGSTAT_MTYPE_DUMMY);
	pgstat_send(&msg, sizeof(msg));
}

1019
/*
1020
 * Enlarge a TabStatArray
1021
 */
1022
static void
1023
more_tabstat_space(TabStatArray *tsarr)
1024 1025 1026
{
	PgStat_MsgTabstat *newMessages;
	PgStat_MsgTabstat **msgArray;
1027
	int			newAlloc;
1028 1029
	int			i;

1030 1031 1032 1033
	AssertArg(PointerIsValid(tsarr));

	newAlloc = tsarr->tsa_alloc + TABSTAT_QUANTUM;

1034
	/* Create (another) quantum of message buffers, and zero them */
1035
	newMessages = (PgStat_MsgTabstat *)
1036 1037
		MemoryContextAllocZero(TopMemoryContext,
							   sizeof(PgStat_MsgTabstat) * TABSTAT_QUANTUM);
1038 1039

	/* Create or enlarge the pointer array */
1040
	if (tsarr->tsa_messages == NULL)
1041
		msgArray = (PgStat_MsgTabstat **)
1042 1043
			MemoryContextAlloc(TopMemoryContext,
							   sizeof(PgStat_MsgTabstat *) * newAlloc);
1044 1045
	else
		msgArray = (PgStat_MsgTabstat **)
1046
			repalloc(tsarr->tsa_messages,
1047
					 sizeof(PgStat_MsgTabstat *) * newAlloc);
1048 1049

	for (i = 0; i < TABSTAT_QUANTUM; i++)
1050 1051 1052
		msgArray[tsarr->tsa_alloc + i] = newMessages++;
	tsarr->tsa_messages = msgArray;
	tsarr->tsa_alloc = newAlloc;
1053

1054
	Assert(tsarr->tsa_used < tsarr->tsa_alloc);
1055
}
1056 1057 1058 1059 1060 1061 1062 1063

/* ----------
 * pgstat_initstats() -
 *
 *	Called from various places usually dealing with initialization
 *	of Relation or Scan structures. The data placed into these
 *	structures from here tell where later to count for buffer reads,
 *	scans and tuples fetched.
1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074
 *
 *	NOTE: PgStat_Info pointers in scan structures are really redundant
 *	with those in relcache entries.  The passed stats pointer might point
 *	either to the Relation struct's own pgstat_info field, or to one in
 *	a scan structure; we'll set the Relation pg_statinfo and copy it to
 *	the scan struct.
 *
 *	We assume that a relcache entry's pgstat_info field is zeroed by
 *	relcache.c when the relcache entry is made; thereafter it is long-lived
 *	data.  We can avoid repeated searches of the TabStat arrays when the
 *	same relation is touched repeatedly within a transaction.
1075 1076 1077 1078 1079
 * ----------
 */
void
pgstat_initstats(PgStat_Info *stats, Relation rel)
{
1080
	Oid			rel_id = rel->rd_id;
1081
	PgStat_TableEntry *useent;
B
Bruce Momjian 已提交
1082
	TabStatArray *tsarr;
1083
	PgStat_MsgTabstat *tsmsg;
1084 1085
	int			mb;
	int			i;
1086

1087 1088 1089
	if (pgStatSock < 0 ||
		!(pgstat_collect_tuplelevel ||
		  pgstat_collect_blocklevel))
1090 1091 1092
	{
		/* We're not counting at all. */
		stats->tabentry = NULL;
1093
		return;
1094
	}
1095

1096 1097 1098 1099 1100 1101 1102 1103 1104 1105
	/*
	 * If we already set up this relation in the current transaction,
	 * just copy the pointer.
	 */
	if (rel->pgstat_info.tabentry != NULL &&
		((PgStat_TableEntry *) rel->pgstat_info.tabentry)->t_id == rel_id)
	{
		stats->tabentry = rel->pgstat_info.tabentry;
		return;
	}
1106

1107
	/*
1108
	 * Search the already-used message slots for this relation.
1109
	 */
1110 1111
	tsarr = rel->rd_rel->relisshared ? &SharedTabStat : &RegularTabStat;

1112
	for (mb = 0; mb < tsarr->tsa_used; mb++)
1113
	{
1114
		tsmsg = tsarr->tsa_messages[mb];
1115

B
Bruce Momjian 已提交
1116
		for (i = tsmsg->m_nentries; --i >= 0;)
1117
		{
1118
			if (tsmsg->m_entry[i].t_id == rel_id)
1119
			{
1120 1121
				rel->pgstat_info.tabentry = (void *) &(tsmsg->m_entry[i]);
				stats->tabentry = rel->pgstat_info.tabentry;
1122 1123 1124 1125
				return;
			}
		}

1126
		if (tsmsg->m_nentries >= PGSTAT_NUM_TABENTRIES)
1127
			continue;
1128

1129
		/*
B
Bruce Momjian 已提交
1130
		 * Not found, but found a message buffer with an empty slot instead.
1131 1132
		 * Fine, let's use this one.  We assume the entry was already zeroed,
		 * either at creation or after last use.
1133
		 */
1134 1135
		i = tsmsg->m_nentries++;
		useent = &tsmsg->m_entry[i];
1136
		useent->t_id = rel_id;
1137 1138
		rel->pgstat_info.tabentry = (void *) useent;
		stats->tabentry = rel->pgstat_info.tabentry;
1139 1140 1141 1142 1143 1144
		return;
	}

	/*
	 * If we ran out of message buffers, we just allocate more.
	 */
1145 1146
	if (tsarr->tsa_used >= tsarr->tsa_alloc)
		more_tabstat_space(tsarr);
1147 1148 1149 1150

	/*
	 * Use the first entry of the next message buffer.
	 */
1151 1152
	mb = tsarr->tsa_used++;
	tsmsg = tsarr->tsa_messages[mb];
1153 1154
	tsmsg->m_nentries = 1;
	useent = &tsmsg->m_entry[0];
1155
	useent->t_id = rel_id;
1156 1157
	rel->pgstat_info.tabentry = (void *) useent;
	stats->tabentry = rel->pgstat_info.tabentry;
1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169
}


/* ----------
 * pgstat_count_xact_commit() -
 *
 *	Called from access/transam/xact.c to count transaction commits.
 * ----------
 */
void
pgstat_count_xact_commit(void)
{
B
Bruce Momjian 已提交
1170 1171
	if (!pgstat_collect_tuplelevel &&
		!pgstat_collect_blocklevel)
1172 1173
		return;

1174 1175 1176
	pgStatXactCommit++;

	/*
B
Bruce Momjian 已提交
1177 1178 1179
	 * If there was no relation activity yet, just make one existing message
	 * buffer used without slots, causing the next report to tell new
	 * xact-counters.
1180
	 */
1181 1182
	if (RegularTabStat.tsa_alloc == 0)
		more_tabstat_space(&RegularTabStat);
1183

1184
	if (RegularTabStat.tsa_used == 0)
1185
	{
1186 1187
		RegularTabStat.tsa_used++;
		RegularTabStat.tsa_messages[0]->m_nentries = 0;
1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200
	}
}


/* ----------
 * pgstat_count_xact_rollback() -
 *
 *	Called from access/transam/xact.c to count transaction rollbacks.
 * ----------
 */
void
pgstat_count_xact_rollback(void)
{
B
Bruce Momjian 已提交
1201 1202
	if (!pgstat_collect_tuplelevel &&
		!pgstat_collect_blocklevel)
1203 1204
		return;

1205 1206 1207
	pgStatXactRollback++;

	/*
B
Bruce Momjian 已提交
1208 1209 1210
	 * If there was no relation activity yet, just make one existing message
	 * buffer used without slots, causing the next report to tell new
	 * xact-counters.
1211
	 */
1212 1213
	if (RegularTabStat.tsa_alloc == 0)
		more_tabstat_space(&RegularTabStat);
1214

1215
	if (RegularTabStat.tsa_used == 0)
1216
	{
1217 1218
		RegularTabStat.tsa_used++;
		RegularTabStat.tsa_messages[0]->m_nentries = 0;
1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235
	}
}


/* ----------
 * pgstat_fetch_stat_dbentry() -
 *
 *	Support function for the SQL-callable pgstat* functions. Returns
 *	the collected statistics for one database or NULL. NULL doesn't mean
 *	that the database doesn't exist, it is just not yet known by the
 *	collector, so the caller is better off to report ZERO instead.
 * ----------
 */
PgStat_StatDBEntry *
pgstat_fetch_stat_dbentry(Oid dbid)
{
	/*
B
Bruce Momjian 已提交
1236 1237
	 * If not done for this transaction, read the statistics collector stats
	 * file into some hash tables.
1238
	 */
1239
	backend_read_statsfile();
1240 1241

	/*
1242
	 * Lookup the requested database; return NULL if not found
1243
	 */
1244 1245 1246
	return (PgStat_StatDBEntry *) hash_search(pgStatDBHash,
											  (void *) &dbid,
											  HASH_FIND, NULL);
1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261
}


/* ----------
 * pgstat_fetch_stat_tabentry() -
 *
 *	Support function for the SQL-callable pgstat* functions. Returns
 *	the collected statistics for one table or NULL. NULL doesn't mean
 *	that the table doesn't exist, it is just not yet known by the
 *	collector, so the caller is better off to report ZERO instead.
 * ----------
 */
PgStat_StatTabEntry *
pgstat_fetch_stat_tabentry(Oid relid)
{
1262
	Oid			dbid;
1263 1264
	PgStat_StatDBEntry *dbentry;
	PgStat_StatTabEntry *tabentry;
1265 1266

	/*
B
Bruce Momjian 已提交
1267 1268
	 * If not done for this transaction, read the statistics collector stats
	 * file into some hash tables.
1269
	 */
1270
	backend_read_statsfile();
1271 1272

	/*
1273
	 * Lookup our database, then look in its table hash table.
1274
	 */
1275
	dbid = MyDatabaseId;
1276
	dbentry = (PgStat_StatDBEntry *) hash_search(pgStatDBHash,
1277
												 (void *) &dbid,
1278
												 HASH_FIND, NULL);
1279 1280 1281 1282 1283 1284 1285 1286
	if (dbentry != NULL && dbentry->tables != NULL)
	{
		tabentry = (PgStat_StatTabEntry *) hash_search(dbentry->tables,
													   (void *) &relid,
													   HASH_FIND, NULL);
		if (tabentry)
			return tabentry;
	}
1287 1288

	/*
1289
	 * If we didn't find it, maybe it's a shared table.
1290
	 */
1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302
	dbid = InvalidOid;
	dbentry = (PgStat_StatDBEntry *) hash_search(pgStatDBHash,
												 (void *) &dbid,
												 HASH_FIND, NULL);
	if (dbentry != NULL && dbentry->tables != NULL)
	{
		tabentry = (PgStat_StatTabEntry *) hash_search(dbentry->tables,
													   (void *) &relid,
													   HASH_FIND, NULL);
		if (tabentry)
			return tabentry;
	}
1303

1304
	return NULL;
1305 1306 1307 1308 1309 1310 1311
}


/* ----------
 * pgstat_fetch_stat_beentry() -
 *
 *	Support function for the SQL-callable pgstat* functions. Returns
1312 1313 1314 1315
 *	our local copy of the current-activity entry for one backend.
 *
 *	NB: caller is responsible for a check if the user is permitted to see
 *	this info (especially the querystring).
1316 1317
 * ----------
 */
1318
PgBackendStatus *
1319 1320
pgstat_fetch_stat_beentry(int beid)
{
1321
	pgstat_read_current_status();
1322

1323
	if (beid < 1 || beid > localNumBackends)
1324 1325
		return NULL;

1326
	return &localBackendStatusTable[beid - 1];
1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339
}


/* ----------
 * pgstat_fetch_stat_numbackends() -
 *
 *	Support function for the SQL-callable pgstat* functions. Returns
 *	the maximum current backend id.
 * ----------
 */
int
pgstat_fetch_stat_numbackends(void)
{
1340
	pgstat_read_current_status();
1341

1342
	return localNumBackends;
1343 1344
}

1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360
/*
 * ---------
 * pgstat_fetch_global() -
 *
 *  Support function for the SQL-callable pgstat* functions. Returns
 *  a pointer to the global statistics struct.
 * ---------
 */
PgStat_GlobalStats *
pgstat_fetch_global(void)
{
	backend_read_statsfile();

	return &globalStats;
}

1361 1362

/* ------------------------------------------------------------
1363
 * Functions for management of the shared-memory PgBackendStatus array
1364 1365 1366
 * ------------------------------------------------------------
 */

1367 1368
static PgBackendStatus *BackendStatusArray = NULL;
static PgBackendStatus *MyBEEntry = NULL;
1369

1370 1371 1372

/*
 * Report shared-memory space needed by CreateSharedBackendStatus.
1373
 */
1374 1375
Size
BackendStatusShmemSize(void)
1376
{
1377
	Size		size;
1378

1379 1380 1381
	size = mul_size(sizeof(PgBackendStatus), MaxBackends);
	return size;
}
1382

1383 1384
/*
 * Initialize the shared status array during postmaster startup.
1385
 */
1386 1387
void
CreateSharedBackendStatus(void)
1388
{
1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425
	Size		size = BackendStatusShmemSize();
	bool		found;

	/* Create or attach to the shared array */
	BackendStatusArray = (PgBackendStatus *)
		ShmemInitStruct("Backend Status Array", size, &found);

	if (!found)
	{
		/*
		 * We're the first - initialize.
		 */
		MemSet(BackendStatusArray, 0, size);
	}
}


/* ----------
 * pgstat_bestart() -
 *
 *	Initialize this backend's entry in the PgBackendStatus array,
 *	and set up an on-proc-exit hook that will clear it again.
 *	Called from InitPostgres.  MyBackendId and MyDatabaseId must be set.
 * ----------
 */
void
pgstat_bestart(void)
{
	volatile PgBackendStatus *beentry;
	TimestampTz proc_start_timestamp;
	Oid			userid;
	SockAddr	clientaddr;

	Assert(MyBackendId >= 1 && MyBackendId <= MaxBackends);
	MyBEEntry = &BackendStatusArray[MyBackendId - 1];

	/*
B
Bruce Momjian 已提交
1426 1427
	 * To minimize the time spent modifying the entry, fetch all the needed
	 * data first.
1428 1429 1430
	 *
	 * If we have a MyProcPort, use its session start time (for consistency,
	 * and to save a kernel call).
1431
	 */
1432 1433 1434 1435
	if (MyProcPort)
		proc_start_timestamp = MyProcPort->SessionStartTime;
	else
		proc_start_timestamp = GetCurrentTimestamp();
1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449
	userid = GetSessionUserId();

	/*
	 * We may not have a MyProcPort (eg, if this is the autovacuum process).
	 * If so, use all-zeroes client address, which is dealt with specially in
	 * pg_stat_get_backend_client_addr and pg_stat_get_backend_client_port.
	 */
	if (MyProcPort)
		memcpy(&clientaddr, &MyProcPort->raddr, sizeof(clientaddr));
	else
		MemSet(&clientaddr, 0, sizeof(clientaddr));

	/*
	 * Initialize my status entry, following the protocol of bumping
B
Bruce Momjian 已提交
1450 1451 1452
	 * st_changecount before and after; and make sure it's even afterwards. We
	 * use a volatile pointer here to ensure the compiler doesn't try to get
	 * cute.
1453 1454
	 */
	beentry = MyBEEntry;
B
Bruce Momjian 已提交
1455 1456
	do
	{
1457 1458 1459 1460 1461 1462
		beentry->st_changecount++;
	} while ((beentry->st_changecount & 1) == 0);

	beentry->st_procpid = MyProcPid;
	beentry->st_proc_start_timestamp = proc_start_timestamp;
	beentry->st_activity_start_timestamp = 0;
1463
	beentry->st_txn_start_timestamp = 0;
1464 1465 1466
	beentry->st_databaseid = MyDatabaseId;
	beentry->st_userid = userid;
	beentry->st_clientaddr = clientaddr;
1467
	beentry->st_waiting = false;
1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492
	beentry->st_activity[0] = '\0';
	/* Also make sure the last byte in the string area is always 0 */
	beentry->st_activity[PGBE_ACTIVITY_SIZE - 1] = '\0';

	beentry->st_changecount++;
	Assert((beentry->st_changecount & 1) == 0);

	/*
	 * Set up a process-exit hook to clean up.
	 */
	on_shmem_exit(pgstat_beshutdown_hook, 0);
}

/*
 * Shut down a single backend's statistics reporting at process exit.
 *
 * Flush any remaining statistics counts out to the collector.
 * Without this, operations triggered during backend exit (such as
 * temp table deletions) won't be counted.
 *
 * Lastly, clear out our entry in the PgBackendStatus array.
 */
static void
pgstat_beshutdown_hook(int code, Datum arg)
{
1493
	volatile PgBackendStatus *beentry = MyBEEntry;
1494

1495
	pgstat_report_tabstat(true);
1496 1497

	/*
B
Bruce Momjian 已提交
1498 1499 1500
	 * Clear my status entry, following the protocol of bumping st_changecount
	 * before and after.  We use a volatile pointer here to ensure the
	 * compiler doesn't try to get cute.
1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520
	 */
	beentry->st_changecount++;

	beentry->st_procpid = 0;	/* mark invalid */

	beentry->st_changecount++;
	Assert((beentry->st_changecount & 1) == 0);
}


/* ----------
 * pgstat_report_activity() -
 *
 *	Called from tcop/postgres.c to report what the backend is actually doing
 *	(usually "<IDLE>" or the start of the query to be executed).
 * ----------
 */
void
pgstat_report_activity(const char *cmd_str)
{
1521
	volatile PgBackendStatus *beentry = MyBEEntry;
1522 1523 1524
	TimestampTz start_timestamp;
	int			len;

1525
	if (!pgstat_collect_querystring || !beentry)
1526 1527 1528
		return;

	/*
B
Bruce Momjian 已提交
1529 1530
	 * To minimize the time spent modifying the entry, fetch all the needed
	 * data first.
1531
	 */
1532
	start_timestamp = GetCurrentStatementStartTimestamp();
1533 1534 1535 1536 1537 1538

	len = strlen(cmd_str);
	len = pg_mbcliplen(cmd_str, len, PGBE_ACTIVITY_SIZE - 1);

	/*
	 * Update my status entry, following the protocol of bumping
B
Bruce Momjian 已提交
1539 1540
	 * st_changecount before and after.  We use a volatile pointer here to
	 * ensure the compiler doesn't try to get cute.
1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551
	 */
	beentry->st_changecount++;

	beentry->st_activity_start_timestamp = start_timestamp;
	memcpy((char *) beentry->st_activity, cmd_str, len);
	beentry->st_activity[len] = '\0';

	beentry->st_changecount++;
	Assert((beentry->st_changecount & 1) == 0);
}

1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574
/*
 * Set the current transaction start timestamp to the specified
 * value. If there is no current active transaction, this is signified
 * by 0.
 */
void
pgstat_report_txn_timestamp(TimestampTz tstamp)
{
	volatile PgBackendStatus *beentry = MyBEEntry;

	if (!pgstat_collect_querystring || !beentry)
		return;

	/*
	 * Update my status entry, following the protocol of bumping
	 * st_changecount before and after.  We use a volatile pointer
	 * here to ensure the compiler doesn't try to get cute.
	 */
	beentry->st_changecount++;
	beentry->st_txn_start_timestamp = tstamp;
	beentry->st_changecount++;
	Assert((beentry->st_changecount & 1) == 0);
}
1575

1576 1577 1578 1579
/* ----------
 * pgstat_report_waiting() -
 *
 *	Called from lock manager to report beginning or end of a lock wait.
1580 1581 1582
 *
 * NB: this *must* be able to survive being called before MyBEEntry has been
 * initialized.
1583 1584 1585 1586 1587
 * ----------
 */
void
pgstat_report_waiting(bool waiting)
{
1588
	volatile PgBackendStatus *beentry = MyBEEntry;
1589

1590
	if (!pgstat_collect_querystring || !beentry)
1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601
		return;

	/*
	 * Since this is a single-byte field in a struct that only this process
	 * may modify, there seems no need to bother with the st_changecount
	 * protocol.  The update must appear atomic in any case.
	 */
	beentry->st_waiting = waiting;
}


1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612
/* ----------
 * pgstat_read_current_status() -
 *
 *	Copy the current contents of the PgBackendStatus array to local memory,
 *	if not already done in this transaction.
 * ----------
 */
static void
pgstat_read_current_status(void)
{
	volatile PgBackendStatus *beentry;
1613
	PgBackendStatus *localtable;
1614 1615 1616 1617
	PgBackendStatus *localentry;
	int			i;

	Assert(!pgStatRunningInCollector);
1618
	if (localBackendStatusTable)
1619 1620
		return;					/* already done */

1621 1622 1623 1624
	pgstat_setup_memcxt();

	localtable = (PgBackendStatus *)
		MemoryContextAlloc(pgStatLocalContext,
1625 1626 1627 1628
						   sizeof(PgBackendStatus) * MaxBackends);
	localNumBackends = 0;

	beentry = BackendStatusArray;
1629
	localentry = localtable;
1630 1631 1632
	for (i = 1; i <= MaxBackends; i++)
	{
		/*
B
Bruce Momjian 已提交
1633 1634 1635 1636 1637
		 * Follow the protocol of retrying if st_changecount changes while we
		 * copy the entry, or if it's odd.  (The check for odd is needed to
		 * cover the case where we are able to completely copy the entry while
		 * the source backend is between increment steps.)	We use a volatile
		 * pointer here to ensure the compiler doesn't try to get cute.
1638 1639 1640
		 */
		for (;;)
		{
B
Bruce Momjian 已提交
1641
			int			save_changecount = beentry->st_changecount;
1642 1643

			/*
B
Bruce Momjian 已提交
1644 1645
			 * XXX if PGBE_ACTIVITY_SIZE is really large, it might be best to
			 * use strcpy not memcpy for copying the activity string?
1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665
			 */
			memcpy(localentry, (char *) beentry, sizeof(PgBackendStatus));

			if (save_changecount == beentry->st_changecount &&
				(save_changecount & 1) == 0)
				break;

			/* Make sure we can break out of loop if stuck... */
			CHECK_FOR_INTERRUPTS();
		}

		beentry++;
		/* Only valid entries get included into the local array */
		if (localentry->st_procpid > 0)
		{
			localentry++;
			localNumBackends++;
		}
	}

1666 1667
	/* Set the pointer only after completion of a valid table */
	localBackendStatusTable = localtable;
1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698
}


/* ------------------------------------------------------------
 * Local support functions follow
 * ------------------------------------------------------------
 */


/* ----------
 * pgstat_setheader() -
 *
 *		Set common header fields in a statistics message
 * ----------
 */
static void
pgstat_setheader(PgStat_MsgHdr *hdr, StatMsgType mtype)
{
	hdr->m_type = mtype;
}


/* ----------
 * pgstat_send() -
 *
 *		Send out one statistics message to the collector
 * ----------
 */
static void
pgstat_send(void *msg, int len)
{
1699 1700
	int			rc;

1701 1702
	if (pgStatSock < 0)
		return;
1703

1704
	((PgStat_MsgHdr *) msg)->m_size = len;
1705

1706 1707 1708 1709 1710 1711
	/* We'll retry after EINTR, but ignore all other failures */
	do
	{
		rc = send(pgStatSock, msg, len, 0);
	} while (rc < 0 && errno == EINTR);

1712
#ifdef USE_ASSERT_CHECKING
1713 1714
	/* In debug builds, log send failures ... */
	if (rc < 0)
1715 1716
		elog(LOG, "could not send to statistics collector: %m");
#endif
1717 1718
}

1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754
/* ----------
 * pgstat_send_bgwriter() -
 *
 *      Send bgwriter statistics to the collector
 * ----------
 */
void
pgstat_send_bgwriter(void)
{
	/*
	 * This function can be called even if nothing at all has happened.
	 * In this case, avoid sending a completely empty message to
	 * the stats collector.
	 */
	if (BgWriterStats.m_timed_checkpoints == 0 &&
		BgWriterStats.m_requested_checkpoints == 0 &&
		BgWriterStats.m_buf_written_checkpoints == 0 &&
		BgWriterStats.m_buf_written_lru == 0 &&
		BgWriterStats.m_buf_written_all == 0 &&
		BgWriterStats.m_maxwritten_lru == 0 &&
		BgWriterStats.m_maxwritten_all == 0)
		return;

	/*
	 * Prepare and send the message
	 */
	pgstat_setheader(&BgWriterStats.m_hdr, PGSTAT_MTYPE_BGWRITER);
	pgstat_send(&BgWriterStats, sizeof(BgWriterStats));

	/*
	 * Clear out the bgwriter statistics buffer, so it can be
	 * re-used.
	 */
	memset(&BgWriterStats, 0, sizeof(BgWriterStats));
}

1755

1756 1757 1758
/* ----------
 * PgstatCollectorMain() -
 *
B
Bruce Momjian 已提交
1759
 *	Start up the statistics collector process.	This is the body of the
1760
 *	postmaster child process.
1761 1762 1763 1764
 *
 *	The argc/argv parameters are valid only in EXEC_BACKEND case.
 * ----------
 */
1765
NON_EXEC_STATIC void
1766
PgstatCollectorMain(int argc, char *argv[])
1767
{
1768 1769 1770
	struct itimerval write_timeout;
	bool		need_timer = false;
	int			len;
1771
	PgStat_Msg	msg;
B
Bruce Momjian 已提交
1772

1773
#ifndef WIN32
1774 1775 1776 1777
#ifdef HAVE_POLL
	struct pollfd input_fd;
#else
	struct timeval sel_timeout;
1778
	fd_set		rfds;
1779
#endif
1780 1781 1782
#endif

	IsUnderPostmaster = true;	/* we are a postmaster subprocess now */
1783

1784 1785
	MyProcPid = getpid();		/* reset MyProcPid */

1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796
	/*
	 * If possible, make this process a group leader, so that the postmaster
	 * can signal any child processes too.  (pgstat probably never has
	 * any child processes, but for consistency we make all postmaster
	 * child processes do this.)
	 */
#ifdef HAVE_SETSID
	if (setsid() < 0)
		elog(FATAL, "setsid() failed: %m");
#endif

1797
	/*
1798 1799
	 * Ignore all signals usually bound to some action in the postmaster,
	 * except SIGQUIT and SIGALRM.
1800 1801 1802 1803
	 */
	pqsignal(SIGHUP, SIG_IGN);
	pqsignal(SIGINT, SIG_IGN);
	pqsignal(SIGTERM, SIG_IGN);
1804
	pqsignal(SIGQUIT, pgstat_exit);
1805
	pqsignal(SIGALRM, force_statwrite);
1806 1807 1808 1809 1810 1811 1812 1813 1814 1815
	pqsignal(SIGPIPE, SIG_IGN);
	pqsignal(SIGUSR1, SIG_IGN);
	pqsignal(SIGUSR2, SIG_IGN);
	pqsignal(SIGCHLD, SIG_DFL);
	pqsignal(SIGTTIN, SIG_DFL);
	pqsignal(SIGTTOU, SIG_DFL);
	pqsignal(SIGCONT, SIG_DFL);
	pqsignal(SIGWINCH, SIG_DFL);
	PG_SETMASK(&UnBlockSig);

1816 1817 1818
	/*
	 * Identify myself via ps
	 */
1819
	init_ps_display("stats collector process", "", "", "");
1820

1821 1822 1823
	/*
	 * Arrange to write the initial status file right away
	 */
1824 1825
	need_statwrite = true;

1826
	/* Preset the delay between status file writes */
1827 1828
	MemSet(&write_timeout, 0, sizeof(struct itimerval));
	write_timeout.it_value.tv_sec = PGSTAT_STAT_INTERVAL / 1000;
1829
	write_timeout.it_value.tv_usec = (PGSTAT_STAT_INTERVAL % 1000) * 1000;
1830

1831
	/*
B
Bruce Momjian 已提交
1832 1833
	 * Read in an existing statistics stats file or initialize the stats to
	 * zero.
1834
	 */
1835
	pgStatRunningInCollector = true;
1836
	pgStatDBHash = pgstat_read_statsfile(InvalidOid);
1837

1838
	/*
B
Bruce Momjian 已提交
1839 1840
	 * Setup the descriptor set for select(2).	Since only one bit in the set
	 * ever changes, we need not repeat FD_ZERO each time.
1841
	 */
1842
#if !defined(HAVE_POLL) && !defined(WIN32)
1843 1844
	FD_ZERO(&rfds);
#endif
1845

1846
	/*
1847 1848 1849
	 * Loop to process messages until we get SIGQUIT or detect ungraceful
	 * death of our parent postmaster.
	 *
B
Bruce Momjian 已提交
1850 1851
	 * For performance reasons, we don't want to do a PostmasterIsAlive() test
	 * after every message; instead, do it at statwrite time and if
1852
	 * select()/poll() is interrupted by timeout.
1853 1854 1855
	 */
	for (;;)
	{
B
Bruce Momjian 已提交
1856
		int			got_data;
1857 1858 1859 1860 1861 1862 1863

		/*
		 * Quit if we get SIGQUIT from the postmaster.
		 */
		if (need_exit)
			break;

1864
		/*
B
Bruce Momjian 已提交
1865
		 * If time to write the stats file, do so.	Note that the alarm
1866 1867 1868 1869
		 * interrupt isn't re-enabled immediately, but only after we next
		 * receive a stats message; so no cycles are wasted when there is
		 * nothing going on.
		 */
1870 1871
		if (need_statwrite)
		{
1872 1873 1874 1875
			/* Check for postmaster death; if so we'll write file below */
			if (!PostmasterIsAlive(true))
				break;

1876 1877 1878
			pgstat_write_statsfile();
			need_statwrite = false;
			need_timer = true;
1879 1880 1881
		}

		/*
1882 1883 1884
		 * Wait for a message to arrive; but not for more than
		 * PGSTAT_SELECT_TIMEOUT seconds. (This determines how quickly we will
		 * shut down after an ungraceful postmaster termination; so it needn't
B
Bruce Momjian 已提交
1885 1886 1887
		 * be very fast.  However, on some systems SIGQUIT won't interrupt the
		 * poll/select call, so this also limits speed of response to SIGQUIT,
		 * which is more important.)
1888
		 *
1889 1890
		 * We use poll(2) if available, otherwise select(2).
		 * Win32 has its own implementation.
1891
		 */
1892
#ifndef WIN32
1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910
#ifdef HAVE_POLL
		input_fd.fd = pgStatSock;
		input_fd.events = POLLIN | POLLERR;
		input_fd.revents = 0;

		if (poll(&input_fd, 1, PGSTAT_SELECT_TIMEOUT * 1000) < 0)
		{
			if (errno == EINTR)
				continue;
			ereport(ERROR,
					(errcode_for_socket_access(),
					 errmsg("poll() failed in statistics collector: %m")));
		}

		got_data = (input_fd.revents != 0);
#else							/* !HAVE_POLL */

		FD_SET(pgStatSock, &rfds);
1911 1912

		/*
1913 1914
		 * timeout struct is modified by select() on some operating systems,
		 * so re-fill it each time.
1915
		 */
1916 1917 1918 1919
		sel_timeout.tv_sec = PGSTAT_SELECT_TIMEOUT;
		sel_timeout.tv_usec = 0;

		if (select(pgStatSock + 1, &rfds, NULL, NULL, &sel_timeout) < 0)
1920
		{
1921 1922
			if (errno == EINTR)
				continue;
1923
			ereport(ERROR,
1924
					(errcode_for_socket_access(),
B
Bruce Momjian 已提交
1925
					 errmsg("select() failed in statistics collector: %m")));
1926 1927
		}

1928 1929
		got_data = FD_ISSET(pgStatSock, &rfds);
#endif   /* HAVE_POLL */
1930 1931 1932 1933
#else /* WIN32 */
		got_data = pgwin32_waitforsinglesocket(pgStatSock, FD_READ,
											   PGSTAT_SELECT_TIMEOUT*1000);
#endif
1934

1935
		/*
1936 1937
		 * If there is a message on the socket, read it and check for
		 * validity.
1938
		 */
1939
		if (got_data)
1940
		{
1941 1942 1943
			len = recv(pgStatSock, (char *) &msg,
					   sizeof(PgStat_Msg), 0);
			if (len < 0)
1944 1945 1946
			{
				if (errno == EINTR)
					continue;
1947 1948 1949
				ereport(ERROR,
						(errcode_for_socket_access(),
						 errmsg("could not read statistics message: %m")));
1950
			}
1951

1952
			/*
1953
			 * We ignore messages that are smaller than our common header
1954
			 */
1955 1956
			if (len < sizeof(PgStat_MsgHdr))
				continue;
1957

1958
			/*
1959
			 * The received length must match the length in the header
1960
			 */
1961 1962
			if (msg.msg_hdr.m_size != len)
				continue;
1963 1964

			/*
1965
			 * O.K. - we accept this message.  Process it.
1966 1967 1968 1969 1970 1971 1972
			 */
			switch (msg.msg_hdr.m_type)
			{
				case PGSTAT_MTYPE_DUMMY:
					break;

				case PGSTAT_MTYPE_TABSTAT:
1973
					pgstat_recv_tabstat((PgStat_MsgTabstat *) &msg, len);
1974 1975 1976
					break;

				case PGSTAT_MTYPE_TABPURGE:
1977
					pgstat_recv_tabpurge((PgStat_MsgTabpurge *) &msg, len);
1978 1979 1980
					break;

				case PGSTAT_MTYPE_DROPDB:
1981
					pgstat_recv_dropdb((PgStat_MsgDropdb *) &msg, len);
1982 1983 1984
					break;

				case PGSTAT_MTYPE_RESETCOUNTER:
1985
					pgstat_recv_resetcounter((PgStat_MsgResetcounter *) &msg,
1986
											 len);
1987 1988
					break;

1989
				case PGSTAT_MTYPE_AUTOVAC_START:
1990
					pgstat_recv_autovac((PgStat_MsgAutovacStart *) &msg, len);
1991 1992 1993
					break;

				case PGSTAT_MTYPE_VACUUM:
1994
					pgstat_recv_vacuum((PgStat_MsgVacuum *) &msg, len);
1995 1996 1997
					break;

				case PGSTAT_MTYPE_ANALYZE:
1998
					pgstat_recv_analyze((PgStat_MsgAnalyze *) &msg, len);
1999 2000
					break;

2001 2002 2003 2004
				case PGSTAT_MTYPE_BGWRITER:
					pgstat_recv_bgwriter((PgStat_MsgBgWriter *) &msg, len);
					break;

2005 2006 2007 2008
				default:
					break;
			}

2009 2010 2011 2012 2013
			/*
			 * If this is the first message after we wrote the stats file the
			 * last time, enable the alarm interrupt to make it be written
			 * again later.
			 */
2014
			if (need_timer)
2015
			{
2016
				if (setitimer(ITIMER_REAL, &write_timeout, NULL))
2017
					ereport(ERROR,
B
Bruce Momjian 已提交
2018
					(errmsg("could not set statistics collector timer: %m")));
2019
				need_timer = false;
2020
			}
2021 2022 2023 2024
		}
		else
		{
			/*
B
Bruce Momjian 已提交
2025 2026
			 * We can only get here if the select/poll timeout elapsed. Check
			 * for postmaster death.
2027
			 */
2028 2029
			if (!PostmasterIsAlive(true))
				break;
2030
		}
B
Bruce Momjian 已提交
2031
	}							/* end of message-processing loop */
2032

2033 2034 2035 2036
	/*
	 * Save the final stats to reuse at next startup.
	 */
	pgstat_write_statsfile();
2037

2038
	exit(0);
2039 2040
}

2041 2042

/* SIGQUIT signal handler for collector process */
2043 2044 2045
static void
pgstat_exit(SIGNAL_ARGS)
{
2046
	need_exit = true;
2047 2048
}

2049
/* SIGALRM signal handler for collector process */
2050
static void
2051
force_statwrite(SIGNAL_ARGS)
2052
{
2053
	need_statwrite = true;
2054 2055
}

2056

2057 2058
/*
 * Lookup the hash table entry for the specified database. If no hash
2059 2060
 * table entry exists, initialize it, if the create parameter is true.
 * Else, return NULL.
2061 2062
 */
static PgStat_StatDBEntry *
2063
pgstat_get_db_entry(Oid databaseid, bool create)
2064 2065
{
	PgStat_StatDBEntry *result;
B
Bruce Momjian 已提交
2066 2067
	bool		found;
	HASHACTION	action = (create ? HASH_ENTER : HASH_FIND);
2068 2069 2070 2071

	/* Lookup or create the hash table entry for this database */
	result = (PgStat_StatDBEntry *) hash_search(pgStatDBHash,
												&databaseid,
2072 2073 2074 2075
												action, &found);

	if (!create && !found)
		return NULL;
2076

2077
	/* If not found, initialize the new one. */
2078 2079
	if (!found)
	{
2080
		HASHCTL		hash_ctl;
2081

2082 2083 2084 2085 2086
		result->tables = NULL;
		result->n_xact_commit = 0;
		result->n_xact_rollback = 0;
		result->n_blocks_fetched = 0;
		result->n_blocks_hit = 0;
2087 2088 2089 2090 2091
		result->n_tuples_returned = 0;
		result->n_tuples_fetched = 0;
		result->n_tuples_inserted = 0;
		result->n_tuples_updated = 0;
		result->n_tuples_deleted = 0;
2092
		result->last_autovac_time = 0;
2093 2094

		memset(&hash_ctl, 0, sizeof(hash_ctl));
2095
		hash_ctl.keysize = sizeof(Oid);
2096
		hash_ctl.entrysize = sizeof(PgStat_StatTabEntry);
2097
		hash_ctl.hash = oid_hash;
2098
		result->tables = hash_create("Per-database table",
B
Bruce Momjian 已提交
2099 2100 2101
									 PGSTAT_TAB_HASH_SIZE,
									 &hash_ctl,
									 HASH_ELEM | HASH_FUNCTION);
2102 2103
	}

2104
	return result;
2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116
}


/* ----------
 * pgstat_write_statsfile() -
 *
 *	Tell the news.
 * ----------
 */
static void
pgstat_write_statsfile(void)
{
2117 2118 2119 2120 2121
	HASH_SEQ_STATUS hstat;
	HASH_SEQ_STATUS tstat;
	PgStat_StatDBEntry *dbentry;
	PgStat_StatTabEntry *tabentry;
	FILE	   *fpout;
2122
	int32		format_id;
2123 2124

	/*
2125
	 * Open the statistics temp file to write out the current values.
2126
	 */
2127
	fpout = fopen(PGSTAT_STAT_TMPFILE, PG_BINARY_W);
2128 2129
	if (fpout == NULL)
	{
2130 2131
		ereport(LOG,
				(errcode_for_file_access(),
B
Bruce Momjian 已提交
2132 2133
				 errmsg("could not open temporary statistics file \"%s\": %m",
						PGSTAT_STAT_TMPFILE)));
2134 2135 2136
		return;
	}

2137 2138 2139 2140 2141 2142
	/*
	 * Write the file header --- currently just a format ID.
	 */
	format_id = PGSTAT_FILE_FORMAT_ID;
	fwrite(&format_id, sizeof(format_id), 1, fpout);

2143 2144 2145 2146 2147
	/*
	 * Write global stats struct
	 */
	fwrite(&globalStats, sizeof(globalStats), 1, fpout);

2148 2149 2150 2151
	/*
	 * Walk through the database table.
	 */
	hash_seq_init(&hstat, pgStatDBHash);
2152
	while ((dbentry = (PgStat_StatDBEntry *) hash_seq_search(&hstat)) != NULL)
2153 2154
	{
		/*
B
Bruce Momjian 已提交
2155 2156 2157
		 * Write out the DB entry including the number of live backends. We
		 * don't write the tables pointer since it's of no use to any other
		 * process.
2158 2159
		 */
		fputc('D', fpout);
2160
		fwrite(dbentry, offsetof(PgStat_StatDBEntry, tables), 1, fpout);
2161 2162

		/*
2163
		 * Walk through the database's access stats per table.
2164 2165
		 */
		hash_seq_init(&tstat, dbentry->tables);
2166
		while ((tabentry = (PgStat_StatTabEntry *) hash_seq_search(&tstat)) != NULL)
2167 2168 2169 2170
		{
			fputc('T', fpout);
			fwrite(tabentry, sizeof(PgStat_StatTabEntry), 1, fpout);
		}
2171

2172 2173 2174 2175 2176 2177 2178
		/*
		 * Mark the end of this DB
		 */
		fputc('d', fpout);
	}

	/*
2179
	 * No more output to be done. Close the temp file and replace the old
2180 2181
	 * pgstat.stat with it.  The ferror() check replaces testing for error
	 * after each individual fputc or fwrite above.
2182 2183
	 */
	fputc('E', fpout);
2184 2185 2186 2187 2188

	if (ferror(fpout))
	{
		ereport(LOG,
				(errcode_for_file_access(),
B
Bruce Momjian 已提交
2189 2190
			   errmsg("could not write temporary statistics file \"%s\": %m",
					  PGSTAT_STAT_TMPFILE)));
2191 2192 2193 2194
		fclose(fpout);
		unlink(PGSTAT_STAT_TMPFILE);
	}
	else if (fclose(fpout) < 0)
2195
	{
2196 2197
		ereport(LOG,
				(errcode_for_file_access(),
B
Bruce Momjian 已提交
2198 2199
			   errmsg("could not close temporary statistics file \"%s\": %m",
					  PGSTAT_STAT_TMPFILE)));
2200
		unlink(PGSTAT_STAT_TMPFILE);
2201
	}
2202
	else if (rename(PGSTAT_STAT_TMPFILE, PGSTAT_STAT_FILENAME) < 0)
2203
	{
2204 2205 2206 2207 2208
		ereport(LOG,
				(errcode_for_file_access(),
				 errmsg("could not rename temporary statistics file \"%s\" to \"%s\": %m",
						PGSTAT_STAT_TMPFILE, PGSTAT_STAT_FILENAME)));
		unlink(PGSTAT_STAT_TMPFILE);
2209 2210 2211 2212 2213 2214 2215
	}
}


/* ----------
 * pgstat_read_statsfile() -
 *
2216 2217
 *	Reads in an existing statistics collector file and initializes the
 *	databases' hash table (whose entries point to the tables' hash tables).
2218 2219
 * ----------
 */
2220 2221
static HTAB *
pgstat_read_statsfile(Oid onlydb)
2222
{
2223 2224 2225 2226 2227
	PgStat_StatDBEntry *dbentry;
	PgStat_StatDBEntry dbbuf;
	PgStat_StatTabEntry *tabentry;
	PgStat_StatTabEntry tabbuf;
	HASHCTL		hash_ctl;
2228
	HTAB	   *dbhash;
2229 2230
	HTAB	   *tabhash = NULL;
	FILE	   *fpin;
2231
	int32		format_id;
2232 2233 2234
	bool		found;

	/*
2235
	 * The tables will live in pgStatLocalContext.
2236
	 */
2237
	pgstat_setup_memcxt();
2238 2239 2240 2241 2242

	/*
	 * Create the DB hashtable
	 */
	memset(&hash_ctl, 0, sizeof(hash_ctl));
2243
	hash_ctl.keysize = sizeof(Oid);
2244
	hash_ctl.entrysize = sizeof(PgStat_StatDBEntry);
2245
	hash_ctl.hash = oid_hash;
2246 2247 2248
	hash_ctl.hcxt = pgStatLocalContext;
	dbhash = hash_create("Databases hash", PGSTAT_DB_HASH_SIZE, &hash_ctl,
						 HASH_ELEM | HASH_FUNCTION | HASH_CONTEXT);
2249

2250 2251 2252 2253 2254 2255
	/*
	 * Clear out global statistics so they start from zero in case we can't
	 * load an existing statsfile.
	 */
	memset(&globalStats, 0, sizeof(globalStats));

2256
	/*
B
Bruce Momjian 已提交
2257 2258 2259
	 * Try to open the status file. If it doesn't exist, the backends simply
	 * return zero for anything and the collector simply starts from scratch
	 * with empty counters.
2260
	 */
2261
	if ((fpin = AllocateFile(PGSTAT_STAT_FILENAME, PG_BINARY_R)) == NULL)
2262
		return dbhash;
2263

2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274
	/*
	 * Verify it's of the expected format.
	 */
	if (fread(&format_id, 1, sizeof(format_id), fpin) != sizeof(format_id)
		|| format_id != PGSTAT_FILE_FORMAT_ID)
	{
		ereport(pgStatRunningInCollector ? LOG : WARNING,
				(errmsg("corrupted pgstat.stat file")));
		goto done;
	}

2275 2276 2277 2278 2279 2280 2281 2282 2283 2284
	/*
	 * Read global stats struct
	 */
	if (fread(&globalStats, 1, sizeof(globalStats), fpin) != sizeof(globalStats))
	{
		ereport(pgStatRunningInCollector ? LOG : WARNING,
				(errmsg("corrupted pgstat.stat file")));
		goto done;
	}

2285
	/*
2286 2287
	 * We found an existing collector stats file. Read it and put all the
	 * hashtable entries into place.
2288 2289 2290 2291 2292
	 */
	for (;;)
	{
		switch (fgetc(fpin))
		{
2293 2294
				/*
				 * 'D'	A PgStat_StatDBEntry struct describing a database
B
Bruce Momjian 已提交
2295 2296
				 * follows. Subsequently, zero to many 'T' entries will follow
				 * until a 'd' is encountered.
2297
				 */
2298
			case 'D':
2299 2300
				if (fread(&dbbuf, 1, offsetof(PgStat_StatDBEntry, tables),
						  fpin) != offsetof(PgStat_StatDBEntry, tables))
2301
				{
2302 2303
					ereport(pgStatRunningInCollector ? LOG : WARNING,
							(errmsg("corrupted pgstat.stat file")));
2304
					goto done;
2305 2306 2307 2308 2309
				}

				/*
				 * Add to the DB hash
				 */
2310
				dbentry = (PgStat_StatDBEntry *) hash_search(dbhash,
B
Bruce Momjian 已提交
2311
												  (void *) &dbbuf.databaseid,
2312 2313
															 HASH_ENTER,
															 &found);
2314 2315
				if (found)
				{
2316 2317
					ereport(pgStatRunningInCollector ? LOG : WARNING,
							(errmsg("corrupted pgstat.stat file")));
2318
					goto done;
2319 2320 2321
				}

				memcpy(dbentry, &dbbuf, sizeof(PgStat_StatDBEntry));
2322
				dbentry->tables = NULL;
2323 2324

				/*
2325 2326
				 * Don't collect tables if not the requested DB (or the
				 * shared-table info)
2327
				 */
2328 2329 2330 2331
				if (onlydb != InvalidOid)
				{
					if (dbbuf.databaseid != onlydb &&
						dbbuf.databaseid != InvalidOid)
B
Bruce Momjian 已提交
2332
						break;
2333
				}
2334 2335

				memset(&hash_ctl, 0, sizeof(hash_ctl));
2336
				hash_ctl.keysize = sizeof(Oid);
2337
				hash_ctl.entrysize = sizeof(PgStat_StatTabEntry);
2338
				hash_ctl.hash = oid_hash;
2339
				hash_ctl.hcxt = pgStatLocalContext;
2340 2341 2342
				dbentry->tables = hash_create("Per-database table",
											  PGSTAT_TAB_HASH_SIZE,
											  &hash_ctl,
2343
									 HASH_ELEM | HASH_FUNCTION | HASH_CONTEXT);
2344 2345

				/*
2346
				 * Arrange that following 'T's add entries to this database's
B
Bruce Momjian 已提交
2347
				 * tables hash table.
2348 2349 2350 2351
				 */
				tabhash = dbentry->tables;
				break;

2352 2353 2354
				/*
				 * 'd'	End of this database.
				 */
2355 2356 2357 2358
			case 'd':
				tabhash = NULL;
				break;

2359 2360 2361
				/*
				 * 'T'	A PgStat_StatTabEntry follows.
				 */
2362
			case 'T':
2363 2364
				if (fread(&tabbuf, 1, sizeof(PgStat_StatTabEntry),
						  fpin) != sizeof(PgStat_StatTabEntry))
2365
				{
2366 2367
					ereport(pgStatRunningInCollector ? LOG : WARNING,
							(errmsg("corrupted pgstat.stat file")));
2368
					goto done;
2369 2370 2371 2372 2373 2374 2375 2376
				}

				/*
				 * Skip if table belongs to a not requested database.
				 */
				if (tabhash == NULL)
					break;

2377
				tabentry = (PgStat_StatTabEntry *) hash_search(tabhash,
B
Bruce Momjian 已提交
2378 2379
													(void *) &tabbuf.tableid,
														 HASH_ENTER, &found);
2380 2381 2382

				if (found)
				{
2383 2384
					ereport(pgStatRunningInCollector ? LOG : WARNING,
							(errmsg("corrupted pgstat.stat file")));
2385
					goto done;
2386 2387 2388 2389 2390
				}

				memcpy(tabentry, &tabbuf, sizeof(tabbuf));
				break;

2391
				/*
2392
				 * 'E'	The EOF marker of a complete stats file.
2393
				 */
2394 2395
			case 'E':
				goto done;
2396

2397 2398 2399 2400 2401 2402
			default:
				ereport(pgStatRunningInCollector ? LOG : WARNING,
						(errmsg("corrupted pgstat.stat file")));
				goto done;
		}
	}
2403

2404 2405
done:
	FreeFile(fpin);
2406 2407

	return dbhash;
2408
}
2409

2410
/*
2411 2412 2413
 * If not already done, read the statistics collector stats file into
 * some hash tables.  The results will be kept until pgstat_clear_snapshot()
 * is called (typically, at end of transaction).
2414 2415 2416 2417
 */
static void
backend_read_statsfile(void)
{
2418 2419 2420 2421 2422
	/* already read it? */
	if (pgStatDBHash)
		return;
	Assert(!pgStatRunningInCollector);

2423 2424
	/* Autovacuum launcher wants stats about all databases */
	if (IsAutoVacuumLauncherProcess())
2425
		pgStatDBHash = pgstat_read_statsfile(InvalidOid);
2426
	else
2427 2428
		pgStatDBHash = pgstat_read_statsfile(MyDatabaseId);
}
2429

2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445

/* ----------
 * pgstat_setup_memcxt() -
 *
 *	Create pgStatLocalContext, if not already done.
 * ----------
 */
static void
pgstat_setup_memcxt(void)
{
	if (!pgStatLocalContext)
		pgStatLocalContext = AllocSetContextCreate(TopMemoryContext,
												   "Statistics snapshot",
												   ALLOCSET_SMALL_MINSIZE,
												   ALLOCSET_SMALL_INITSIZE,
												   ALLOCSET_SMALL_MAXSIZE);
2446 2447
}

2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473

/* ----------
 * pgstat_clear_snapshot() -
 *
 *	Discard any data collected in the current transaction.  Any subsequent
 *	request will cause new snapshots to be read.
 *
 *	This is also invoked during transaction commit or abort to discard
 *	the no-longer-wanted snapshot.
 * ----------
 */
void
pgstat_clear_snapshot(void)
{
	/* Release memory, if any was allocated */
	if (pgStatLocalContext)
		MemoryContextDelete(pgStatLocalContext);

	/* Reset variables */
	pgStatLocalContext = NULL;
	pgStatDBHash = NULL;
	localBackendStatusTable = NULL;
	localNumBackends = 0;
}


2474 2475 2476 2477 2478 2479 2480 2481 2482
/* ----------
 * pgstat_recv_tabstat() -
 *
 *	Count what the backend has done.
 * ----------
 */
static void
pgstat_recv_tabstat(PgStat_MsgTabstat *msg, int len)
{
2483 2484 2485 2486 2487
	PgStat_TableEntry *tabmsg = &(msg->m_entry[0]);
	PgStat_StatDBEntry *dbentry;
	PgStat_StatTabEntry *tabentry;
	int			i;
	bool		found;
2488

2489
	dbentry = pgstat_get_db_entry(msg->m_databaseid, true);
2490 2491

	/*
2492
	 * Update database-wide stats.
2493
	 */
2494 2495
	dbentry->n_xact_commit += (PgStat_Counter) (msg->m_xact_commit);
	dbentry->n_xact_rollback += (PgStat_Counter) (msg->m_xact_rollback);
2496 2497 2498 2499 2500 2501

	/*
	 * Process all table entries in the message.
	 */
	for (i = 0; i < msg->m_nentries; i++)
	{
2502
		tabentry = (PgStat_StatTabEntry *) hash_search(dbentry->tables,
B
Bruce Momjian 已提交
2503 2504
												  (void *) &(tabmsg[i].t_id),
													   HASH_ENTER, &found);
2505 2506 2507 2508

		if (!found)
		{
			/*
B
Bruce Momjian 已提交
2509 2510
			 * If it's a new table entry, initialize counters to the values we
			 * just got.
2511
			 */
2512 2513 2514 2515 2516 2517
			tabentry->numscans = tabmsg[i].t_numscans;
			tabentry->tuples_returned = tabmsg[i].t_tuples_returned;
			tabentry->tuples_fetched = tabmsg[i].t_tuples_fetched;
			tabentry->tuples_inserted = tabmsg[i].t_tuples_inserted;
			tabentry->tuples_updated = tabmsg[i].t_tuples_updated;
			tabentry->tuples_deleted = tabmsg[i].t_tuples_deleted;
B
Bruce Momjian 已提交
2518

2519 2520 2521
			tabentry->n_live_tuples = tabmsg[i].t_tuples_inserted;
			tabentry->n_dead_tuples = tabmsg[i].t_tuples_updated +
				tabmsg[i].t_tuples_deleted;
2522
			tabentry->last_anl_tuples = 0;
2523 2524 2525 2526
			tabentry->vacuum_timestamp = 0;
			tabentry->autovac_vacuum_timestamp = 0;
			tabentry->analyze_timestamp = 0;
			tabentry->autovac_analyze_timestamp = 0;
2527 2528 2529

			tabentry->blocks_fetched = tabmsg[i].t_blocks_fetched;
			tabentry->blocks_hit = tabmsg[i].t_blocks_hit;
2530 2531 2532 2533 2534 2535
		}
		else
		{
			/*
			 * Otherwise add the values to the existing entry.
			 */
2536 2537 2538 2539 2540 2541
			tabentry->numscans += tabmsg[i].t_numscans;
			tabentry->tuples_returned += tabmsg[i].t_tuples_returned;
			tabentry->tuples_fetched += tabmsg[i].t_tuples_fetched;
			tabentry->tuples_inserted += tabmsg[i].t_tuples_inserted;
			tabentry->tuples_updated += tabmsg[i].t_tuples_updated;
			tabentry->tuples_deleted += tabmsg[i].t_tuples_deleted;
2542

2543 2544
			tabentry->n_live_tuples += tabmsg[i].t_tuples_inserted -
				tabmsg[i].t_tuples_deleted;
2545 2546
			tabentry->n_dead_tuples += tabmsg[i].t_tuples_updated +
				tabmsg[i].t_tuples_deleted;
2547 2548 2549

			tabentry->blocks_fetched += tabmsg[i].t_blocks_fetched;
			tabentry->blocks_hit += tabmsg[i].t_blocks_hit;
2550 2551
		}

2552 2553 2554 2555 2556 2557 2558 2559 2560
		/*
		 * Add table stats to the database entry.
		 */
		dbentry->n_tuples_returned += tabmsg[i].t_tuples_returned;
		dbentry->n_tuples_fetched += tabmsg[i].t_tuples_fetched;
		dbentry->n_tuples_inserted += tabmsg[i].t_tuples_inserted;
		dbentry->n_tuples_updated += tabmsg[i].t_tuples_updated;
		dbentry->n_tuples_deleted += tabmsg[i].t_tuples_deleted;

2561 2562 2563
		/*
		 * And add the block IO to the database entry.
		 */
2564 2565
		dbentry->n_blocks_fetched += tabmsg[i].t_blocks_fetched;
		dbentry->n_blocks_hit += tabmsg[i].t_blocks_hit;
2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578
	}
}


/* ----------
 * pgstat_recv_tabpurge() -
 *
 *	Arrange for dead table removal.
 * ----------
 */
static void
pgstat_recv_tabpurge(PgStat_MsgTabpurge *msg, int len)
{
2579 2580
	PgStat_StatDBEntry *dbentry;
	int			i;
2581

2582 2583 2584 2585 2586 2587 2588
	dbentry = pgstat_get_db_entry(msg->m_databaseid, false);

	/*
	 * No need to purge if we don't even know the database.
	 */
	if (!dbentry || !dbentry->tables)
		return;
2589 2590 2591 2592 2593 2594

	/*
	 * Process all table entries in the message.
	 */
	for (i = 0; i < msg->m_nentries; i++)
	{
2595 2596 2597 2598
		/* Remove from hashtable if present; we don't care if it's not. */
		(void) hash_search(dbentry->tables,
						   (void *) &(msg->m_tableid[i]),
						   HASH_REMOVE, NULL);
2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611
	}
}


/* ----------
 * pgstat_recv_dropdb() -
 *
 *	Arrange for dead database removal
 * ----------
 */
static void
pgstat_recv_dropdb(PgStat_MsgDropdb *msg, int len)
{
2612
	PgStat_StatDBEntry *dbentry;
2613 2614 2615 2616

	/*
	 * Lookup the database in the hashtable.
	 */
2617
	dbentry = pgstat_get_db_entry(msg->m_databaseid, false);
2618 2619

	/*
2620
	 * If found, remove it.
2621
	 */
2622
	if (dbentry)
2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633
	{
		if (dbentry->tables != NULL)
			hash_destroy(dbentry->tables);

		if (hash_search(pgStatDBHash,
						(void *) &(dbentry->databaseid),
						HASH_REMOVE, NULL) == NULL)
			ereport(ERROR,
					(errmsg("database hash table corrupted "
							"during cleanup --- abort")));
	}
2634 2635 2636 2637
}


/* ----------
2638
 * pgstat_recv_resetcounter() -
2639
 *
2640
 *	Reset the statistics for the specified database.
2641 2642 2643 2644 2645
 * ----------
 */
static void
pgstat_recv_resetcounter(PgStat_MsgResetcounter *msg, int len)
{
2646 2647
	HASHCTL		hash_ctl;
	PgStat_StatDBEntry *dbentry;
2648 2649

	/*
2650
	 * Lookup the database in the hashtable.  Nothing to do if not there.
2651
	 */
2652 2653 2654 2655
	dbentry = pgstat_get_db_entry(msg->m_databaseid, false);

	if (!dbentry)
		return;
2656 2657

	/*
B
Bruce Momjian 已提交
2658 2659
	 * We simply throw away all the database's table entries by recreating a
	 * new hash table for them.
2660 2661 2662 2663
	 */
	if (dbentry->tables != NULL)
		hash_destroy(dbentry->tables);

2664 2665 2666 2667 2668
	dbentry->tables = NULL;
	dbentry->n_xact_commit = 0;
	dbentry->n_xact_rollback = 0;
	dbentry->n_blocks_fetched = 0;
	dbentry->n_blocks_hit = 0;
2669 2670

	memset(&hash_ctl, 0, sizeof(hash_ctl));
2671
	hash_ctl.keysize = sizeof(Oid);
2672
	hash_ctl.entrysize = sizeof(PgStat_StatTabEntry);
2673
	hash_ctl.hash = oid_hash;
2674 2675 2676 2677
	dbentry->tables = hash_create("Per-database table",
								  PGSTAT_TAB_HASH_SIZE,
								  &hash_ctl,
								  HASH_ELEM | HASH_FUNCTION);
2678
}
2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733

/* ----------
 * pgstat_recv_autovac() -
 *
 *	Process an autovacuum signalling message.
 * ----------
 */
static void
pgstat_recv_autovac(PgStat_MsgAutovacStart *msg, int len)
{
	PgStat_StatDBEntry *dbentry;

	/*
	 * Lookup the database in the hashtable.  Don't create the entry if it
	 * doesn't exist, because autovacuum may be processing a template
	 * database.  If this isn't the case, the database is most likely to have
	 * an entry already.  (If it doesn't, not much harm is done anyway --
	 * it'll get created as soon as somebody actually uses the database.)
	 */
	dbentry = pgstat_get_db_entry(msg->m_databaseid, false);
	if (dbentry == NULL)
		return;

	/*
	 * Store the last autovacuum time in the database entry.
	 */
	dbentry->last_autovac_time = msg->m_start_time;
}

/* ----------
 * pgstat_recv_vacuum() -
 *
 *	Process a VACUUM message.
 * ----------
 */
static void
pgstat_recv_vacuum(PgStat_MsgVacuum *msg, int len)
{
	PgStat_StatDBEntry *dbentry;
	PgStat_StatTabEntry *tabentry;

	/*
	 * Don't create either the database or table entry if it doesn't already
	 * exist.  This avoids bloating the stats with entries for stuff that is
	 * only touched by vacuum and not by live operations.
	 */
	dbentry = pgstat_get_db_entry(msg->m_databaseid, false);
	if (dbentry == NULL)
		return;

	tabentry = hash_search(dbentry->tables, &(msg->m_tableoid),
						   HASH_FIND, NULL);
	if (tabentry == NULL)
		return;

B
Bruce Momjian 已提交
2734
	if (msg->m_autovacuum)
2735
		tabentry->autovac_vacuum_timestamp = msg->m_vacuumtime;
B
Bruce Momjian 已提交
2736 2737
	else
		tabentry->vacuum_timestamp = msg->m_vacuumtime;
2738 2739 2740 2741 2742 2743 2744 2745 2746 2747
	tabentry->n_live_tuples = msg->m_tuples;
	tabentry->n_dead_tuples = 0;
	if (msg->m_analyze)
	{
		tabentry->last_anl_tuples = msg->m_tuples;
		if (msg->m_autovacuum)
			tabentry->autovac_analyze_timestamp = msg->m_vacuumtime;
		else
			tabentry->analyze_timestamp = msg->m_vacuumtime;
	}
2748 2749 2750 2751 2752 2753
	else
	{
		/* last_anl_tuples must never exceed n_live_tuples */
		tabentry->last_anl_tuples = Min(tabentry->last_anl_tuples,
										msg->m_tuples);
	}
2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781
}

/* ----------
 * pgstat_recv_analyze() -
 *
 *	Process an ANALYZE message.
 * ----------
 */
static void
pgstat_recv_analyze(PgStat_MsgAnalyze *msg, int len)
{
	PgStat_StatDBEntry *dbentry;
	PgStat_StatTabEntry *tabentry;

	/*
	 * Don't create either the database or table entry if it doesn't already
	 * exist.  This avoids bloating the stats with entries for stuff that is
	 * only touched by analyze and not by live operations.
	 */
	dbentry = pgstat_get_db_entry(msg->m_databaseid, false);
	if (dbentry == NULL)
		return;

	tabentry = hash_search(dbentry->tables, &(msg->m_tableoid),
						   HASH_FIND, NULL);
	if (tabentry == NULL)
		return;

B
Bruce Momjian 已提交
2782
	if (msg->m_autovacuum)
2783
		tabentry->autovac_analyze_timestamp = msg->m_analyzetime;
B
Bruce Momjian 已提交
2784
	else
2785 2786 2787 2788 2789
		tabentry->analyze_timestamp = msg->m_analyzetime;
	tabentry->n_live_tuples = msg->m_live_tuples;
	tabentry->n_dead_tuples = msg->m_dead_tuples;
	tabentry->last_anl_tuples = msg->m_live_tuples + msg->m_dead_tuples;
}
2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808


/* ----------
 * pgstat_recv_bgwriter() -
 *
 *	Process a BGWRITER message.
 * ----------
 */
static void
pgstat_recv_bgwriter(PgStat_MsgBgWriter *msg, int len)
{
	globalStats.timed_checkpoints += msg->m_timed_checkpoints;
	globalStats.requested_checkpoints += msg->m_requested_checkpoints;
	globalStats.buf_written_checkpoints += msg->m_buf_written_checkpoints;
	globalStats.buf_written_lru += msg->m_buf_written_lru;
	globalStats.buf_written_all += msg->m_buf_written_all;
	globalStats.maxwritten_lru += msg->m_maxwritten_lru;
	globalStats.maxwritten_all += msg->m_maxwritten_all;
}