Re: [PERFORM] Can we activate WAL runtime?

From: Craig Ringer <craig(at)postnewspapers(dot)com(dot)au>
To: prakash <prakash(dot)kadam(at)gmail(dot)com>
Cc: pgsql-sql(at)postgresql(dot)org
Subject: Re: [PERFORM] Can we activate WAL runtime?
Date: 2008-11-11 03:28:14
Message-ID: 4918FBCE.4070206@postnewspapers.com.au
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

prakash wrote:
> Hi All, I am using postgres 8.2. I want to use Write Ahead Log (WAL)
> functionality to take a back up. I know one way to activate WAL is through
> updating postgres.conf file with archive_command. but how do I activate it on
> the server command line? Can we activate it runtime?

You may be able to reload the server (/etc/init.d/postgresql reload or
pg_ctl reload) to activate WAL archiving. However, this thread suggests
that it is, or was, only at server restart:

http://www.nabble.com/Enabling-archive_mode-without-restart-td20267884.html

It appears to depend on version, in that there are suggestions that in
8.2 (which you're using) it can be set during a reload. There may be
reasons why that was removed, though, so I wouldn't do anything without
at least testing on a spare machine - and preferably without waiting for
someone with a clue to chime in here.

Hmm, like Tom Lane did in that thread referenced above:

"... and affects a whole bunch of other behaviors too, in processes all
across the database that could not possibly adopt a new setting
synchronously. That's exactly why it was made a postmaster-start option
to begin with. Simon's given no argument at all why it would be safe to
flip it on-the-fly."

Again, though, that may be new in 8.3, I really would wait for some
confirmation.

--
Craig Ringer

In response to

Browse pgsql-sql by date

  From Date Subject
Next Message Mario Splivalo 2008-11-11 11:17:08 Re: Using UTF strings in pg8.3 - storing hexadecimal values in bytea columns
Previous Message Scott Marlowe 2008-11-10 23:37:29 Re: Measuring degredation of CLUSTER INDEX operation