]> granicus.if.org Git - postgresql/commit
Split pgstat file in smaller pieces
authorAlvaro Herrera <alvherre@alvh.no-ip.org>
Mon, 18 Feb 2013 20:56:08 +0000 (17:56 -0300)
committerAlvaro Herrera <alvherre@alvh.no-ip.org>
Mon, 18 Feb 2013 21:12:52 +0000 (18:12 -0300)
commit187492b6c2e8cafc5b39063ca3b67846e8155d24
treef65867fba48f657a0093df4a4a04b34681a88c95
parent9475db3a4eb5876b364254886d2730db01e042fd
Split pgstat file in smaller pieces

We now write one file per database and one global file, instead of
having the whole thing in a single huge file.  This reduces the I/O that
must be done when partial data is required -- which is all the time,
because each process only needs information on its own database anyway.
Also, the autovacuum launcher does not need data about tables and
functions in each database; having the global stats for all DBs is
enough.

Catalog version bumped because we have a new subdir under PGDATA.

Author: Tomas Vondra.  Some rework by Álvaro
Testing by Jeff Janes
Other discussion by Heikki Linnakangas, Tom Lane.
src/backend/postmaster/pgstat.c
src/backend/utils/misc/guc.c
src/bin/initdb/initdb.c
src/include/catalog/catversion.h
src/include/pgstat.h