Mon Apr 7 12:24:04 PDT 2008
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Update of /home/cvsd/slony1/slony1-engine/doc/adminguide In directory main.slony.info:/tmp/cvs-serv21526 Modified Files: maintenance.sgml Log Message: Change query that populates pg_catalog.pg_autovacuum to reflect recent version of schema... Per Jeff Frost Index: maintenance.sgml =================================================================== RCS file: /home/cvsd/slony1/slony1-engine/doc/adminguide/maintenance.sgml,v retrieving revision 1.30 retrieving revision 1.31 diff -C2 -d -r1.30 -r1.31 *** maintenance.sgml 24 Mar 2008 15:57:34 -0000 1.30 --- maintenance.sgml 7 Apr 2008 19:24:02 -0000 1.31 *************** *** 112,119 **** <para> The following query will populate <envar>pg_catalog.pg_autovacuum</envar> with suitable configuration ! information: <command> insert into pg_catalog.pg_autovacuum (vacrelid, ! enabled) select oid, 'f' from pg_catalog.pg_class where relnamespace = ! (select oid from pg_namespace where nspname = '_' || 'MyCluster') and ! relhasindex; </command> </para> <sect2><title> Watchdogs: Keeping Slons Running</title> --- 112,117 ---- <para> The following query will populate <envar>pg_catalog.pg_autovacuum</envar> with suitable configuration ! information: <command> INSERT INTO pg_catalog.pg_autovacuum (vacrelid, enabled, vac_base_thresh, vac_scale_factor, anl_base_thresh, anl_scale_factor, vac_cost_delay, vac_cost_limit, freeze_min_age, freeze_max_age) SELECT oid, 'f', -1, -1, -1, -1, -1, -1, -1, -1 FROM pg_catalog.pg_class WHERE relnamespace = (SELECT OID FROM pg_namespace WHERE nspname = '_' || 'MyCluster') AND relhasindex; </command> ! </para> <sect2><title> Watchdogs: Keeping Slons Running</title>
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Slony1-commit mailing list