Re: how many changes about backend mode from 7.2.2 to 8.4.0?

From: 土卜皿 <pengcz(dot)nwpu(at)gmail(dot)com>
To: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
Cc: Michael Paquier <michael(dot)paquier(at)gmail(dot)com>, PostgreSQL mailing lists <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: how many changes about backend mode from 7.2.2 to 8.4.0?
Date: 2014-07-11 03:03:02
Message-ID: CADT5_185YL9aZ2gqYNP1J_RYFxPSABPUj+-A34BBybLawwXG=Q@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

hi, tom
thank you very much! this is what I wanted!

Dillon

2014-07-11 10:59 GMT+08:00 Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>:

> =?UTF-8?B?5Zyf5Y2c55q/?= <pengcz(dot)nwpu(at)gmail(dot)com> writes:
> > I am sorry, maybe I should make my question clearer, I only want to know,
> > in 8.4.0 or newer version,
> > whether I can debug posgres in the bare backend mode (in
> usingddd-postgres
> > <http://www-inst.eecs.berkeley.edu/~cs186/fa04/usingddd.pdf>, he said
> that "
> > There are two ways to debug postgres (a) in the interactive mode and (b)
> in
> > the bare backend mode"
>
> Yeah, that still works as well or poorly as it ever did, though the
> startup process is a bit different: you need to say "postgres --single"
> to launch a standalone backend.
>
> But really, nobody does it that way anymore. There is no advantage to it,
> unless maybe you're trying to debug a startup-time crash. The standalone
> backend interface is very unpleasant to use compared to psql: no readline
> command editing, no nice formatting of output, no tab completion or help,
> etc etc. For debugging of normal query operation it's far better to fire
> up a psql session and then gdb the connected backend process.
>
> There's more info here:
> https://wiki.postgresql.org/wiki/Developer_FAQ#gdb
>
> and if gdb isn't giving you useful symbolic information, see
> the setup tips here:
>
> https://wiki.postgresql.org/wiki/Getting_a_stack_trace_of_a_running_PostgreSQL_backend_on_Linux/BSD
>
> regards, tom lane
>

In response to

Browse pgsql-hackers by date

  From Date Subject
Next Message Bruce Momjian 2014-07-11 03:18:52 Re: Pg_upgrade and toast tables bug discovered
Previous Message Tom Lane 2014-07-11 02:59:07 Re: how many changes about backend mode from 7.2.2 to 8.4.0?