Wed Jun 25 08:04:46 PDT 2014
- Previous message: [Slony1-general] manually delete sl_log_x table
- Next message: [Slony1-general] manually delete sl_log_x table
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
On 06/25/2014 11:00 AM, Soni M wrote: > Hello everyone, > > Is it OK to delete event log that has been replicated in sl_log_x. > No you shouldn't do that. You should instead figure out why the slony cleanup event isn't performing a log switch. Perhaps because you have a node behind or because confirmations are not making it back to the origin? > Here's the function I created : > > CREATE OR REPLACE FUNCTION _slony_example.delete_sl_log() > RETURNS void > LANGUAGE plpgsql > AS $function$ > DECLARE > v_origin int8; > v_seqno int8; > v_xmin bigint; > BEGIN > > > for v_origin, v_seqno, v_xmin in > select ev_origin, ev_seqno, > "pg_catalog".txid_snapshot_xmin(ev_snapshot) from "_slony_example".sl_event > where (ev_origin, ev_seqno) in (select ev_origin, > min(ev_seqno) from "_slony_example".sl_event where ev_type = 'SYNC' > group by ev_origin) > loop > > delete from _slony_example.sl_log_1 where log_origin = v_origin and > log_txid < v_xmin; > delete from _slony_example.sl_log_2 where log_origin = v_origin and > log_txid < v_xmin; > end loop; > > END; > $function$; > > The Slony failed to switch sl_log for several hours, and event log keep > accumulated in a table. > > Will this action help to reduce slony lag that falls far behind ? > > Thanks all. > > -- > Regards, > > Soni Maula Harriz > > > _______________________________________________ > Slony1-general mailing list > Slony1-general at lists.slony.info > http://lists.slony.info/mailman/listinfo/slony1-general >
- Previous message: [Slony1-general] manually delete sl_log_x table
- Next message: [Slony1-general] manually delete sl_log_x table
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Slony1-general mailing list