pgsql: Make the streaming replication protocol messages architecture-in

Поиск
Список
Период
Сортировка
От Heikki Linnakangas
Тема pgsql: Make the streaming replication protocol messages architecture-in
Дата
Msg-id E1TW9KD-00069u-In@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Make the streaming replication protocol messages architecture-independent.

We used to send structs wrapped in CopyData messages, which works as long as
the client and server agree on things like endianess, timestamp format and
alignment. That's good enough for running a standby server, which has to run
on the same platform anyway, but it's useful for tools like pg_receivexlog
to work across platforms.

This breaks protocol compatibility of streaming replication, but we never
promised that to be compatible across versions, anyway.

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/add6c3179a4d4fa3e62dd3e86a00f23303336bac

Modified Files
--------------
doc/src/sgml/protocol.sgml            |  133 +++++++++++++++-------------
src/backend/replication/walreceiver.c |  145 ++++++++++++++++++-------------
src/backend/replication/walsender.c   |  146 +++++++++++++++++--------------
src/backend/utils/adt/timestamp.c     |   44 +++++++++
src/bin/pg_basebackup/receivelog.c    |  156 +++++++++++++++++++++------------
src/include/replication/walprotocol.h |  128 ---------------------------
src/include/utils/timestamp.h         |   13 +++-
7 files changed, 391 insertions(+), 374 deletions(-)


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

Предыдущее
От: Bruce Momjian
Дата:
Сообщение: pgsql: In pg_upgrade, set synchronous_commit=off for the new cluster, t
Следующее
От: Bruce Momjian
Дата:
Сообщение: pgsql: In pg_upgrade docs, mention using base backup as part of rsync f