This is a document for PGroonga 1.X. See PGroonga 2.x document when you're using recent PGroonga.

Replication

PGroonga supports PostgreSQL built-in WAL based streaming replication since 1.1.6. It requires PostgreSQL 9.6 or later.

If you're using PostgreSQL 9.5 or earlier, you can use some alternative streaming replication implementations that can be used with PGroonga:

Note that WAL support doesn't mean crash safe. It just supports WAL based streaming replication. If PostgreSQL is crashed while PGroonga index update, the PGroonga index may be broken. If the PGroonga index is broken, you need to recreate the PGroonga index by REINDEX.

This document describes how to configure PostgreSQL built-in WAL based streaming replication for PGroonga. Most of steps are normal steps. There are some PGroonga specific steps.

Summary

Here are steps to configure PostgreSQL built-in WAL based streaming replication for PGroonga. "[normal]" tag means that the step is a normal step for streaming replication. "[special]" tag means that the step is a PGroonga specific step.

  1. [normal] Install PostgreSQL on master and slaves

  2. [special] Install PGroonga on master and slaves

  3. [normal] Initialize PostgreSQL database on master

  4. [normal] Add some streaming replication configurations to postgresql.conf and pg_hba.conf on master

  5. [special] Add some PGroonga related configurations to postgresql.conf on master

  6. [normal] Insert data on master

  7. [special] Create a PGroonga index on master

  8. [special] Flush PGroonga related data on master

  9. [normal] Run pg_basebackup on slaves

  10. [normal] Add some streaming replication configurations to postgresql.conf on slaves

  11. [normal] Start PostgreSQL on slaves

Example environment

This document uses the following environment:

This document shows command lines for CentOS 7. If you're using other platforms, adjust command lines by yourself.

For now (2017-07-03), the following official PGroonga packages support WAL. Because WAL support requires MessagePack and PostgreSQL 9.6 or later. Packages for other platforms don't satisfy one of them. If you build PGroonga from source, see Install from source. It describes about how to build with MessagePack.

[normal] Install PostgreSQL on master and slaves

This is a normal step.

Install PostgreSQL 9.6 on master and slaves.

Master:

% sudo -H yum install -y http://yum.postgresql.org/9.6/redhat/rhel-$(rpm -qf --queryformat="%{VERSION}" /etc/redhat-release)-$(rpm -qf --queryformat="%{ARCH}" /etc/redhat-release)/pgdg-centos96-9.6-3.noarch.rpm
% sudo -H yum install -y postgresql96-server
% sudo -H systemctl enable postgresql-9.6

Slaves:

% sudo -H yum install -y http://yum.postgresql.org/9.6/redhat/rhel-$(rpm -qf --queryformat="%{VERSION}" /etc/redhat-release)-$(rpm -qf --queryformat="%{ARCH}" /etc/redhat-release)/pgdg-centos96-9.6-3.noarch.rpm
% sudo -H yum install -y postgresql96-server
% sudo -H systemctl enable postgresql-9.6

See also PostgreSQL: Linux downloads (Red Hat family).

[special] Install PGroonga on master and slaves

This is a PGroonga specific step.

Install PGroonga on master and slaves.

Master:

% sudo -H yum install -y https://packages.groonga.org/centos/groonga-release-latest.noarch.rpm
% sudo -H yum install -y postgresql96-pgroonga

Slaves:

% sudo -H yum install -y https://packages.groonga.org/centos/groonga-release-latest.noarch.rpm
% sudo -H yum install -y epel-release
% sudo -H yum install -y postgresql96-pgroonga

See also Install on CentOS.

[normal] Initialize PostgreSQL database on master

This is a normal step.

Initialize PostgreSQL database on only master. You don't need to initialize PostgreSQL database on slaves.

Master:

% sudo -H env PGSETUP_INITDB_OPTIONS="--locale C --encoding UTF-8" /usr/pgsql-9.6/bin/postgresql96-setup initdb

[normal] Add some streaming replication configurations to postgresql.conf and pg_hba.conf on master

This is a normal step.

Add the following streaming replication configurations to postgresql.conf on only master:

/var/lib/pgsql/9.6/data/postgresql.conf:

Before:

#listen_address = 'localhost'
#wal_level = minimal
#max_wal_senders = 0

After:

listen_address = '*'
wal_level = replica
max_wal_senders = 4

Add the following streaming replication configurations to pg_hba.conf on only master:

/var/lib/pgsql/9.6/data/pg_hba.conf:

Before:

