F.32. multimaster
multimaster — это расширение Postgres Pro Enterprise, которое в сочетании с набором доработок ядра превращает Postgres Pro Enterprise в синхронный кластер без разделения ресурсов, который обеспечивает масштабируемость OLTP для читающих транзакций, а также высокую степень доступности с автоматическим восстановлением после сбоев.
По сравнению со стандартным кластером PostgreSQL конструкции ведущий-ведомый, в кластере, построенном с использованием multimaster, все узлы являются ведущими. Это даёт следующие преимущества:
Изоляция транзакций на уровне кластера
Синхронная логическая репликация и репликация DDL
Поддерживается работа с временными таблицами на каждом узле кластера
Устойчивость к сбоям и автоматическое восстановление узлов
Обновление серверов PostgreSQL «на ходу»
Важно
Поддержка расширения multimaster в Postgres Pro Enterprise 10 прекращена. Для обеспечения стабильной работы расширения multimaster рекомендуется перейти на последнюю версию Postgres Pro Enterprise.
Расширение multimaster реплицирует вашу базу данных на все узлы кластера и позволяет выполнять пишущие транзакции на любом узле. Для согласованности данных в случае одновременных изменений multimaster обеспечивает изоляцию транзакций в рамках всего кластера, реализуя MVCC (Multiversion Concurrency Control, Многоверсионное управление конкурентным доступом) на уровнях изоляции Read Committed и Repeatable Read. Каждая пишущая транзакция синхронно реплицируется на все узлы, что увеличивает задержку фиксации на время, требующееся для синхронизации. Читающие транзакции и запросы выполняются локально, без каких-либо ощутимых издержек.
Для обеспечения высокой степени доступности и отказоустойчивости кластера multimaster использует протокол трёхфазной фиксации и контроль состояния для обнаружения сбоев. Кластер с N ведущими узлами может продолжать работать, пока функционируют и доступны друг для друга большинство узлов. Чтобы в кластере можно было настроить multimaster, он должен включать в себя как минимум два узла. Чаще всего для обеспечения высокой степени доступности достаточно трёх узлов. Так как на всех узлах кластера будут одни и те же данные, обычно нет смысла делать более пяти узлов в кластере.
Когда узел снова подключается к кластеру, multimaster может автоматически привести его в актуальное состояние и наверстать упущенное, используя данные WAL из соответствующего слота репликации. Если данные WAL на момент времени, когда узел был исключён из кластера, оказываются недоступны, этот узел можно восстановить, воспользовавшись pg_basebackup.
Примечание
Применяя multimaster, необходимо учитывать ограничения, связанные с репликацией. За подробностями обратитесь к Подразделу F.32.1.
Чтобы узнать больше о внутреннем устройстве multimaster, обратитесь к Подразделу F.32.2.
F.32.1. Ограничения
Расширение multimaster осуществляет репликацию данных полностью автоматическим образом. Вы можете одновременно выполнять пишущие транзакции и работать с временными таблицами на любом узле кластера. Однако при этом нужно учитывать следующие ограничения репликации:
Операционная система Microsoft Windows не поддерживается.
multimasterможет реплицировать только одну базу данных в кластере, заданную в переменнойmultimaster.conn_strings. Если подключиться к другой базе данных, при попытке выполнения всех операций будет выдаваться соответствующее сообщение об ошибке.Вследствие ограничений логической репликации в реплицируемых таблицах должны быть первичные ключи или репликационные идентификаторы. Хотя таблицы без первичных ключей могут реплицироваться,
multimasterне разрешает операцииUPDATEиDELETEв таких таблицах. За подробностями обратитесь кmultimaster.ignore_tables_without_pk. Нежурналируемые таблицы не реплицируются, как и в стандартном PostgreSQL.Уровень изоляции. Расширение
multimasterподдерживает только уровни изоляцииread committedиrepeatable read. УровеньSerializableв настоящее время не поддерживается.Важно
На уровне
repeatable readболее вероятны сбои сериализации в момент фиксации. В отличие от стандартного PostgreSQL, в кластере multimaster на уровнеread committedтакже могут происходить сбои сериализации (с кодом SQLSTATE 40001).Когда выполняется пишущая транзакция,
multimasterблокирует задействуемые объекты только на том узле, где она выполняется. Но так как пишущие транзакции могут выполняться на всех узлах, другие транзакции могут попытаться в то же время изменить те же объекты, что и соседние узлы. В этом случае репликация первой транзакции будет невозможна, так как задействованные объекты уже будут заблокированы другой транзакцией. По той же причине и последующую транзакцию нельзя будет реплицировать на первый узел. В этом случае происходит распределённая взаимоблокировка. В результате одна из транзакций автоматически откатывается и её необходимо повторить. Приложение в такой ситуации должно быть готово повторять транзакции.Если у вас при типичной нагрузке происходит слишком много откатов транзакций, рекомендуется использовать уровень изоляции
read committed. Однако уровеньread committedвсё же не гарантирует отсутствие взаимоблокировок в кластере multimaster. Если использование уровняread committedне помогает, попробуйте направить все пишущие транзакции на один узел.В кластере с несколькими ведущими команда
ALTER SYSTEMвлияет только на конфигурацию текущего узла. Если вы хотите изменить параметры конфигурации во всём кластере, вам нужно выполнить эту команду на каждом узле.Генерация последовательностей. Во избежание конфликтов уникальных идентификаторов на разных узлах,
multimasterменяет стандартное поведение генераторов последовательностей. По умолчанию для каждого узла идентификаторы генерируются, начиная с номера узла, и увеличиваются на число узлов. Например, в кластере с тремя узлами идентификаторы 1, 4 и 7 выделяются для объектов, создаваемых на первом узле, а 2, 5 и 8 резервируются для второго узла. Если число узлов в кластере изменяется, величина прироста идентификаторов корректируется соответственно. Таким образом, значения последовательностей будут не монотонными. Если важно, чтобы последовательность во всём кластере увеличивалась монотонно, задайте для параметраmultimaster.monotonic_sequencesзначениеtrue.Репликация DDL. Тогда как
multimasterреплицирует данные на логическом уровне, DDL реплицируется на уровне операторов, что приводит к распределённой фиксации одного и того же оператора на разных узлах. В результате сложные сценарии с DDL, например хранимые процедуры и временные таблицы, могут работать не так, как в стандартном PostgreSQL.Задержка фиксации. В текущей реализации логической репликации
multimasterпередаёт данные узлам-подписчикам только после локальной фиксации, так что приходится ожидать двойной обработки транзакции: сначала на локальном узле, а затем на всех других узлах одновременно. Если транзакция производит запись в большом объёме, задержка может быть весьма ощутимой.
Если какие-либо данные должны присутствовать только на одном из узлов кластера, вы можете исключить таблицу с ними из репликации следующим образом:
SELECT mtm.make_table_local('table_name') F.32.2. Архитектура
F.32.2.1. Репликация
Так как каждый сервер в кластере multimaster может принимать запросы на запись, любой сервер может прервать транзакцию из-за параллельного изменения — так же как это происходит на одном сервере с несколькими обслуживающими процессами. Чтобы обеспечить высокую степень доступности и согласованность данных на всех узлах кластера, multimaster применяет логическую репликацию и протокол трёхфазной фиксации E3PC.
Когда Postgres Pro Enterprise загружает разделяемую библиотеку multimaster, код multimaster создаёт поставщика и потребителя логической репликации для каждого узла и внедряется в процедуру фиксирования транзакций. Типичная последовательность действий при репликации данных включает следующие фазы:
Фаза
PREPARE. Кодmultimasterперехватывает каждый операторCOMMITи преобразует его в операторPREPARE. Все узлы, получающие транзакцию через протокол репликации (узлы когорты), передают свой голос для одобрения или отклонения транзакции процессу-арбитру на исходном узле. Это гарантирует, что вся когорта может принять эту транзакцию и конфликт при записи отсутствует. Подробнее поддержка транзакций сPREPAREв PostgreSQL рассматривается в описании PREPARE TRANSACTION.Фаза
PRECOMMIT. Если все узлы когорты одобряют транзакцию, процесс-арбитр отправляет всем этим узлам сообщениеPRECOMMIT, выражающее намерение зафиксировать эту транзакцию. Узлы когорты отвечают арбитру сообщениемPRECOMMITTED. В случае сбоя все узлы могут использовать эту информацию для завершения транзакции по правилам кворума.Фаза
COMMIT. Если результатPRECOMMITположительный, арбитр фиксирует транзакцию на всех узлах.
Важно
Расширение multimaster в настоящее время поддерживает только уровни изоляции read committed и repeatable read, с которыми в рабочей нагрузке могут происходить сбои сериализации. За подробностями обратитесь к Подразделу F.32.1.
Если узел отказывает или отключается от кластера между фазами PREPARE и COMMIT, фаза PRECOMMIT даёт гарантию, что оставшиеся в строю узлы имеют достаточно информации для завершения подготовленной транзакции. Сообщения PRECOMMITTED помогают избежать ситуации, когда отказавший узел мог бы зафиксировать или прервать транзакцию, но не успел бы уведомить о состоянии транзакции другие узлы. При двухфазной фиксации (2PC, two-phase commit), такая транзакция заблокировала бы ресурсы (удерживала блокировки) до восстановления отказавшего узла. В противном случае была бы возможна несогласованность данных после восстановления отказавшего узла, например, если отказавший узел зафиксировал транзакцию, а оставшийся узел откатил её.
Для фиксирования транзакции арбитр должен получить ответ от большинства узлов. Например, в кластере из 2N + 1 узлов необходимо получить минимум N + 1 ответов. Таким образом multimaster обеспечивает доступность кластера для чтения и записи пока работает большинство узлов и гарантирует согласованность данных при отказе узла или прерывании соединения. Подробнее механизм обнаружения сбоев описан в Подразделе F.32.2.2.
F.32.2.2. Обнаружение сбоя и восстановление
Так как multimaster допускает запись на всех узлах, он должен ждать ответа с подтверждением транзакции от всех остальных узлов. Если не принять специальных мер, в случае отказа узла для фиксации транзакции пришлось бы ждать пока он не будет восстановлен. Чтобы не допустить этого, multimaster периодически опрашивает узлы и проверяет их состояние и соединение между ними. Когда узел не отвечает на несколько контрольных обращений подряд, этот узел убирается из кластера, чтобы оставшиеся в строю узлы могли производить запись. Частоту обращений и тайм-аут ожидания ответа можно задать в параметрах multimaster.heartbeat_send_timeout и multimaster.heartbeat_recv_timeout, соответственно.
Работающие узлы не имеют возможности отличить отказавший узел, переставший обрабатывать запросы, от узла в недоступной сети, к которому могут обращаться пользователи БД, но не другие узлы. Во избежание конфликтов записи на узлах в разделённых сегментах сети, multimaster разрешает выполнять запись только на тех узлах, которые видят большинство.
Например, предположим, что кластер с пятью ведущими узлами в результате сетевого сбоя разделился на две изолированных подсети так, что в одной оказалось два, а в другой — три узла кластера. На основе информации о доступности узлов multimaster продолжит принимать запросы на запись на всех узлах в большем разделе и запретит запись в меньшем. Таким образом, кластер, состоящий из 2N + 1 узлов может справиться с отказом N узлов и продолжать функционировать пока будут работать и связаны друг с другом N + 1 узлов.
Подсказка
Для кластеров с чётным числом узлов это поведение можно переопределить. За подробностями обратитесь к Подразделу F.32.3.3.
В случае частичного разделения сети, когда разные узлы связаны с другими по-разному, multimaster находит подмножество полностью связанных узлов и отключает другие узлы. Например, в кластере с тремя узлами, если узел A может связаться и с B, и с C, а узел B не может связаться с C, multimaster изолирует узел C для обеспечения согласованности данных на узлах A и B.
Если вы попытаетесь обратиться к отключённому узлу, multimaster возвратит сообщение об ошибке, говорящее о текущем состоянии узла. Для предотвращения чтения неактуальных данных на нём запрещаются и запросы только на чтение. Кроме того, подключения клиентов к отключённому узлу могут разрываться, если установить переменную multimaster.break_connection.
Каждый узел поддерживает свою структуру данных, в которой учитывает состояние всех узлов относительно него самого. Вы можете получить эту информацию в представлении mtm.get_nodes_state().
Когда ранее отказавший узел возвращается в кластер, multimaster начинает автоматическое восстановление:
Вновь подключённый узел выбирает случайный узел кластера и начинает навёрстывать текущее состояние кластера, используя WAL.
Когда узел синхронизируется до минимальной задержки восстановления, все узлы кластера блокируются на запись (не допускают пишущие транзакции), чтобы процесс восстановления закончился. По умолчанию минимальная задержка восстановления равняется 10 КБ. Это значение можно изменить в переменной
multimaster.min_recovery_lag.По завершении восстановления
multimasterповышает вновь подключённый узел, переводит его в рабочее состояние и включает в схему репликации.
Примечание
Автоматическое восстановление возможно, только если отставание в WAL отказавшего узла от работающих не превышает значения multimaster.max_recovery_lag. Если же отставание в WAL оказывается больше значения multimaster.max_recovery_lag, этот узел можно восстановить вручную с одного из работающих узлов, используя pg_basebackup.
См. также
F.32.3. Установка и подготовка
Чтобы использовать multimaster, необходимо установить Postgres Pro Enterprise на всех узлах кластера. В состав Postgres Pro Enterprise включены все необходимые зависимости и расширения.
F.32.3.1. Подготовка кластера
Установив Postgres Pro Enterprise на всех узлах, вы должны настроить кластер серверов средствами multimaster.
Предположим, что вам нужно организовать кластер из трёх узлов с доменными именами node1, node2 и node3. Прежде всего разверните базу данных, которая будет реплицироваться, и выберите пользователя СУБД с правами суперпользователя для репликации:
Если вы делаете всё с нуля, инициализируйте кластер баз данных, создайте пустую базу данных
mydbи пользователя СУБДmyuserс правами суперпользователя на каждом узле кластера. Подробнее об этом можно прочитать в Разделе 18.2.Если у вас уже есть база данных
mydbна сервереnode1, создайте нового пользователя СУБДmyuserс правами суперпользователя и проинициализируйте новые узлы на основе существующего, запустив pg_basebackup от имени этого пользователя. Выполните на каждом узле, который вы будете добавлять, следующую команду:pg_basebackup -D
каталог_данных-h node1 -U myuser -c fastЗдесь
каталог_данных— это каталог, содержащий данные кластера БД. Этот каталог указывается на этапе инициализации кластера или задаётся в переменной окруженияPGDATA. Для выполнения этой задачи вместоmyuserвы можете воспользоваться любым другим пользователем СУБД с административными правами.Более подробно использование pg_basebackup описано в pg_basebackup.
Когда база данных будет готова, выполните следующие действия на всех узлах кластера:
Разрешите репликацию базы
mydbна каждый узел кластера для пользователяmyuser, как описывается в Разделе 20.1. При этом важно использовать метод аутентификации, удовлетворяющий вашим требованиям безопасности.Измените файл конфигурации
postgresql.confследующим образом:Добавьте
multimasterв переменнуюshared_preload_libraries:shared_preload_libraries = 'multimaster'
Подсказка
Если переменная
shared_preload_librariesуже определена вpostgresql.auto.conf, вам потребуется изменить её значение с помощью команды ALTER SYSTEM. За подробностями обратитесь к Подразделу 19.1.2. Заметьте, что в кластере с несколькими ведущими командаALTER SYSTEMвлияет только на конфигурацию того узла, на котором запускается.Задайте уровень изоляции транзакций для вашего кластера. В настоящее время
multimasterподдерживает уровни read committed и repeatable read.default_transaction_isolation = 'read committed'
Важно
На уровне
repeatable readболее вероятны сбои сериализации в момент фиксации. Если ваше приложение не обрабатывает такие сбои, рекомендуется использовать уровеньread committed.Установите параметры PostgreSQL, связанные с репликацией.
wal_level = logical max_connections = 100 max_prepared_transactions = 300 max_wal_senders = 10 # не меньше количества узлов max_replication_slots = 10 # не меньше количества узлов
Вы должны сменить уровень репликации на
logical, так как работаmultimasterпостроена на логической репликации. Для кластера сNузлами разрешите минимумNпередающих WAL процессов и слотов репликации. Так какmultimasterнеявно добавляет фазуPREPAREкCOMMITкаждой транзакции, в качестве максимального количества подготовленных транзакций задайтеN*max_connections. В противном случае подготовленные транзакции могут ждать выполнения в очереди.Убедитесь в том, что на каждом узле выделено достаточно фоновых рабочих процессов:
max_worker_processes = 250
Например, для кластера с тремя узлами и ограничением
max_connections= 100 механизмуmultimasterв пиковые моменты может потребоваться до 206 фоновых рабочих процессов: 200 рабочих процессов для обработки соединений соседних узлов, два — для передатчиков WAL, два — для приёмников WAL и ещё два для процессов-арбитров (передающего и принимающего). При выборе значения этого параметра не забывайте, что фоновые рабочие процессы могут быть нужны и другим модулям.Добавьте параметры, относящиеся к
multimaster:multimaster.max_nodes = 3 # размер кластера multimaster.node_id = 1 # индекс этого узла в кластере, # начиная с 1 multimaster.conn_strings = 'dbname=mydb user=myuser host=node1 port=5432 arbiter_port=5433,dbname=mydb user=myuser host=node2 port=5432 arbiter_port=5433,dbname=mydb user=myuser host=node3 port=5432 arbiter_port=5433' # разделённый запятыми список строк # подключения к соседним узлам multimaster.arbiter_port = 5433Переменная
multimaster.max_nodesопределяет максимальный размер кластера. Если вы планируете добавлять в кластер новые узлы, значениеmultimaster.max_nodesдолжно быть больше начального числа узлов. В этом случае вы сможете добавлять новые узлы, не перезапуская Postgres Pro Enterprise, пока не будет достигнут этот максимум.В большинстве случаев для обеспечения высокой степени доступности достаточно трёх узлов. Так как на всех узлах кластера будут одни и те же данные, обычно нет смысла делать более пяти узлов в кластере.
Важно
В переменной
multimaster.node_idзадаются натуральные числа, начиная с 1, без пропусков в нумерации. Например, для кластера с пятью узлами задайте идентификаторы узлов 1, 2, 3, 4 и 5. При этом важно указывать в переменнойmultimaster.conn_stringsсписок узлов по порядку их идентификаторов. Значение переменнойmultimaster.conn_stringsдолжно быть одинаковым на всех узлах.Вы можете настроить свойства подключений, добавив другие параметры подключений libpq в строки подключения в переменной
multimaster.conn_strings. По умолчаниюmultimasterиспользует порт 5432 для установления соединений между узлами и порт 5433 для подключения к процессу арбитра. Если эти порты уже заняты, необходимо выбрать и указать другие порты, добавив параметрыportиarbiter_portв каждую строку подключения в переменнойmultimaster.conn_strings.Если вы измените параметр
arbiter_port, вы должны также задать этот порт в переменнойmultimaster.arbiter_port. За подробностями обратитесь кmultimaster.arbiter_portиmultimaster.conn_strings.Чтобы проверить, свободны ли стандартные порты, вы можете выполнить следующую команду:
netstat -ln | grep -E '5432|5433'
Убедитесь в том, что эти порты не блокируются сетевым фильтром.
В зависимости от вашей схемы использования и конфигурации сети может потребоваться настроить и другие параметры
multimaster. За подробностями обратитесь к Подразделу F.32.3.2.От имени суперпользователя ОС перезапустите Postgres Pro Enterprise:
pg_ctl -D
каталог_данных-lpg.logrestart
Когда Postgres Pro Enterprise будет запущен на всех узлах, подключитесь к любому узлу под именем пользователя ОС postgres и создайте расширение multimaster в базе данных mydb, которая будет реплицироваться:
psql -h node1 -d mydb CREATE EXTENSION multimaster;
Запрос CREATE EXTENSION реплицируется на все узлы кластера.
Чтобы убедиться, что расширение multimaster активно, прочитайте представление mtm.get_cluster_state():
SELECT mtm.get_cluster_state();
Если значение liveNodes равняется allNodes, значит ваш кластер успешно настроен и готов к использованию.
См. также
Настройка параметров конфигурации
F.32.3.1.1. Пример настройки кластера
В этом разделе показан пример настройки кластера с тремя узлами, которым назначены имена node1, node2 и node3. Репликация настраивается для базы данных с именем mydb. Пользователем СУБД с правами суперпользователя, который будет выполнять репликацию, выбран myuser. Все последующие команды должны выполняться пользователем ОС с правами администратора.
Сначала на всех узлах кластера от имени пользователя ОС
postgresвыполните следующие действия:# Настройка окружения каждого узла и создание пользователя myuser, # а также принадлежащей ему базы данных mydb. export PATH=/opt/pgpro/ent-10/bin:$PATH export PGDATA=/var/lib/pgpro/ent-10/data for i in `seq 1 3`; do echo "host replication myuser node$i md5" >> $PGDATA/pg_hba.conf echo "host mydb myuser node$i md5" >> $PGDATA/pg_hba.conf echo "node$i:5432:mydb:myuser:myuserpassword" >> ~/.pgpass done chmod 0600 ~/.pgpass cat << EOF | psql --dbname=postgres --username=postgres --port=5432 ALTER SYSTEM SET default_transaction_isolation = 'read committed'; ALTER SYSTEM SET wal_level = logical; ALTER SYSTEM SET max_connections = 100; ALTER SYSTEM SET max_prepared_transactions = 300; ALTER SYSTEM SET max_wal_senders = 10; ALTER SYSTEM SET max_replication_slots = 10; ALTER SYSTEM SET max_worker_processes = 250; ALTER SYSTEM SET shared_preload_libraries = 'multimaster'; CREATE USER myuser WITH SUPERUSER PASSWORD 'myuserpassword'; CREATE DATABASE mydb OWNER myuser; EOF # Определение числа узлов в кластере, назначение идентификаторов # и строк подключения для узлов. В этом примере предполагается, # что узлы называются node1, node2 и node3, а их идентификаторами # будут соответствующие числа, начиная с 1. cat << EOF >> $PGDATA/postgresql.conf multimaster.max_nodes = 3 multimaster.node_id = `hostname | awk '{ print substr($1,5,1) }'` multimaster.arbiter_port = 5433 multimaster.conn_strings = 'dbname=mydb user=myuser host=node1 port=5432 arbiter_port=5433,dbname=mydb user=myuser host=node2 port=5432 arbiter_port=5433,dbname=mydb user=myuser host=node3 port=5432 arbiter_port=5433' EOFОт имени пользователя ОС с правами суперпользователя перезапустите службу Postgres Pro Enterprise на всех узлах кластера:
sudo service postgrespro-ent-10 restart
Теперь создайте расширение
multimasterна одном из узлов кластера, от имени пользователя ОСpostgres. На все другие узлы оно будет реплицировано автоматически. Следующий пример иллюстрирует создание расширения на узле node1.psql --dbname=mydb --username=myuser --host=node1 --port=5432 -c "CREATE EXTENSION IF NOT EXISTS multimaster"
Кластер настроен и готов к использованию.
F.32.3.2. Настройка параметров конфигурации
Хотя вы можете использовать multimaster и в стандартной конфигурации, для более быстрого обнаружения сбоев и более надёжного автоматического восстановления может быть полезно скорректировать несколько параметров.
F.32.3.2.1. Установка тайм-аута для обнаружения сбоев
Для проверки доступности соседних узлов multimaster периодически опрашивает все узлы. Тайм-аут для обнаружения сбоев можно регулировать с помощью следующих переменных:
Переменная
multimaster.heartbeat_send_timeoutопределяет интервал между опросами. По умолчанию её значение равно 200ms.Переменная
multimaster.heartbeat_recv_timeoutопределяет интервал для ответа. Если за указанное время ответ от какого-то узла не будет получен, он считается отключённым и исключается из кластера. По умолчанию её значение равно 1000ms.
Значение multimaster.heartbeat_send_timeout имеет смысл выбирать, исходя из типичных задержек ping между узлами. С уменьшением отношения значений recv/send сокращается время обнаружения сбоев, но увеличивается вероятность ложных срабатываний. При установке этого параметра учтите также типичный процент потерь пакетов между узлами кластера.
F.32.3.2.2. Настройка параметров автоматического восстановления
Когда узел кластера на время выходит из строя, multimaster может автоматически восстановить его состояние, используя WAL, собранный на других узлах кластера. Для управления параметрами восстановления предназначены следующие переменные:
multimaster.min_recovery_lag— задаёт минимальное расхождение WAL между восстанавливаемым узлом и текущим состоянием кластера. По умолчанию этот параметр равен 10 КБ. Когда ранее отключённый узел достигает состояния, отстающего от текущего наmultimaster.min_recovery_lag,multimasterпрекращает фиксировать любые транзакции на активных узлах, пока данный узел окончательно не достигнет текущего состояния кластера. Когда данные будут полностью синхронизированы, ранее отключённый узел повышается и становится активным, после чего кластер в целом продолжает работу.multimaster.max_recovery_lag— задаёт максимальный размер WAL. По достижении пределаmultimaster.max_recovery_lagWAL для отключённого узла будет перезаписан. После этого автоматическое восстановление будет невозможно. В этом случае вы можете восстановить узел вручную, скопировав данные с одного из действующих узлов с помощью pg_basebackup.
По умолчанию значение multimaster.max_recovery_lag равняется 1 ГБ. При увеличении multimaster.max_recovery_lag увеличивается окно, в течение которого возможно автоматическое восстановление, но требуется больше места на диске для хранения WAL.
См. также
F.32.3.3. Определение кворума в кластерах с чётным числом узлов
По умолчанию multimaster определяет состояние кворума в подмножестве узлов, учитывая состояние большинства: кластер может продолжать работать, только если функционирует большинство узлов и эти узлы могут связаться друг с другом. Для кластеров с чётным количеством узлом этот подход не является оптимальным. Например, если в результате сбоя сети кластер разделяется пополам или отказывает один из двух узлов в кластере, все узлы прекращают принимать запросы, несмотря на то, что половина узлов кластера работает нормально.
Для реализации отказоустойчивости в таких случаях вы можете поменять поведение multimaster, основанное на состоянии большинства, одним из следующих способов:
Установить отдельный узел-рефери для признания кворума в подмножестве узлов, состоящем ровно из половины узлов кластера.
Выбрать главный узел, который будет продолжать работу независимо от состояния других узлов. Используйте эту возможность только в кластере с двумя узлами.
Важно
Во избежание «раздвоения» не используйте в одном кластере и главный узел, и рефери.
F.32.3.3.1. Установка отдельного узла-рефери
Рефери — это узел, голос которого позволяет определить, какое подмножество узлов составляет кворум, когда кластер разделяется пополам. Узел-рефери не хранит никакие данные кластера, поэтому он не создаёт значительную нагрузку и может быть размещён практически в любой системе, где установлен Postgres Pro Enterprise.
Чтобы настроить рефери в своём кластере:
Установите Postgres Pro Enterprise на узле, который вы планируете сделать рефери, и создайте расширение
referee:CREATE EXTENSION referee;
Разрешите в файле
pg_hba.confдоступ к узлу-рефери.На всех узлах кластера укажите строку подключения к рефери в файле
postgresql.conf:multimaster.referee_connstring =
строка_подключенияЗдесь
строка_подключениядолжна содержать все параметры libpq, необходимые для обращения к рефери.
Первое подмножество узлов, которому удаётся подключиться к рефери, получает выигрышный голос и продолжает работать. Рефери сохраняет результат голосования до возвращения в строй всех остальных узлов кластера. Затем результат аннулируется и в случае следующего сбоя в сети будет выбираться новый кворум.
Во избежание «раздвоения» в кластере допускается использование только одного рефери. Не используйте рефери, если вы уже выбрали главный узел.
F.32.3.3.2. Настройка главного узла
Если вы назначите один из узлов главным, этот узел продолжит принимать запросы, даже если окажется изолированным в результате сбоя сети или выхода из строя других узлов. Эта возможность полезна в кластере с двумя узлами и для быстрого восстановления одного узла в разрушенном кластере.
Чтобы сделать один из узлов главным, установите параметр multimaster.major_node на этом узле:
ALTER SYSTEM SET multimaster.major_node TO on; SELECT pg_reload_conf();
Не устанавливайте параметр major_node на более чем одном узле кластера. Если включить его на нескольких узлах, это может повлечь проблемы «раздвоения» кластера. Если в вашем кластере настроен рефери, использование параметра major_node запрещается.
Важно
Если в вашем кластере больше двух узлов, определять главный узел не следует, так как это может привести к проблеме раздвоения кластера при сбое сети и уменьшит число возможных вариантов отработки отказа. Если главный узел окажется изолированным при сбое сети, тогда как большинство узлов останутся связанными, работать продолжит и главный узел, и подмножество узлов, образующее кворум. Вместо главного узла в таких кластерах следует использовать отдельный узел-рефери.
F.32.4. Администрирование кластера multimaster
F.32.4.1. Наблюдение за состоянием кластера
В составе расширения multimaster есть несколько представлений, позволяющих наблюдать за текущим состоянием кластера.
Для проверки свойств определённого узла воспользуйтесь представлением mtm.get_nodes_state():
SELECT mtm.get_nodes_state();
Для проверки состояния кластера в целом воспользуйтесь представлением mtm.get_cluster_state():
SELECT mtm.get_cluster_state();
Выдаваемая ими информация подробно описана в Подразделе F.32.5.2.
F.32.4.2. Добавление узлов в кластер
Используя расширение multimaster, вы можете добавлять или удалять узлы кластера, не останавливая службу баз данных.
Чтобы добавить узел, необходимо изменить конфигурацию кластера на работающих узлах, загрузить все данные на новом узле, используя pg_basebackup, и запустить этот узел.
Предположим, что у нас есть работающий кластер с тремя узлами с доменными именами node1, node2 и node3. Чтобы добавить node4, следуйте этим указаниям:
Проверьте, не достигает ли текущее число узлов кластера значения, заданного в переменной
multimaster.max_nodes. Если это значение достигается, увеличьтеmultimaster.max_nodesна каждом узле и перезапустите все узлы. Вы можете перезапустить узлы по одному, не останавливая работу всей базы данных. Если предельное число узлов не достигнуто, перейдите к следующему шагу.Определите, какая строка подключения будет использоваться для обращения к новому узлу. Например, для базы данных
mydb, пользователяmyuserи нового узлаnode4строка подключения может быть такой:"dbname=mydb user=myuser host=node4". За подробностями обратитесь кmultimaster.conn_strings.В
psql, подключённом к любому из работающих узлов, выполните:SELECT mtm.add_node('dbname=mydb user=myuser host=node4');Эта команда меняет конфигурацию кластера на всех узлах и запускает слоты репликации для нового узла.
Подключитесь к новому узлу и скопируйте все данные с одного из работающих узлов на новый узел:
pg_basebackup -D
каталог_данных-h node1 -U myuser -c fastpg_basebackup копирует весь каталог данных с
node1, вместе с параметрами конфигурации.Измените параметры в
postgresql.confнаnode4:multimaster.node_id = 4 multimaster.conn_strings = 'dbname=mydb user=myuser host=node1, dbname=mydb user=myuser host=node2, dbname=mydb user=myuser host=node3, dbname=mydb user=myuser host=node4'Запустите Postgres Pro на новом узле:
pg_ctl -D
каталог_данных-lpg.logstartКогда узел синхронизируется до достижения минимальной задержки восстановления, все узлы кластера блокируются от записи (не выполняют пишущие транзакции), пока новый узел не получит все изменения. По завершении восстановления данных
multimasterповышает новый узел, переводит его в активное состояние и включает в схему репликации.
Чтобы новая конфигурация была загружена в случае перезапуска PostgreSQL, обновите параметры конфигурации на всех узлах кластера:
Измените параметр
multimaster.conn_stringsс учётом добавления нового узла.Разрешите в файле
pg_hba.confрепликацию на новый узел.
См. также
F.32.4.3. Удаление узлов из кластера
Расширение multimaster предоставляет функцию mtm.stop_node(), которая может временно или навсегда удалить узлы из кластера.
Чтобы временно исключить узел из кластера, вызовите функцию mtm.stop_node(), передав ей идентификатор узла. Например, чтобы исключить узел 3, выполните следующую команду на любом другом узле кластера:
SELECT mtm.stop_node(3);
Эта команда исключает узел 3 из кластера и прекращает репликацию на этот узел.
Пока задержка WAL между этим узлом и текущим состоянием кластера меньше значения multimaster.max_recovery_lag, вы можете восстановить данный узел, выполнив следующую команду:
SELECT mtm.recover_node(3);
В противном случае следуйте процедуре, описанной в Подразделе F.32.4.4.
Примечание
Если вы просто отключите узел, он тоже будет исключён из кластера. Однако все транзакции в кластере будут заморожены на некоторое время, пока другие узлы не определят, что он отключён. Этот интервал времени определяется параметром multimaster.heartbeat_recv_timeout.
Чтобы навсегда удалить узел из кластера:
Вызовите функцию
mtm.stop_node()с параметромdrop_slot, равнымtrue:SELECT mtm.stop_node(3, true);
В результате будут отключены слоты репликации для узла 3 на всех узлах кластера и репликация на этот узел будет прекращена.
Измените параметры
multimaster.node_idиmultimaster.conn_stringsвpostgresql.confна оставшихся узлах кластера, чтобы они отражали новое состояние кластера.Отредактируйте файл
pg_hba.confна оставшихся узлах кластера, чтобы отключить репликацию на удалённый узел, если требуется.
Если вы позже захотите возвратить узел в кластер, вам придётся добавить его как новый узел. За подробностями обратитесь к Подразделу F.32.4.2.
F.32.4.4. Восстановление узла кластера вручную
Расширение multimaster может автоматически восстановить отказавший узел при наличии WAL на момент времени, когда узел отключился от кластера. Однако если объём изменений данных на активных узлах превышает допустимый размер WAL, заданный переменной multimaster.max_recovery_lag, автоматическое восстановление невозможно. В этом случае вы можете восстановить отказавший узел вручную.
Предположим, что узел node2 покинул кластер, в котором было три узла, и его нужно восстановить вручную. Типичная процедура восстановления выглядит так:
В
psql, подключённом к любому из работающих узлов, создайте слот репликации для отключённого узла, выполнив следующую команду:SELECT mtm.recover_node(2);
здесь 2 — идентификатор отключённого узла, заданный в переменной
multimaster.node_id.Подключитесь к узлу
node2и скопируйте все данные с одного из работающих узлов:pg_basebackup -D
каталог_данных-h node1 -U myuser -c fastpg_basebackup копирует весь каталог данных с
node1, вместе с параметрами конфигурации.На восстановленном узле задайте в
multimaster.node_idто же значение, что было на этом узле до сбоя.Убедитесь в том, что между восстановленным узлом и остальными узлами кластера настроена репликация.
Запустите Postgres Pro на восстановленном узле:
pg_ctl -D
каталог_данных-lpg.logstartКогда узел синхронизируется до достижения минимальной задержки восстановления, все узлы кластера блокируются от записи (не выполняют пишущие транзакции), пока восстановленный узел не получит все изменения. По завершении восстановления данных
multimasterповышает новый узел, переводит его в активное состояние и включает в схему репликации.
См. также
F.32.5. Справка
F.32.5.1. Переменные GUC
multimaster.node_idИдентификатор узла — натуральное число, однозначно идентифицирующее узел в кластере. Нумерация узлов должна начинаться с 1 и не допускать пропусков. Например, в кластере с пятью узлами они должны иметь идентификаторы 1, 2, 3, 4 и 5.
multimaster.conn_stringsСтроки подключения для всех узлов в кластере multimaster, разделённые запятыми. Значение
multimaster.conn_stringsдолжно быть одинаковым на всех узлах. Каждая строка подключения должна включать имя реплицируемой базы данных и доменное имя узла кластера. Например: 'dbname=mydb host=node1,dbname=mydb host=node2,dbname=mydb host=node3'. Дополнительно вы можете добавить другие параметры подключения, переопределяющие параметры по умолчанию. Строки подключения должны указываться в порядке идентификаторов узлов, задаваемых в переменнойmultimaster.node_id. Строка подключения к i-му узлу должна находиться в i-той позиции. Если вы установили нестандартный порт в переменнойmultimaster.arbiter_portна каком-либо узле, вы должны задать его в параметреarbiter_portв строке подключения к этому узлу.multimaster.max_nodesМаксимально допустимое число узлов в кластере. Если вы планируете добавлять в кластер новые узлы, значение
multimaster.max_nodesдолжно быть больше начального числа узлов. В этом случае вы сможете добавлять новые узлы, не перезапуская Postgres Pro Enterprise, пока не будет достигнут этот максимум. В большинстве случаев для обеспечения высокой степени доступности в кластере достаточно трёх узлов. Так как на всех узлах кластера будут одни и те же данные, обычно нет смысла делать более пяти узлов в кластере. Максимально допустимое число узлов не может превышать 64.По умолчанию число узлов, заданное в переменной
multimaster.conn_stringsmultimaster.arbiter_portПорт, через который процесс-арбитр принимает подключения. Если вы меняете значение по умолчанию, вы должны задать его в параметре
arbiter_portв строке подключения для соответствующего узла.По умолчанию: 5433
multimaster.heartbeat_send_timeoutИнтервал между контрольными обращениями, в миллисекундах. Процесс-арбитр рассылает широковещательные контрольные сообщения всем узлам для выявления проблем с соединениями.
По умолчанию: 200
multimaster.heartbeat_recv_timeoutТайм-аут, в миллисекундах. Если за это время не поступит ответ на контрольные сообщения, узел будет исключён из кластера.
По умолчанию: 1000
multimaster.min_recovery_lagМинимальное отставание в WAL восстанавливаемого узла от текущего состояния кластера, в килобайтах. Когда достигается такое отставание в процессе восстановления узла, в кластере блокируется запись до завершения восстановления.
По умолчанию: 10 КБ
multimaster.max_recovery_lagМаксимальный размер отставания в WAL, в килобайтах. Когда узел отключается от кластера, другие узлы копируют данные WAL для всех новых транзакций в слот репликации для этого узла. По достижении значения
multimaster.max_recovery_lagслот репликации для отключившегося узла удаляется с целью не допустить переполнения. После этого автоматическое восстановление узла становится невозможным. В этом случае вы можете восстановить узел вручную, скопировав данные с одного из работающих узлов, используя pg_basebackup или подобное средство. Если записать в эту переменную ноль, слот не будет удаляться.По умолчанию: 1 ГБ
multimaster.ignore_tables_without_pkЛогическая переменная. Эта переменная разрешает/запрещает репликацию операций
INSERTдля таблиц, не имеющих первичных ключей. По умолчанию такая репликация разрешена. При включении этого параметра операцииINSERTдля таких таблиц не реплицируются. Вне зависимости от этого значения, операции DDL для таблиц без первичных ключей реплицируются всегда, а операцииUPDATEиDELETEне реплицируются из-за ограничений логической репликации.По умолчанию:
falsemultimaster.cluster_nameИмя кластера. Если вы определяете эту переменную, настраивая кластер,
multimasterтребует, чтобы это имя было одинаковым на всех узлах кластера.multimaster.break_connectionРазрывать соединения клиентов, подключённых к узлу, при отключении данного узла от кластера. Если этот параметр равен
false, клиенты остаются подключёнными к узлу, но получают ошибку с сообщением о том, что узел оказался в меньшинстве.По умолчанию:
falsemultimaster.major_nodeУзел с этим флагом продолжает работать даже в отсутствие кворума. Это может потребоваться для нарушения симметрии в кластере с двумя узлами или для быстрого восстановления одного узла в разрушенном кластере.
Важно
Этот параметр следует использовать с осторожностью во избежание проблем «раздвоения» кластера:
Не используйте параметр
major_nodeв кластерах с более чем двумя узлами. Если главный узел окажется изолированным при сбое сети, тогда как большинство узлов останутся связанными, работать продолжит и главный узел, и подмножество узлов, образующее кворум. Вместо главного узла в таких кластерах следует использовать отдельный рефери.Ни при каких условиях не назначайте главным более одного узла в кластере.
multimaster.referee_connstringСтрока подключения для обращения к узлу-рефери. Если вы используете рефери, этот параметр нужно задать на всех узлах кластера.
multimaster.max_workersМаксимальное число рабочих процессов
walreceiverна этом сервере.Важно
Манипулируя этим параметром, проявляйте осторожность. Если число одновременных транзакций во всём кластере превышает заданное значение, это может приводить к необнаруживаемым взаимоблокировкам.
По умолчанию: 100
multimaster.trans_spill_thresholdМаксимальный размер транзакции, в килобайтах. При достижении этого предела транзакция записывается на диск.
По умолчанию: 100 МБ
multimaster.monotonic_sequencesОпределяет режим генерирования последовательностей для уникальных идентификаторов. Эта переменная может принимать следующие значения:
false(по умолчанию) — идентификаторы на каждом узле генерируются, начиная с номера узла, и увеличиваются на число узлов. Например, в кластере с тремя узлами идентификаторы 1, 4 и 7 выделяются для объектов, создаваемых на первом узле, а 2, 5 и 8 резервируются для второго узла. Если число узлов в кластере изменяется, величина прироста идентификаторов корректируется соответственно.true— генерируемая последовательность увеличивается монотонно во всём кластере. Идентификаторы узлов на каждом узле генерируются, начиная с номера узла, и увеличиваются на число узлов, но если очередное значение меньше идентификатора, уже сгенерированного на другом узле, оно пропускается. Например, в кластере с тремя узлами, если идентификаторы 1, 4 и 7 уже выделены на первом узле, идентификаторы 2 и 5 будут пропущены на втором. В этом случае первым идентификатором на втором узле будет 8. Таким образом следующий сгенерированный идентификатор всегда больше предыдущего, вне зависимости от узла кластера.
По умолчанию:
falsemultimaster.remote_functionsСодержит разделённый запятыми список имён функций, которые должны выполняться удалённо на всех узлах кластера вместо выполнения на одном и последующий репликации результатов.
multimaster.use_rdmaВключает соединения между узлами с использованием технологии RDMA (Remote Direct Memory Access, Удалённый прямой доступ к памяти). Это требует настройки механизма RDMA на всех узлах кластера. За подробностями обратитесь к Разделу 18.11.
F.32.5.2. Функции
-
mtm.get_nodes_state() Показывает состояние всех узлов в кластере. Возвращает кортеж со следующими значениями:
id,integerИдентификатор узла.
enabled,booleanПоказывает, не был ли узел исключён из кластера. Узел может быть отключён, если он не откликается на контрольные обращения в течение интервала
heartbeat_recv_timeout. Когда узел начинает отвечать на контрольные обращения,multimasterможет автоматически восстановить узел и вернуть его в активное состояние. Автоматическое восстановление узла возможно только если сохраняется его слот репликации. В противном случае вы можете восстановить узел вручную.connected,booleanПоказывает, подключён ли узел к процессу, передающему WAL.
slot_active,booleanПоказывает, активен ли слот репликации для данного узла. Для отключённого узла слот остаётся активным до достижения значения
max_recovery_lag.stopped,booleanПоказывает, была ли остановлена репликация с этим узлом функцией
mtm.stop_node(). Остановленный узел находится в том же состоянии, что и отключённый, но он не восстанавливается автоматически. Чтобы повторно активизировать такой узел, нужно вызватьmtm.recover_node().catchUp,booleanВ процессе восстановления узла показывает, были ли данные восстановлены до значения
min_recovery_lag.slotLag,bigintРазмер данных WAL, которые этот слот репликации сохраняет для отключённого/остановленного узла. Этот слот будет удалён, когда
slotLagдостигнет значенияmax_recovery_lag.avgTransDelay,bigintСредняя задержка фиксации, вызванная этим узлом, в микросекундах.
lastStatusChange,timestampВремя, когда этот узел последний раз менял своё состояние (включён/отключён).
oldestSnapshot,bigintСтарейший глобальный снимок, существующий на этом узле.
SenderPid,integerИдентификатор процесса, передающего WAL.
SenderStartTime,timestampВремя запуска передатчика WAL.
ReceiverPid,integerИдентификатор процесса, принимающего WAL.
ReceiverStartTime,timestampВремя запуска приёмника WAL.
connStr,textСтрока подключения к этому узлу.
connectivityMask,bigintБитовая маска, представляющая соединения с соседними узлами. Каждый бит представляет соединение с узлом.
nHeartbeats,integerЧисло откликов, полученных от этого узла.
-
mtm.collect_cluster_info() Собирает данные, возвращаемые функцией
mtm.get_cluster_state(), со всех доступных узлов. Чтобы эта функция работала, помимо соединений для репликации вpg_hba.confдолжны быть разрешены обычные соединения с узлом с заданной строкой подключения.-
mtm.get_cluster_state() Показывает состояние расширения
multimaster. Возвращает кортеж со следующими значениями:id,integerИдентификатор узла.
status,textСостояние узла. Возможные значения:
Initialization(инициализация),Offline(недоступен),Connected(подключён),Online(работает),Recovery(восстановление),Recovered(восстановлен),InMinor(в меньшинстве),OutOfService(не работает).disabledNodeMask,bigintБитовая маска отключённых узлов.
disconnectedNodeMask,bigintБитовая маска недоступных узлов.
catchUpNodeMask,bigintБитовая маска узлов, завершивших восстановление.
liveNodes,integerЧисло включённых узлов.
allNodes,integerЧисло узлов в кластере. Количество активных узлов, составляющих большинство, вычисляется, исходя из этого значения.
nActiveQueries,integerЧисло запросов, в настоящее время выполняющихся на этом узле.
nPendingQueries,integerЧисло запросов, ожидающих выполнения на этом узле.
queueSize,bigintРазмер очереди ожидающих запросов, в байтах.
transCount,bigintОбщее число реплицированных транзакций, обработанных этим узлом.
timeShift,bigintГлобальный сдвиг снимка, вызванный рассинхронизацией часов на узлах, в микросекундах.
recoverySlot,integerУзел, с которого отказавший узел получает обновления данных во время автоматического восстановления.
xidHashSize,bigintРазмер хеша xid2state.
gidHashSize,bigintРазмер хеша gid2state.
oldestXid,bigintИдентификатор старейшей транзакции на этом узле.
configChanges,integerЧисло изменений состояния (включено/отключено) с момента последнего перезапуска.
stalledNodeMask,bigintБитовая маска узлов, для которых были удалены слоты репликации.
stoppedNodeMask,bigintБитовая маска узлов, остановленных функцией
mtm.stop_node().lastStatusChange,timestampВремя последнего изменения состояния.
-
mtm.add_node(connstrtext) Добавляет новый узел в кластер.
Аргументы:
connstr— строка подключения для нового узла. Например, для базы данныхmydb, пользователяmyuserи нового узлаnode4строка подключения будет такой:"dbname=mydb user=myuser host=node4".Тип:
text
-
mtm.alter_sequences() Исправляет уникальные идентификаторы на всех узлах кластера. Это может потребоваться после восстановления всех узлов из одной базовой копии.
-
mtm.stop_node(nodeinteger,drop_slotbooldefault false) Исключает узел из кластера.
Аргументы:
node— идентификатор узла, который будет удалён (этот идентификатор задавался в переменнойmultimaster.node_id).Тип:
integerdrop_slot— Необязательный параметр. Определяет, должен ли вместе с узлом удаляться слот репликации. Передайте в этом параметреtrue, если вы не планируете восстанавливать этот узел в будущем.Тип:
booleanПо умолчанию:
false
-
mtm.recover_node(nodeinteger) Создаёт слот репликации для узла, который ранее был удалён вместе со своим слотом.
Аргументы:
node— идентификатор узла, который нужно восстановить.
-
mtm.make_table_local('имя_таблицы'regclass) Останавливает репликацию для указанной таблицы.
Аргументы:
table_name— имя таблицы, которую вы хотите исключить из схемы репликации.Тип:
regclass
-
mtm.copy_table(table_nameregclass,node_idinteger) Копирует существующую таблицу на другой узел. Вы можете использовать эту функцию для восстановления повреждённых данных на одном или нескольких узлах кластера. Эту функцию нужно вызывать на узле, с которого копируется таблица.
Аргументы:
table_name— имя таблицы, которую вы хотите копировать.Тип:
regclassnode_id— идентификатор узла, на который будет копироваться таблица.Тип:
integer
-
mtm.broadcast_table(table_nameregclass) Копирует существующую таблицу на все работающие узлы кластера. Вы можете использовать эту функцию для восстановления повреждённых данных. Эту функцию нужно вызывать на узле, с которого копируется таблица.
Аргументы:
table_name— имя таблицы, которую вы хотите копировать.Тип:
regclass
F.32.6. Совместимость
Расширение multimaster в настоящее время проходит почти все регрессионные тесты PostgreSQL, за исключением нескольких тестов особых случаев, связанных с работой временных таблиц и обновления типа enum, что не всегда выполняется в PostgreSQL под контролем транзакций. Прямо сейчас мы продолжаем работу с тем, чтобы обеспечить полную совместимость со стандартным PostgreSQL.
F.32.7. Авторы
Postgres Professional, Москва, Россия.
F.32.7.1. Благодарности
Механизм репликации основан на логическом декодировании и предыдущей версии расширения pglogical, которым поделилась с сообществом команда 2ndQuadrant.
Протокол трёхфазной фиксации транзакций E3PC основан на следующих работах:
Idit Keidar, Danny Dolev. Increasing the Resilience of Distributed and Replicated Database Systems.
Tim Kempster, Colin Stirling, Peter Thanisch. A More Committed Quorum-Based Three Phase Commit Protocol.
F.32. multimaster
multimaster is a Postgres Pro Enterprise extension with a set of patches that turns Postgres Pro Enterprise into a synchronous shared-nothing cluster to provide Online Transaction Processing (OLTP) scalability for read transactions and high availability with automatic disaster recovery.
As compared to a standard PostgreSQL master-standby cluster, a cluster configured with the multimaster extension offers the following benefits:
Cluster-wide transaction isolation
Synchronous logical replication and DDL replication
Working with temporary tables on each cluster node
Fault tolerance and automatic node recovery
PostgreSQL online upgrades
Important
The multimaster extension is no longer supported in Postgres Pro Enterprise 10. Please consider migrating to the latest Postgres Pro Enterprise major version to ensure stable performance of multimaster.
The multimaster extension replicates your database to all nodes of the cluster and allows write transactions on each node. To ensure data consistency in the case of concurrent updates, multimaster enforces transaction isolation cluster-wide, using multiversion concurrency control (MVCC) at the read committed or repeatable read isolation levels. Any write transaction is synchronously replicated to all nodes, which increases commit latency for the time required for synchronization. Read-only transactions and queries are executed locally, without any measurable overhead.
To ensure high availability and fault tolerance of the cluster, multimaster uses three-phase commit protocol and heartbeats for failure discovery. A multi-master cluster of N nodes can continue working while the majority of the nodes are alive and reachable by other nodes. To be configured with multimaster, the cluster must include at least two nodes. In most cases, three cluster nodes are enough to ensure high availability. Since the data on all cluster nodes is the same, you do not typically need more than five cluster nodes.
When a failed node is reconnected to the cluster, multimaster can automatically fast-forward the node to the actual state based on the Write-Ahead Log (WAL) data in the corresponding replication slot. If WAL data is no longer available for the time when the node was excluded from the cluster, you can restore the node using pg_basebackup.
Note
When using multimaster, make sure to take its replication restrictions into account. For details, see Section F.32.1.
To learn more about the multimaster internals, see Section F.32.2.
F.32.1. Limitations
The multimaster extension takes care of the database replication in a fully automated way. You can perform write transactions on any node and work with temporary tables on each cluster node simultaneously. However, make sure to take the following replication restrictions into account:
Microsoft Windows operating system is not supported.
multimastercan only replicate one database per cluster. This database must be specified in themultimaster.conn_stringsvariable. If you connect to a different database, all operations will fail with the corresponding error message.The replicated tables must have primary keys or replica identity because of logical replication restrictions. Although tables without primary keys can be replicated,
multimasterdoes not allowUPDATEandDELETEoperations on such tables. For details, seemultimaster.ignore_tables_without_pk. Unlogged tables are not replicated, as in the standard PostgreSQL.Isolation level. The
multimasterextension supportsread committedandrepeatable readisolation levels.Serializableisolation level is currently not supported.Important
Using
repeatable readisolation level increases the probability of serialization failure at commit time. Unlike in the standard PostgreSQL,read committedlevel can also cause serialization failures on a multi-master cluster (with an SQLSTATE code '40001').When performing a write transaction,
multimasterblocks the affected objects only on the node on which the transaction is performed. However, since write transactions are allowed on all nodes, other transactions can try to change the same objects on the neighbor nodes at the same time. In this case, the replication of the first transaction can fail because the affected objects on the neighbor nodes are already blocked by another transaction. Similarly, the latter transaction cannot be replicated to the first node. In this case, a distributed deadlock occurs. As a result, one of the transactions is automatically rolled back and needs to be repeated. The application must be ready to retry transactions.If your typical workload has too many rollbacks, it is recommended to use
read committedisolation level. However, theread committedstill does not guarantee the absence of deadlocks on a multi-master cluster. If using theread committedlevel does not help, you can try directing all the write transactions to a single node.In a multi-master cluster, the
ALTER SYSTEMcommand only affects the configuration of the current node. If you would like to change configuration parameters across the whole database cluster, you need to run this command on each node.Sequence generation. To avoid conflicts between unique identifiers on different nodes,
multimastermodifies the default behavior of sequence generators. By default, ID generation on each node is started with this node number and is incremented by the number of nodes. For example, in a three-node cluster, 1, 4, and 7 IDs are allocated to the objects written onto the first node, while 2, 5, and 8 IDs are reserved for the second node. If you change the number of nodes in the cluster, the incrementation interval for new IDs is adjusted accordingly. Thus, the generated sequence values are not monotonic. If it is critical to get a monotonically increasing sequence cluster-wide, you can set themultimaster.monotonic_sequencestotrue.DDL replication. While
multimasterreplicates data on the logical level, DDL is replicated on the statement level, which results in distributed commits of the same statement on different nodes. As a result, complex DDL scenarios, such as stored procedures and temporary tables, may work differently as compared to the standard PostgreSQL.Commit latency. In the current implementation of logical replication,
multimastersends data to subscriber nodes only after the local commit, so you have to wait for transaction processing twice: first on the local node, and then on all the other nodes simultaneously. In the case of a heavy-write transaction, this may result in a noticeable delay.
If you have any data that must be present on one of the nodes only, you can exclude a particular table from replication, as follows:
SELECT mtm.make_table_local('table_name') F.32.2. Architecture
F.32.2.1. Replication
Since each server in a multi-master cluster can accept writes, any server can abort a transaction because of a concurrent update — in the same way as it happens on a single server between different backends. To ensure high availability and data consistency on all cluster nodes, multimaster uses logical replication and the three-phase E3PC commit protocol.
When Postgres Pro Enterprise loads the multimaster shared library, multimaster sets up a logical replication producer and consumer for each node, and hooks into the transaction commit pipeline. The typical data replication workflow consists of the following phases:
PREPAREphase.multimastercaptures and implicitly transforms eachCOMMITstatement to aPREPAREstatement. All the nodes that get the transaction via the replication protocol (the cohort nodes) send their vote for approving or declining the transaction to the arbiter process on the initiating node. This ensures that all the cohort can accept the transaction, and no write conflicts occur. For details onPREPAREtransactions support in PostgreSQL, see the PREPARE TRANSACTION topic.PRECOMMITphase. If all the cohort nodes approve the transaction, the arbiter process sends aPRECOMMITmessage to all the cohort nodes to express an intention to commit the transaction. The cohort nodes respond to the arbiter with thePRECOMMITTEDmessage. In case of a failure, all the nodes can use this information to complete the transaction using a quorum-based voting procedure.COMMITphase. IfPRECOMMITis successful, the arbiter commits the transaction to all nodes.
Important
multimaster currently supports the read committed and repeatable read isolation levels only, which can cause unexpected serialization failures in your workload. For details, see Section F.32.1.
If a node crashes or gets disconnected from the cluster between the PREPARE and COMMIT phases, the PRECOMMIT phase ensures that the survived nodes have enough information to complete the prepared transaction. The PRECOMMITTED messages help avoid the situation when the crashed node has already committed or aborted the transaction, but has not notified other nodes about the transaction status. In a two-phase commit (2PC), such a transaction would block resources (hold locks) until the recovery of the crashed node. Otherwise, you could get data inconsistencies in the database when the failed node is recovered. For example, if the failed node committed the transaction but the survived node aborted it.
To complete the transaction, the arbiter must receive a response from the majority of the nodes. For example, for a cluster of 2N+1 nodes, at least N+1 responses are required. Thus, multimaster ensures that your cluster is available for reads and writes while the majority of the nodes are connected, and no data inconsistencies occur in case of a node or connection failure. For details on the failure detection mechanism, see Section F.32.2.2.
F.32.2.2. Failure Detection and Recovery
Since multimaster allows writes to each node, it has to wait for responses about transaction acknowledgment from all the other nodes. Without special actions in case of a node failure, each commit would have to wait until the failed node recovery. To deal with such situations, multimaster periodically sends heartbeats to check the node state and the connectivity between nodes. When several heartbeats to the node are lost in a row, this node is kicked out of the cluster to allow writes to the remaining alive nodes. You can configure the heartbeat frequency and the response timeout in the multimaster.heartbeat_send_timeout and multimaster.heartbeat_recv_timeout parameters, respectively.
For alive nodes, there is no way to distinguish between a failed node that stopped serving requests and a network-partitioned node that can be accessed by database users, but is unreachable for other nodes. To avoid conflicting writes to nodes in different network partitions, multimaster only allows writes to the nodes that see the majority of other nodes.
For example, suppose a five-node multi-master cluster experienced a network failure that split the network into two isolated subnets, with two and three cluster nodes. Based on heartbeats propagation information, multimaster will continue accepting writes at each node in the bigger partition, and deny all writes in the smaller one. Thus, a cluster consisting of 2N+1 nodes can tolerate N node failures and stay alive if any N+1 nodes are alive and connected to each other.
Tip
For clusters with an even number of nodes, you can override this behavior. For details, see Section F.32.3.3.
In case of a partial network split when different nodes have different connectivity, multimaster finds a fully connected subset of nodes and disconnects other nodes. For example, in a three-node cluster, if node A can access both B and C, but node B cannot access node C, multimaster isolates node C to ensure data consistency on nodes A and B.
If you try to access a disconnected node, multimaster returns an error message indicating the current status of the node. To prevent stale reads, read-only queries are also forbidden. Additionally, you can break connections between the disconnected node and the clients using the multimaster.break_connection variable.
Each node maintains a data structure that keeps the information about the state of all nodes in relation to this node. You can get this data in the mtm.get_nodes_state() view.
When a failed node connects back to the cluster, multimaster starts automatic recovery:
The reconnected node selects a random cluster node and starts catching up with the current state of the cluster based on the Write-Ahead Log (WAL).
When the node gets synchronized up to the minimum recovery lag, all the cluster nodes get locked for write transactions to allow the recovery process to finish. By default, the minimum recovery lag is 10KB. You can change this value in the
multimaster.min_recovery_lagvariable.When the recovery is complete,
multimasterpromotes the reconnected node to the online state and includes it into the replication scheme.
Note
Automatic recovery is only possible if the failed node WAL lag behind the working ones does not exceed the multimaster.max_recovery_lag value. When the WAL lag is bigger than multimaster.max_recovery_lag, you can manually restore the node from one of the working nodes using pg_basebackup.
See Also
F.32.3. Installation and Setup
To use multimaster, you need to install Postgres Pro Enterprise on all nodes of your cluster. Postgres Pro Enterprise includes all the required dependencies and extensions.
F.32.3.1. Setting up a Multi-Master Cluster
After installing Postgres Pro Enterprise on all nodes, you need to configure the cluster with multimaster.
Suppose you are setting up a cluster of three nodes, with node1, node2, and node3 domain names. First, set up the database to be replicated, and make sure you have a DBMS user with superuser rights to perform replication:
If you are starting from scratch, initialize a cluster, create an empty database
mydband a new DBMS usermyuserwith superuser rights, on each node of the cluster. For details, see Section 18.2.If you already have a database
mydbrunning onnode1, create a new DBMS usermyuserwith superuser rights and initialize new nodes from the working node using pg_basebackup on behalf of this user. Run the following command on each node you are going to add:pg_basebackup -D
datadir-h node1 -U myuser -c fastwhere
datadiris the directory containing the database cluster. This directory is specified at the cluster initialization stage, or set in thePGDATAenvironment variable. You can also use any other DBMS user with superuser rights instead ofmyuserto perform this task.For details on using pg_basebackup, see pg_basebackup.
Once the database is set up, complete the following steps on each cluster node:
Allow replication of the
mydbdatabase to each cluster node on behalf ofmyuser, as explained in Section 20.1. Make sure to use the authentication method that satisfies your security requirements.Modify the
postgresql.confconfiguration file, as follows:Add
multimasterto theshared_preload_librariesvariable:shared_preload_libraries = 'multimaster'
Tip
If the
shared_preload_librariesvariable is already defined inpostgresql.auto.conf, you will need to modify its value using the ALTER SYSTEM command. For details, see Section 19.1.2. Note that in a multi-master cluster, theALTER SYSTEMcommand only affects the configuration of the node from which it was run.Specify the transaction isolation level for your cluster.
multimastercurrently supports read committed and repeatable read isolation levels.default_transaction_isolation = 'read committed'
Important
Using
repeatable readisolation level increases the probability of serialization failure at commit time. If such cases are not handled by your application, you are recommended to useread committedisolation level.Set up PostgreSQL parameters related to replication.
wal_level = logical max_connections = 100 max_prepared_transactions = 300 max_wal_senders = 10 # at least the number of nodes max_replication_slots = 10 # at least the number of nodes
You must change the replication level to
logicalasmultimasterrelies on logical replication. For a cluster ofNnodes, enable at leastNWAL sender processes and replication slots. Sincemultimasterimplicitly adds aPREPAREphase to eachCOMMITtransaction, make sure to set the number of prepared transactions toN*max_connections. Otherwise, prepared transactions may be queued.Make sure you have enough background workers allocated for each node:
max_worker_processes = 250
For example, for a three-node cluster with
max_connections= 100,multimastermay need up to 206 background workers at peak times: 200 workers for connections from the neighbor nodes, two workers for WAL sender processes, two workers for WAL receiver processes, and two workers for the arbiter sender and receiver processes. When setting this parameter, remember that other modules may also use background workers at the same time.Add
multimaster-specific options:multimaster.max_nodes = 3 # cluster size multimaster.node_id = 1 # the 1-based index of this node # in the cluster multimaster.conn_strings = 'dbname=mydb user=myuser host=node1 port=5432 arbiter_port=5433,dbname=mydb user=myuser host=node2 port=5432 arbiter_port=5433,dbname=mydb user=myuser host=node3 port=5432 arbiter_port=5433' # comma-separated list # of connection strings # to neighbor nodes multimaster.arbiter_port = 5433The
multimaster.max_nodesvariable defines the maximum cluster size. If you plan to add new nodes to your cluster, themultimaster.max_nodesvalue should exceed the initial number of nodes. In this case, you can add new nodes without restarting Postgres Pro Enterprise until the specified number of nodes is reached.In most cases, three cluster nodes are enough to ensure high availability. Since the data on all cluster nodes is the same, you do not typically need more than five cluster nodes.
Important
The
multimaster.node_idvariable takes natural numbers starting from 1, without any gaps in numbering. For example, for a cluster of five nodes, set node IDs to 1, 2, 3, 4, and 5. In themultimaster.conn_stringsvariable, make sure to list the nodes in the order of their IDs. Themultimaster.conn_stringsvariable must be the same on all nodes.You can customize connection parameters by adding other libpq connection options to connection strings in the
multimaster.conn_stringsvariable. By default,multimasteruses port 5432 to establish connections between the nodes and port 5433 for the arbiter process to listen for connections. If these ports are already in use, you must specify other ports inportandarbiter_portoptions in each connection string in themultimaster.conn_stringsvariable.If you change the
arbiter_portoption, you must also specify this port in themultimaster.arbiter_portvariable. For details, seemultimaster.arbiter_portandmultimaster.conn_strings.To check whether the default ports are available, you can run the following command:
netstat -ln | grep -E '5432|5433'
Make sure these ports are not blocked by firewall.
Depending on your network environment and usage patterns, you may want to tune other
multimasterparameters. For details, see Section F.32.3.2.On behalf of an OS superuser, restart Postgres Pro Enterprise:
pg_ctl -D
datadir-lpg.logrestart
When Postgres Pro Enterprise is started on all nodes, connect to any node on behalf of the postgres OS user and create the multimaster extension in the mydb database that will be replicated:
psql -h node1 -d mydb CREATE EXTENSION multimaster;
The CREATE EXTENSION query is replicated to all the cluster nodes.
To ensure that multimaster is enabled, check the mtm.get_cluster_state() view:
SELECT mtm.get_cluster_state();
If liveNodes is equal to allNodes, your cluster is successfully configured and ready to use.
See Also
Tuning Configuration Parameters
F.32.3.1.1. Sample Cluster Configuration
This section shows a sample configuration of a three-node cluster with host names node1, node2 and node3. The name of the database to be replicated is mydb. The name of DBMS user with superuser rights to perform database replication is myuser.
First, run the following commands on behalf of OS user
postgres, on all cluster nodes:# Configure each node, and then create the myuser user # and mydb database owned by myuser. export PATH=/opt/pgpro/ent-10/bin:$PATH export PGDATA=/var/lib/pgpro/ent-10/data for i in `seq 1 3`; do echo "host replication myuser node$i md5" >> $PGDATA/pg_hba.conf echo "host mydb myuser node$i md5" >> $PGDATA/pg_hba.conf echo "node$i:5432:mydb:myuser:myuserpassword" >> ~/.pgpass done chmod 0600 ~/.pgpass cat << EOF | psql --dbname=postgres --username=postgres --port=5432 ALTER SYSTEM SET default_transaction_isolation = 'read committed'; ALTER SYSTEM SET wal_level = logical; ALTER SYSTEM SET max_connections = 100; ALTER SYSTEM SET max_prepared_transactions = 300; ALTER SYSTEM SET max_wal_senders = 10; ALTER SYSTEM SET max_replication_slots = 10; ALTER SYSTEM SET max_worker_processes = 250; ALTER SYSTEM SET shared_preload_libraries = 'multimaster'; CREATE USER myuser WITH SUPERUSER PASSWORD 'myuserpassword'; CREATE DATABASE mydb OWNER myuser; EOF # Define the number of nodes in the cluster, assign node IDs, # and connection strings to the nodes. This example assumes # that node hostnames are node1, node2, and node3, and their # IDs are the corresponding numbers starting with 1. cat << EOF >> $PGDATA/postgresql.conf multimaster.max_nodes = 3 multimaster.node_id = `hostname | awk '{ print substr($1,5,1) }'` multimaster.arbiter_port = 5433 multimaster.conn_strings = 'dbname=mydb user=myuser host=node1 port=5432 arbiter_port=5433,dbname=mydb user=myuser host=node2 port=5432 arbiter_port=5433,dbname=mydb user=myuser host=node3 port=5432 arbiter_port=5433' EOFOn behalf of an OS user with superuser privileges, restart Postgres Pro Enterprise service on all cluster nodes:
sudo service postgrespro-ent-10 restart
Now create the
multimasterextension on one of the cluster nodes, on behalf of OS userpostgres. It will be replicated to all the other nodes automatically. The following example illustrates extension creation on node1.psql --dbname=mydb --username=myuser --host=node1 --port=5432 -c "CREATE EXTENSION IF NOT EXISTS multimaster"
The cluster is set up and ready to use.
F.32.3.2. Tuning Configuration Parameters
While you can use multimaster in the default configuration, you may want to tune several parameters for faster failure detection or more reliable automatic recovery.
F.32.3.2.1. Setting Timeout for Failure Detection
To check availability of the neighbor nodes, multimaster periodically sends heartbeat packets to all nodes. You can define the timeout for failure detection with the following variables:
The
multimaster.heartbeat_send_timeoutvariable defines the time interval between the heartbeats. By default, this variable is set to 200ms.The
multimaster.heartbeat_recv_timeoutvariable sets the timeout for the response. If no heartbeats are received during this time, the node is assumed to be disconnected and is excluded from the cluster. By default, this variable is set to 1000ms.
It's a good idea to set multimaster.heartbeat_send_timeout based on typical ping latencies between the nodes. Small recv/send ratio decreases the time of failure detection, but increases the probability of false-positive failure detection. When setting this parameter, take into account the typical packet loss ratio between your cluster nodes.
F.32.3.2.2. Configuring Automatic Recovery Parameters
If a cluster node fails, multimaster can automatically restore it based on the WAL collected on other cluster nodes. To control the recovery settings, use the following variables:
multimaster.min_recovery_lag— sets the minimal WAL lag between the node to be restored and the current cluster state. By default,multimaster.min_recovery_lagis set to 10KB. When the disconnected node is fast-forwarded up to themultimaster.min_recovery_lagthreshold,multimasterstops all new commits to the alive nodes until the node fully catches up with the current state of the cluster. When the data is fully synchronized, the disconnected node is promoted to the online state, and the cluster resumes its work.multimaster.max_recovery_lag— sets the maximum size of WAL. Upon reaching themultimaster.max_recovery_lagthreshold, WAL for the disconnected node is overwritten. At this point, automatic recovery is no longer possible. In this case, you can restore the node manually by cloning the data from one of the alive nodes using pg_basebackup.
By default, multimaster.max_recovery_lag is set to 1GB. Setting multimaster.max_recovery_lag to a larger value increases the timeframe for automatic recovery, but requires more disk space for WAL collection.
See Also
F.32.3.3. Defining Quorum Settings for Clusters with an Even Number of Nodes
By default, multimaster uses a majority-based algorithm to determine whether the cluster nodes have a quorum: a cluster can only continue working if the majority of its nodes are alive and can access each other. For clusters with an even number of nodes, this approach is not optimal. For example, if a network failure splits the cluster into equal parts, or one of the nodes fails in a two-node cluster, all the nodes stop accepting queries, even though at least half of the cluster nodes are running normally.
To enable a smooth failover for such cases, you can modify the multimaster majority-based behavior using one of the following options:
Set up a standalone referee node to assign the quorum status to a subset of nodes that constitutes half of the cluster.
Choose the major node that continues working regardless of the status of other nodes. Use this option in two-node cluster configurations only.
Important
To avoid split-brain problems, do not use the major node together with a referee in the same cluster.
F.32.3.3.1. Setting up a Standalone Referee Node
A referee is a voting node used to determine which subset of nodes has a quorum if the cluster is split into equal parts. The referee node does not store any cluster data, so it is not resource-intensive and can be configured on virtually any system with Postgres Pro Enterprise installed.
To set up a referee for your cluster:
Install Postgres Pro Enterprise on the node you are going to make a referee and create the
refereeextension:CREATE EXTENSION referee;
Make sure the
pg_hba.conffile allows access to the referee node.On all your cluster nodes, specify the referee connection string in the
postgresql.conffile:multimaster.referee_connstring =
connstringwhere
connstringholds libpq options required to access the referee.
The first subset of nodes that gets connected to the referee wins the voting and continues working. The referee keeps the voting result until all the other cluster nodes get online again. Then the result is discarded, and a new winner can be chosen in case of another network failure.
To avoid split-brain problems, you can only have a single referee in your cluster. Do not set up a referee if you have already configured the major node.
F.32.3.3.2. Configuring the Major Node
If you configure one of the nodes to be the major one, this node will continue accepting queries even if it is isolated by a network failure, or other nodes get broken. This setting is useful in a two-node cluster configuration, or to quickly restore a single node in a broken cluster.
To make one of the nodes major, enable the multimaster.major_node parameter on this node:
ALTER SYSTEM SET multimaster.major_node TO on; SELECT pg_reload_conf();
Do not set the major_node parameter on more than one cluster node. When enabled on several nodes, it can cause the split-brain problem. If you have already set up a referee for your cluster, the major_node option is forbidden.
Important
If your cluster has more than two nodes, do not use the major node setting, as it can lead to split-brain problems in case of network failures, and reduce the number of possible failover options. If the major node gets isolated by a network failure while the majority of nodes are connected to each other, both the major node and the subset that has a quorum will continue working. Consider setting up a standalone referee instead.
F.32.4. Multi-Master Cluster Administration
F.32.4.1. Monitoring Cluster Status
multimaster provides several views to check the current cluster state.
To check node-specific information, use mtm.get_nodes_state():
SELECT mtm.get_nodes_state();
To check the status of the whole cluster, use the mtm.get_cluster_state() view:
SELECT mtm.get_cluster_state();
For details on all the returned information, see Section F.32.5.2.
F.32.4.2. Adding New Nodes to the Cluster
With the multimaster extension, you can add or drop cluster nodes without stopping the database service.
To add a new node, you need to change the cluster configuration on alive nodes, load all the data to the new node using pg_basebackup, and start the node.
Suppose we have a working cluster of three nodes, with node1, node2, and node3 domain names. To add node4, follow these steps:
Check whether the current number of cluster nodes has reached the value specified in the
multimaster.max_nodesvariable. If this value is reached, increase themultimaster.max_nodesvalue on each node and restart all nodes. You can restart the nodes one by one, without stopping the database. If the maximum number of nodes is not reached, proceed to the next step.Figure out the required connection string to access the new node. For example, for the database
mydb, usermyuser, and the new nodenode4, the connection string can be"dbname=mydb user=myuser host=node4". For details, seemultimaster.conn_strings.In
psqlconnected to any alive node, run:SELECT mtm.add_node('dbname=mydb user=myuser host=node4');This command changes the cluster configuration on all nodes and starts replication slots for the new node.
Connect to the new node and clone all the data from one of the alive nodes to the new node:
pg_basebackup -D
datadir-h node1 -U myuser -c fastpg_basebackup copies the entire data directory from
node1, together with configuration settings.Update
postgresql.confsettings onnode4:multimaster.node_id = 4 multimaster.conn_strings = 'dbname=mydb user=myuser host=node1, dbname=mydb user=myuser host=node2, dbname=mydb user=myuser host=node3, dbname=mydb user=myuser host=node4'Start Postgres Pro on the new node:
pg_ctl -D
datadir-lpg.logstartWhen the node gets synchronized up to the minimum recovery lag, all the cluster nodes get locked for write transactions until the new node retrieves all the updates. When data recovery is complete,
multimasterpromotes the new node to the online state and includes it into the replication scheme.
To ensure that the new configuration is loaded in the case of PostgreSQL restart, update configuration settings on all the cluster nodes:
Change
multimaster.conn_stringsto include the new node.Make sure the
pg_hba.conffile allows replication to the new node.
See Also
F.32.4.3. Removing Nodes from the Cluster
multimaster provides the mtm.stop_node() function that can temporarily or permanently remove nodes from the cluster.
To temporarily exclude a node from the cluster, run the mtm.stop_node() function specifying the node ID. For example, to exclude node 3, run the following command on any other node of the cluster:
SELECT mtm.stop_node(3);
This command excludes node 3 from the cluster and stops replication to this node.
While the WAL lag between the node and the current cluster state is less than the multimaster.max_recovery_lag value, you can restore the node by running the following command:
SELECT mtm.recover_node(3);
Otherwise, follow the procedure described in Section F.32.4.4.
Note
If you simply shut down a node, it will be excluded from the cluster as well. However, all transactions in the cluster will be frozen until other nodes detect the offline state of the node. This time interval is defined by the multimaster.heartbeat_recv_timeout parameter.
To permanently drop the node from the cluster:
Run the
mtm.stop_node()function with thedrop_slotparameter set totrue:SELECT mtm.stop_node(3, true);
This disables replication slots for node 3 on all cluster nodes and stops replication to this node.
Adjust
multimaster.node_idandmultimaster.conn_stringssettings inpostgresql.confon the remaining cluster nodes to reflect the new state of the cluster.Edit the
pg_hba.conffile on the remaining cluster nodes to disable replication to the removed node, if required.
If you would like to return the node to the cluster later, you will have to add it as a new node, as explained in Section F.32.4.2.
F.32.4.4. Restoring a Cluster Node Manually
The multimaster extension can automatically restore a failed node if the WAL is available for the time when the node was disconnected from the cluster. However, if the data updates on the alive nodes exceed the allowed WAL size specified in the multimaster.max_recovery_lag variable, automatic recovery is impossible. In this case, you can manually restore the failed node.
Suppose node2 got disconnected from your three-node cluster and needs to be manually restored. The typical workflow is as follows:
In
psqlconnected to any alive node, create a new replication slot for the disconnected node with the following command:SELECT mtm.recover_node(2);
where 2 is the ID of the disconnected node specified in the
multimaster.node_idvariable.Connect to
node2and clone all the data from one of the alive nodes:pg_basebackup -D
datadir-h node1 -U myuser -c fastpg_basebackup copies the entire data directory from
node1, together with configuration settings.On the restored node, update the
multimaster.node_idsetting to the value this node used to have before the failure.Make sure replication is enabled between the restored node and the rest of the cluster.
Start Postgres Pro on the restored node:
pg_ctl -D
datadir-lpg.logstartWhen the node gets synchronized up to the minimum recovery lag, all the cluster nodes get locked for write transactions until the restored node retrieves all the updates. When data recovery is complete,
multimasterpromotes the new node to the online state and includes it into the replication scheme.
See Also
F.32.5. Reference
F.32.5.1. GUC Variables
multimaster.node_idNode ID — a unique natural number identifying the node of a multi-master cluster. You must start node numbering from 1. There must be no gaps in numbering. For example, for a cluster of five nodes, set node IDs to 1, 2, 3, 4, and 5.
multimaster.conn_stringsConnection strings for each node of a multi-master cluster, separated by commas. The
multimaster.conn_stringsparameter must be identical on all nodes. Each connection string must include the name of the database to replicate and the cluster node domain name. For example, 'dbname=mydb host=node1,dbname=mydb host=node2,dbname=mydb host=node3'. Optionally, you can add other connection parameters to change the default connection settings. Connection strings must appear in the order of the node IDs specified in themultimaster.node_idvariable. Connection string for the i-th node must be on the i-th position. If you specify a custom port in themultimaster.arbiter_port, you must provide this value in thearbiter_portparameter in the connection string for the corresponding node.multimaster.max_nodesThe maximum number of nodes allowed in the cluster. If you plan to add new nodes to your cluster, the
multimaster.max_nodesvalue should exceed the initial number of nodes. In this case, you can add new nodes without restarting Postgres Pro Enterprise until the specified number of nodes is reached. In most cases, three cluster nodes are enough to ensure high availability. Since the data on all cluster nodes is the same, you do not typically need more than five cluster nodes. The maximum possible number of nodes is limited to 64.Default: the number of nodes specified in the
multimaster.conn_stringsvariablemultimaster.arbiter_portPort for the arbiter process to listen on. If you change the default value, you must specify this value in the
arbiter_portparameter in the connection string for the corresponding node.Default: 5433
multimaster.heartbeat_send_timeoutTime interval between heartbeat messages, in milliseconds. An arbiter process broadcasts heartbeat messages to all nodes to detect connection problems.
Default: 200
multimaster.heartbeat_recv_timeoutTimeout, in milliseconds. If no heartbeat message is received from the node within this timeframe, the node is excluded from the cluster.
Default: 1000
multimaster.min_recovery_lagMinimal WAL lag between the node to be restored and the current cluster state, in kB. When this threshold is reached during node recovery, the cluster is locked for write transactions until the recovery is complete.
Default: 10KB
multimaster.max_recovery_lagMaximal WAL lag size, in kB. When a node is disconnected from the cluster, other nodes copy WAL data for all new transactions into the replication slot of this node. Upon reaching the
multimaster.max_recovery_lagvalue, the replication slot for the disconnected node is dropped to avoid overflow. At this point, automatic recovery of the node is no longer possible. In this case, you can restore the node manually by cloning the data from one of the alive nodes using pg_basebackup or a similar tool. If you set this variable to zero, replication slot will not be dropped.Default: 1GB
multimaster.ignore_tables_without_pkBoolean. This variable enables/disables replication of
INSERToperations for tables without primary keys. By default, such replication is enabled. Setting this parameter toondisables replication ofINSERToperations for these tables. Regardless of this setting, DDL operations on tables without primary keys are always replicated, whileUPDATEandDELETEoperations are not replicated because of the logical replication restrictions.Default:
falsemultimaster.cluster_nameName of the cluster. If you define this variable when setting up the cluster,
multimasterchecks that the cluster name is the same for all the cluster nodes.multimaster.break_connectionBreak connection with clients connected to the node if this node disconnects from the cluster. If this variable is set to
false, the client stays connected to the node but receives an error that the node is in minority.Default:
falsemultimaster.major_nodeThe node with this flag continues working even if there is no quorum. This may be required to break the symmetry in two-node clusters, or to quickly restore a single node in a broken cluster.
Important
This parameter should be used with caution to avoid split-brain problems:
Do not use the
major_nodeparameter on clusters with more than two nodes. If the major node gets isolated by a network failure while the majority of nodes are connected to each other, both the major node and the subset that has a quorum will continue working. Consider setting up a standalone referee instead.Never set more than one major node in the cluster.
multimaster.referee_connstringConnection string to access the referee node. You must set this parameter on all cluster nodes if the referee is set up.
multimaster.max_workersThe maximum number of
walreceiverworkers on this server.Important
This parameter should be used with caution. If the number of simultaneous transactions in the whole cluster is bigger than the provided value, it can lead to undetected deadlocks.
Default: 100
multimaster.trans_spill_thresholdThe maximal size of transaction, in kB. When this threshold is reached, the transaction is written to the disk.
Default: 100MB
multimaster.monotonic_sequencesDefines the sequence generation mode for unique identifiers. This variable can take the following values:
false(default) — ID generation on each node is started with this node number and is incremented by the number of nodes. For example, in a three-node cluster, 1, 4, and 7 IDs are allocated to the objects written onto the first node, while 2, 5, and 8 IDs are reserved for the second node. If you change the number of nodes in the cluster, the incrementation interval for new IDs is adjusted accordingly.true— the generated sequence increases monotonically cluster-wide. ID generation on each node is started with this node number and is incremented by the number of nodes, but the values are omitted if they are smaller than the already generated IDs on another node. For example, in a three-node cluster, if 1, 4 and 7 IDs are already allocated to the objects on the first node, 2 and 5 IDs will be omitted on the second node. In this case, the first ID on the second node is 8. Thus, the next generated ID is always higher than the previous one, regardless of the cluster node.
Default:
falsemultimaster.remote_functionsProvides a comma-separated list of function names that should be executed remotely on all multimaster nodes instead of replicating the result of their work.
multimaster.use_rdmaEnables node-to-node connections using Remote Direct Memory Access (RDMA) technology. You must have an RDMA implementation set up on all the cluster nodes. For details, see Section 18.11.
F.32.5.2. Functions
-
mtm.get_nodes_state() Shows the status of all nodes in the cluster. Returns a tuple of the following values:
id,integerNode ID.
enabled,booleanShows whether the node is excluded from the cluster. The node can only be disabled if responses to heartbeats are not received within the
heartbeat_recv_timeouttime interval. When the node starts responding to heartbeats,multimastercan automatically restore the node and switch it back to the enabled state. Automatic recovery is only possible if the replication slot is still active. Otherwise, you can restore the node manually.connected,booleanShows whether the node is connected to the WAL sender.
slot_active,booleanShows whether the node has an active replication slot. For a disabled node, the slot remains active until the
max_recovery_lagvalue is reached.stopped,booleanShows whether replication to this node was stopped by the
mtm.stop_node()function. A stopped node acts as a disabled one, but cannot be automatically recovered. Callmtm.recover_node()to re-enable such a node.catchUp,booleanDuring the node recovery, shows whether the data is recovered up to the
min_recovery_lagvalue.slotLag,bigintThe size of WAL data that the replication slot holds for a disabled/stopped node. The slot is dropped when
slotLagreaches themax_recovery_lagvalue.avgTransDelay,bigintAn average commit delay caused by this node, in microseconds.
lastStatusChange,timestampLast time when the node changed its status (enabled/disabled).
oldestSnapshot,bigintThe oldest global snapshot existing on this node.
SenderPid,integerProcess ID of the WAL sender.
SenderStartTime,timestampWAL sender start time.
ReceiverPid,integerProcess ID of the WAL receiver.
ReceiverStartTime,timestampWAL receiver start time.
connStr,textConnection string to this node.
connectivityMask,bigintBitmask representing connectivity to neighbor nodes. Each bit represents a connection to node.
nHeartbeats,integerThe number of heartbeat responses received from this node.
-
mtm.collect_cluster_info() Collects the data returned by the
mtm.get_cluster_state()function from all available nodes. For this function to work, in addition to replication connections,pg_hba.confmust allow ordinary connections to the node with the specified connection string.-
mtm.get_cluster_state() Shows the status of the
multimasterextension. Returns a tuple of the following values:id,integerNode ID.
status,textNode status. Possible values are:
Initialization,Offline,Connected,Online,Recovery,Recovered,InMinor,OutOfService.disabledNodeMask,bigintBitmask of disabled nodes.
disconnectedNodeMask,bigintBitmask of disconnected nodes.
catchUpNodeMask,bigintBitmask of nodes that completed the recovery.
liveNodes,integerNumber of enabled nodes.
allNodes,integerNumber of nodes in the cluster. The majority of alive nodes is calculated based on this parameter.
nActiveQueries,integerNumber of queries being currently processed on this node.
nPendingQueries,integerNumber of queries waiting for execution on this node.
queueSize,bigintSize of the pending query queue, in bytes.
transCount,bigintThe total number of replicated transactions processed by this node.
timeShift,bigintGlobal snapshot shift caused by unsynchronized clocks on nodes, in microseconds.
recoverySlot,integerThe node from which a failed node gets data updates during automatic recovery.
xidHashSize,bigintSize of xid2state hash.
gidHashSize,bigintSize of gid2state hash.
oldestXid,bigintThe oldest transaction ID on this node.
configChanges,integerNumber of state changes (enabled/disabled) since the last reboot.
stalledNodeMask,bigintBitmask of nodes for which replication slots were dropped.
stoppedNodeMask,bigintBitmask of nodes that were stopped by
mtm.stop_node().lastStatusChange,timestampTimestamp of the last state change.
-
mtm.add_node(connstrtext) Adds a new node to the cluster.
Arguments:
connstr— connection string for the new node. For example, for the databasemydb, usermyuser, and the new nodenode4, the connection string is"dbname=mydb user=myuser host=node4".Type:
text
-
mtm.alter_sequences() Fixes unique identifiers on all cluster nodes. This may be required after restoring all nodes from a single base backup.
-
mtm.stop_node(nodeinteger,drop_slotbooldefault false) Excludes a node from the cluster.
Arguments:
node— ID of the node to be dropped that you specified in themultimaster.node_idvariable.Type:
integerdrop_slot— Optional. Defines whether the replication slot should be dropped together with the node. Set this option totrueif you do not plan to restore the node in the future.Type:
booleanDefault:
false
-
mtm.recover_node(nodeinteger) Creates a replication slot for the node that was previously dropped together with its slot.
Arguments:
node— ID of the node to be restored.
-
mtm.make_table_local('table_name'regclass) Stops replication for the specified table.
Arguments:
table_name— the table you would like to exclude from the replication scheme.Type:
regclass
-
mtm.copy_table(table_nameregclass,node_idinteger) Copies the specified table to another node. You can use this function to restore the corrupted data on one or more nodes of the cluster. This function must be called on the node from which the table is copied.
Arguments:
table_name— the table you would like to copy.Type:
regclassnode_id— the node to copy the table to.Type:
integer
-
mtm.broadcast_table(table_nameregclass) Copies the specified table to all the alive nodes of the cluster. You can use this function to restore the corrupted data. This function must be called on the node from which the table is copied.
Arguments:
table_name— the table you would like to copy.Type:
regclass
F.32.6. Compatibility
The multimaster extension currently passes almost all PostgreSQL regression tests, except for a few tests for edge cases related to working with temporary tables and updating enum, which are not always transactional in PostgreSQL. We are working right now on providing full compatibility with the standard PostgreSQL.
F.32.7. Authors
Postgres Professional, Moscow, Russia.
F.32.7.1. Credits
The replication mechanism is based on logical decoding and an earlier version of the pglogical extension provided for community by the 2ndQuadrant team.
The three-phase E3PC commit protocol is based on the following works:
Idit Keidar, Danny Dolev. Increasing the Resilience of Distributed and Replicated Database Systems.
Tim Kempster, Colin Stirling, Peter Thanisch. A More Committed Quorum-Based Three Phase Commit Protocol.