pgsql: Don't delay replication for less than recovery_min_apply_delay's

Поиск
Список
Период
Сортировка
От Andres Freund
Тема pgsql: Don't delay replication for less than recovery_min_apply_delay's
Дата
Msg-id E1Ya4ws-0004Dg-Bb@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Don't delay replication for less than recovery_min_apply_delay's resolution.

Recovery delays are implemented by waiting on a latch, and latches take
milliseconds as a parameter. The required amount of waiting was computed
using microsecond resolution though and the wait loop's abort condition
was checking the delay in microseconds as well.  This could lead to
short spurts of busy looping when the overall wait time was below a
millisecond, but above 0 microseconds.

Instead just formulate the wait loop's abort condition in millisecond
granularity as well. Given that that's recovery_min_apply_delay
resolution, it seems harmless to not wait for less than a millisecond.

Backpatch to 9.4 where recovery_min_apply_delay was introduced.

Discussion: 20150323141819.GH26995@alap3.anarazel.de

Branch
------
REL9_4_STABLE

Details
-------
http://git.postgresql.org/pg/commitdiff/16be9737cc3d5f7da599a5c2fe2ff975db296f3b

Modified Files
--------------
src/backend/access/transam/xlog.c |    3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)


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

Предыдущее
От: Andres Freund
Дата:
Сообщение: pgsql: Don't delay replication for less than recovery_min_apply_delay's
Следующее
От: Heikki Linnakangas
Дата:
Сообщение: pgsql: Add pg_rewind, for re-synchronizing a master server after failba