pgsql: Improve contrib/pg_stat_statements' handling of garbage collecti

Поиск
Список
Период
Сортировка
От Tom Lane
Тема pgsql: Improve contrib/pg_stat_statements' handling of garbage collecti
Дата
Msg-id E1ZirJ3-0006zU-Ji@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Improve contrib/pg_stat_statements' handling of garbage collection failure.

If we can't read the query texts file (whether because out-of-memory, or
for some other reason), give up and reset the file to empty, discarding all
stored query texts, though not the statistics per se.  We used to leave
things alone and hope for better luck next time, but the problem is that
the file is only going to get bigger and even harder to slurp into memory.
Better to do something that will get us out of trouble.

Likewise reset the file to empty for any other failure within gc_qtexts().
The previous behavior after a write error was to discard query texts but
not do anything to truncate the file, which is just weird.

Also, increase the maximum supported file size from MaxAllocSize to
MaxAllocHugeSize; this makes it more likely we'll be able to do a garbage
collection successfully.

Also, fix recalculation of mean_query_len within entry_dealloc() to match
the calculation in gc_qtexts().  The previous coding overlooked the
possibility of dropped texts (query_len == -1) and would underestimate the
mean of the remaining entries in such cases, thus possibly causing excess
garbage collection cycles.

In passing, add some errdetail to the log entry that complains about
insufficient memory to read the query texts file, which after all was
Jim Nasby's original complaint.

Back-patch to 9.4 where the current handling of query texts was
introduced.

Peter Geoghegan, rather editorialized upon by me

Branch
------
REL9_5_STABLE

Details
-------
http://git.postgresql.org/pg/commitdiff/39a716d93300eeb28b959a0b248009a10fa49d3c

Modified Files
--------------
contrib/pg_stat_statements/pg_stat_statements.c |   93 ++++++++++++++++++-----
1 file changed, 75 insertions(+), 18 deletions(-)


В списке pgsql-committers по дате отправления:

Предыдущее
От: Tom Lane
Дата:
Сообщение: pgsql: Improve contrib/pg_stat_statements' handling of garbage collecti
Следующее
От: Tom Lane
Дата:
Сообщение: pgsql: Release notes for 9.5beta1, 9.4.5, 9.3.10, 9.2.14, 9.1.19, 9.0.2