Re: postmaster/postgres options assimilation plan

From: Bruce Momjian <pgman(at)candle(dot)pha(dot)pa(dot)us>
To: Peter Eisentraut <peter_e(at)gmx(dot)net>
Cc: pgsql-hackers(at)postgresql(dot)org
Subject: Re: postmaster/postgres options assimilation plan
Date: 2006-01-05 16:04:14
Message-ID: 200601051604.k05G4E719608@candle.pha.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers


FYI, with the options merged, we still have this TODO item:

* %Remove behavior of postmaster -o

---------------------------------------------------------------------------

Peter Eisentraut wrote:
> Here's the plan for assimilating the command-line options of the postmaster
> and postgres options. I reported earlier on a couple of conflict areas; here
> is the full plan:
>
> * Remove: postmaster -a -b -m -M
>
> These options have done nothing forever.
>
> * postmaster options added to postgres: -h -i -k -l -n
>
> These options will not have any useful effects, but their behavior is
> consistent if you do, say, SHOW listen_addresses.
>
> * postgres options added to postmaster: -e -E -f -O -P -t -W
>
> Using -E with postmaster does nothing, though.
>
> * Renamed options (because of conflicts):
>
> postgres -N is now postgres -j (mostly internal use)
>
> postgres -o is now postgres -r (mostly internal use)
>
> (postmaster -o is obsolete but still works for compatibility; postgres -o will
> get you an error.)
>
> postgres -p is now postgres -y (internal use only)
>
> postmaster -S now sets work_mem, like postgres -S does. The (deprecated)
> silent mode can be obtained using the long option --silent-mode=on.
>
> postmaster -s is now postmaster -T (expert/hacker use only)
>
>
> For the options -O, -P, and -W I have added three new GUC variables
> allow_system_table_mods (PGC_SIGHUP), ignore_system_indexes (PGC_BACKEND),
> connection_startup_delay (PGC_BACKEND); mostly to simplify the
> postmaster->postgres communication.
>
> Except for a few odd exceptions, all command line arguments now map to setting
> a GUC variable.
>
> Comments?
>
> ---------------------------(end of broadcast)---------------------------
> TIP 2: Don't 'kill -9' the postmaster
>

--
Bruce Momjian | http://candle.pha.pa.us
pgman(at)candle(dot)pha(dot)pa(dot)us | (610) 359-1001
+ If your life is a hard drive, | 13 Roberts Road
+ Christ can be your backup. | Newtown Square, Pennsylvania 19073

In response to

Browse pgsql-hackers by date

  From Date Subject
Next Message Bruce Momjian 2006-01-05 17:22:28 Re: [Bizgres-general] WAL bypass for INSERT, UPDATE and
Previous Message Tom Lane 2006-01-05 15:54:44 Re: nicer error out in initdb?