Re: BDR: no free replication state could be found

From: Craig Ringer <craig(at)2ndquadrant(dot)com>
To: Selim Tuvi <stuvi(at)ilm(dot)com>
Cc: "pgsql-general(at)postgresql(dot)org" <pgsql-general(at)postgresql(dot)org>
Subject: Re: BDR: no free replication state could be found
Date: 2015-10-09 06:05:07
Message-ID: CAMsr+YF0_Vt61Nnrn0M8Hy57_XTfsDqc+2NutZTB3ma2QDo22w@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On 9 October 2015 at 06:54, Selim Tuvi <stuvi(at)ilm(dot)com> wrote:
> Hi I am testing BDR functionality with Postgres 9.4. I had went through the
> bdrdemo example with a 3 node cluster and then tried to set up my own db.
>
> My "max_replication_slots" is set to 6. After getting removing the bdrdemo
> db I am having trouble starting up the postgres instance unless I increase
> the value of "max_replication_slots". I get the following error in the log:
>
> "starting up replication identifier with ckpt at 0/28E8250",,,,,,,,,""
> "recovered replication state of node 1 to 0/54DDCD0",,,,,,,,,""
> "recovered replication state of node 2 to 0/1ECBEA0",,,,,,,,,""
> "recovered replication state of node 3 to 0/59FB1C0",,,,,,,,,""
> "recovered replication state of node 4 to 0/2AA5320",,,,,,,,,""
> "recovered replication state of node 5 to 0/27F2F98",,,,,,,,,""
> "recovered replication state of node 6 to 0/59F35A8",,,,,,,,,""
> "no free replication state could be found, increase
> max_replication_slots",,,,,,,,,""
>
> pg_replication_slots is only reporting two slots:
>
> postgres=# SELECT * FROM pg_catalog.pg_replication_slots;
> slot_name | plugin | slot_type | datoid |
> database | active | xmin | catalog_xmin | restart_lsn
> -----------------------------------------+--------+-----------+--------+----------+--------+------+--------------+-------------
> bdr_19685_6199712740068695651_1_18817__ | bdr | logical | 19685 |
> deliver | t | | 2280 | 0/28EA5E0
> bdr_19685_6197393155020108291_1_48609__ | bdr | logical | 19685 |
> deliver | t | | 2280 | 0/28EA5E0
>
> How can I get rid of the stale node recovery on startup?

Can you show the output of

select * from pg_replication_identifiers;

please? On all nodes. Also pg_catalog.pg_replication_slots on the other nodes.

--
Craig Ringer http://www.2ndQuadrant.com/
PostgreSQL Development, 24x7 Support, Training & Services

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Victor Blomqvist 2015-10-09 06:32:44 Drop or alter column under load give ERROR #42804 structure of query does not match function result type:
Previous Message Selim Tuvi 2015-10-08 22:54:04 BDR: no free replication state could be found