This is a document for PGroonga 1.X. See PGroonga 2.x document when you're using recent PGroonga.
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:
pg_shard (pg_shard is deprecated. Citus, the replacement of pg_shard, may work with PGroonga. If you confirm that Citus can work with PGroonga, please report it.)
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.
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.
[normal] Install PostgreSQL on master and slaves
[special] Install PGroonga on master and slaves
[normal] Initialize PostgreSQL database on master
[normal] Add some streaming replication configurations to postgresql.conf
and pg_hba.conf
on master
[special] Add some PGroonga related configurations to postgresql.conf
on master
[normal] Insert data on master
[special] Create a PGroonga index on master
[special] Flush PGroonga related data on master
[normal] Run pg_basebackup
on slaves
[normal] Add some streaming replication configurations to postgresql.conf
on slaves
[normal] Start PostgreSQL on slaves
This document uses the following environment:
Master:
OS: CentOS 7
IP address: 192.168.0.30
Database name: blog
Replication user name: replicator
Replication user password: passw0rd
Slave1:
OS: CentOS 7
IP address: 192.168.0.31
Slave2:
OS: CentOS 7
IP address: 192.168.0.31
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.
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).
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.
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
postgresql.conf
and pg_hba.conf
on masterThis is a normal step.
Add the following streaming replication configurations to postgresql.conf
on only master:
listen_address = '*'
wal_level = replica
max_wal_senders = 4
(= 2 (The number of slaves) * 2
. * 2
is for unexpected connection close.)
/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:
replicator
from 192.168.0.0/24
./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)
postgresql.conf
on masterThis 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
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!');
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:
Run SELECT pgroonga.command('io_flush');
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.
pg_basebackup
on slavesThis 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
postgresql.conf
on slavesThis is a normal step.
Add the following replica configurations to postgresql.conf
on only slaves:
hot_standby = on
Slaves:
/var/lib/pgsql/9.6/data/postgresql.conf
:
Before:
#hot_standby = off
After:
hot_standby = on
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)