#local   replication     postgres                                peer
#host    replication     postgres        127.0.0.1/32            ident
#host    replication     postgres        ::1/128                 ident

After:

host    replication     replicator       192.168.0.0/24         md5

Create the user for replication on only master:

% sudo -H systemctl start postgresql-9.6
% sudo -u postgres -H createuser --pwprompt --replication replicator
Enter password for new role: (passw0rd)
Enter it again: (passw0rd)

This is a PGroonga specific step.

Add pgronga.enable_wal parameter configuration to postgresql.conf on only master:

/var/lib/pgsql/9.6/data/postgresql.conf:

pgroonga.enable_wal = on

Restart PostgreSQL to apply the configuration:

% sudo -H systemctl restart postgresql-9.6

[normal] Insert data on master

This is a normal step.

Create a normal user on only master:

% sudo -u postgres -H createuser ${USER}

Create a database on only master:

% sudo -u postgres -H createdb --locale C --encoding UTF-8 --owner ${USER} blog

Create a table in the created database on only master.

Connect to the created blog database:

% psql blog

Create entries table:

CREATE TABLE entries (
  title text,
  body text
);

Insert data to the created entries table:

INSERT INTO entries VALUES ('PGroonga', 'PGroonga is a PostgreSQL extension for fast full text search that supports all languages. It will help us.');
INSERT INTO entries VALUES ('Groonga', 'Groonga is a full text search engine used by PGroonga. We did not know about it.');
INSERT INTO entries VALUES ('PGroonga and replication', 'PGroonga 1.1.6 supports WAL based streaming replication. We should try it!');

[special] Create a PGroonga index on master

This is a PGroonga specific step.

Install PGroonga to the database. It requires superuser privilege:

% sudo -u postgres -H psql blog --command "CREATE EXTENSION pgroonga;"
% sudo -u postgres -H psql blog --command "GRANT USAGE ON SCHEMA pgroonga TO ${USER};"

Connect to PostgreSQL by a normal user again:

% psql blog

Create a PGroonga index on only master:

CREATE INDEX entries_full_text_search ON entries USING pgroonga (title, body);

Confirm the index:

SET enable_seqscan TO off;
SELECT title FROM entries WHERE title %% 'replication';
--           title           
-- --------------------------
--  PGroonga and replication
-- (1 row)

This is a PGroonga specific step.

Ensure writing PGroonga related data on memory to disk on only master. You can choose one of them:

  1. Run SELECT pgroonga.command('io_flush');

  2. Disconnect all connections

Here is an example to use pgroonga.command('io_flush'):

SELECT pgroonga.command('io_flush');
--                     command                    
-- -----------------------------------------------
--  [[0,1478446349.2241,0.1413860321044922],true]
-- (1 row)

You must not change tables that use PGroonga indexes on master until the next pg_basebackup step is finished.

[normal] Run pg_basebackup on slaves

This is a normal step.

Run pg_basebackup on only slaves. It copies the current database from master.

Slaves:

% sudo -u postgres -H pg_basebackup --host 192.168.0.30 --pgdata /var/lib/pgsql/9.6/data --xlog --progress --username replicator --password --write-recovery-conf
Password: (passw0rd)
149261/149261 kB (100%), 1/1 tablespace

[normal] Add some streaming replication configurations to postgresql.conf on slaves

This is a normal step.

Add the following replica configurations to postgresql.conf on only slaves:

Slaves:

/var/lib/pgsql/9.6/data/postgresql.conf:

Before:

#hot_standby = off

After:

hot_standby = on

[normal] Start PostgreSQL on slaves

This is a normal step.

Start PostgreSQL on slaves:

% sudo -H systemctl start postgresql-9.6

Now, you can search data inserted on master by PGroonga index created on master.

Slave1:

% psql blog
SET enable_seqscan TO off;
SELECT title FROM entries WHERE title %% 'replication';
--           title           
-- --------------------------
--  PGroonga and replication
-- (1 row)

You can also search data inserted on master after pg_basebackup.

Master:

INSERT INTO entries VALUES ('PostgreSQL 9.6 and replication', 'PostgreSQL supports generic WAL since 9.6. It is required for replication for PGroonga.');

Slave1:

SELECT title FROM entries WHERE title %% 'replication';
--              title              
-- --------------------------------
--  PGroonga and replication
--  PostgreSQL 9.6 and replication
-- (2 rows)

Slave2:

% psql blog
SELECT title FROM entries WHERE title %% 'replication';
--              title              
-- --------------------------------
--  PGroonga and replication
--  PostgreSQL 9.6 and replication
-- (2 rows)