pgsql: pgstat: reduce timer overhead by leaving timer running.

Поиск
Список
Период
Сортировка
От Andres Freund
Тема pgsql: pgstat: reduce timer overhead by leaving timer running.
Дата
Msg-id E1o8pHf-001NEM-O3@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
pgstat: reduce timer overhead by leaving timer running.

Previously the timer was enabled whenever there were any pending stats after
executing a statement, just to then be disabled again when not idle
anymore. That lead to an increase in GetCurrentTimestamp() calls from within
timeout.c compared to 14.

To avoid that increase, leave the timer enabled until stats are reported,
rather than until idle. The timer is only disabled once the pending stats have
been reported.

For me this fixes the increase in GetCurrentTimestamp() calls, there now are
fewer calls in 15 than in 14, in the previously slowed down workload.

While at it, also update assertion in pgstat_report_stat() to be more precise.

Author: Andres Freund <andres@anarazel.de>
Discussion: https://postgr.es/m/20220616233130.rparivafipt6doj3@alap3.anarazel.de
Backpatch: 15-

Branch
------
REL_15_STABLE

Details
-------
https://git.postgresql.org/pg/commitdiff/4a37527fde3c0959475636dcc88c19b7315f891a

Modified Files
--------------
src/backend/tcop/postgres.c         | 48 ++++++++++++++++++++++++-------------
src/backend/utils/activity/pgstat.c |  2 +-
2 files changed, 32 insertions(+), 18 deletions(-)


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

Предыдущее
От: Andres Freund
Дата:
Сообщение: pgsql: expression eval: Fix EEOP_JSON_CONSTRUCTOR and EEOP_JSONEXPR siz
Следующее
От: Tom Lane
Дата:
Сообщение: pgsql: Tighten pg_upgrade's new check for non-upgradable anyarray usage