OSDN Git Service

Fix a performance problem in databases with large numbers of tables
authorTom Lane <tgl@sss.pgh.pa.us>
Thu, 11 Jan 2007 23:06:03 +0000 (23:06 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Thu, 11 Jan 2007 23:06:03 +0000 (23:06 +0000)
commit97903c3d94b6d6ce089c90c34c1000653007b020
treeaa66b9f7378915d6744a71378068cc4774295b29
parent87f6d64149bbd1f0ae129f20576efbda4503c521
Fix a performance problem in databases with large numbers of tables
(or other types of pg_class entry): the function pgstat_vacuum_tabstat,
invoked during VACUUM startup, had runtime proportional to the number of
stats table entries times the number of pg_class rows; in other words
O(N^2) if the stats collector's information is reasonably complete.
Replace list searching with a hash table to bring it back to O(N)
behavior.  Per report from kim at myemma.com.

Back-patch as far as 8.1; 8.0 and before use different coding here.
src/backend/postmaster/pgstat.c