Re: What are exactly bootstrap processes, auxiliary processes, standalone backends, normal backends(user sessions)?

Поиск
Список
Период
Сортировка
От Justin Pryzby
Тема Re: What are exactly bootstrap processes, auxiliary processes, standalone backends, normal backends(user sessions)?
Дата
Msg-id 20210715144737.GG20208@telsasoft.com
обсуждение исходный текст
Ответ на What are exactly bootstrap processes, auxiliary processes, standalone backends, normal backends(user sessions)?  (Bharath Rupireddy <bharath.rupireddyforpostgres@gmail.com>)
Ответы Re: What are exactly bootstrap processes, auxiliary processes, standalone backends, normal backends(user sessions)?
Список pgsql-hackers
On Fri, Jul 09, 2021 at 09:24:19PM +0530, Bharath Rupireddy wrote:
> I've always had a hard time distinguishing various types of
> processes/terms used in postgres. I look at the source code every time
> to understand them, yet I don't feel satisfied with my understanding.
> I request any hacker (having a better idea than me) to help me with
> what each different process does and how they are different from each
> other? Of course, I'm clear with normal backends (user sessions), bg
> workers, but the others need a bit more understanding.

It sounds like something that should be in the glossary, which currently refers
to but doesn't define "auxiliary processes".

 * Background writer, checkpointer, WAL writer and archiver run during normal
 * operation.  Startup process and WAL receiver also consume 2 slots, but WAL
 * writer is launched only after startup has exited, so we only need 5 slots.
 */
#define NUM_AUXILIARY_PROCS             5

Bootstrap is run by initdb:
src/bin/initdb/initdb.c:                                 "\"%s\" --boot -x0 %s %s "

Standalone backend is run by --single, right ?

-- 
Justin



В списке pgsql-hackers по дате отправления:

Предыдущее
От: Bruce Momjian
Дата:
Сообщение: Re: storing an explicit nonce
Следующее
От: Andrey Lepikhov
Дата:
Сообщение: Re: Removing unneeded self joins