Re: BUG #16760: Standby database missed records for at least 1 table

Поиск
Список
Период
Сортировка
От Euler Taveira
Тема Re: BUG #16760: Standby database missed records for at least 1 table
Дата
Msg-id CAH503wD47zpzKkcuHUPM_DDTUPfNSk4-Q0TywzzZTCNuk10NyA@mail.gmail.com
обсуждение исходный текст
Ответ на BUG #16760: Standby database missed records for at least 1 table  (PG Bug reporting form <noreply@postgresql.org>)
Ответы Re: BUG #16760: Standby database missed records for at least 1 table
Re: BUG #16760: Standby database missed records for at least 1 table
Список pgsql-bugs
On Wed, 2 Dec 2020 at 17:44, PG Bug reporting form <noreply@postgresql.org> wrote:
Below output from Primary
select audit_ev_id, when_created from audit_evs_all  where audit_ev_id
between 221535154 and 221535162;
 audit_ev_id |         when_created
-------------+-------------------------------
   221535154 | 2020-12-01 00:00:20.955348+00
   221535155 | 2020-12-01 00:00:20.955348+00
   221535156 | 2020-12-01 00:00:20.955348+00
   221535157 | 2020-12-01 00:00:20.955348+00
   221535158 | 2020-12-01 00:00:20.955348+00
   221535159 | 2020-12-01 00:00:20.955348+00
   221535160 | 2020-12-01 00:00:20.955348+00
   221535161 | 2020-12-01 00:00:20.955348+00
   221535162 | 2020-12-01 00:00:20.955348+00
(9 rows)
---------------------------------------------------------------
Same query's output from 1st Secondary
select audit_ev_id, when_created from audit_evs_all  where audit_ev_id
between 221535154 and 221535162;
 audit_ev_id |         when_created
-------------+-------------------------------
   221535162 | 2020-12-01 00:00:20.955348+00
(1 row)

I would start this investigation, disabling the index usage for this query.

-- check which index has been used
explain (analyze) select audit_ev_id, when_created from audit_evs_all  where audit_ev_id
between 221535154 and 221535162;
-- disable index usage
begin;
set local enable_indexscan to 0;
set local enable_indexonlyscan to 0;
explain (analyze) select audit_ev_id, when_created from audit_evs_all  where audit_ev_id
between 221535154 and 221535162;
select audit_ev_id, when_created from audit_evs_all  where audit_ev_id
between 221535154 and 221535162;
commit;

If the second EXPLAIN isn't using the index shown in the first EXPLAIN and the
SELECT returns all rows, reindex the index that has been used. If the index is
not the culprit, you should inspect the page(s) that contain those rows using
pageinspect.


--
Euler Taveira                 http://www.2ndQuadrant.com/
PostgreSQL Development, 24x7 Support, Remote DBA, Training & Services

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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: BUG #16759: Estimation of the planner is wrong for hash join
Следующее
От: Andriy Bartash
Дата:
Сообщение: Re: BUG #16760: Standby database missed records for at least 1 table