Обсуждение: Workers in Postgres

Поиск
Список
Период
Сортировка

Workers in Postgres

От
Teja Jakkidi
Дата:
Hello Admin team,

I am new to Postgres and please excuse me if these are silly questions:

1. What is a worker process exactly in Postgres?
2. is max_parallel_workers specific to a session or instance. My max_parallel_workers is set to 8. If it is specific to
instance,does it mean at any point of time I can only see 8 parallel processes despite the number of transactions in
thedb?  
3. Does number of worker process have anything to do with active connections to the database.

I have read the documentation but unable to catch up correctly. Any help from you is appreciated.

Thanks,
J. Teja.


Re: Workers in Postgres

От
"David G. Johnston"
Дата:
On Mon, Jul 25, 2022 at 5:20 PM Teja Jakkidi <teja.jakkidi05@gmail.com> wrote:
Hello Admin team,

I am new to Postgres and please excuse me if these are silly questions:

1. What is a worker process exactly in Postgres?
2. is max_parallel_workers specific to a session or instance. My max_parallel_workers is set to 8. If it is specific to instance, does it mean at any point of time I can only see 8 parallel processes despite the number of transactions in the db?
3. Does number of worker process have anything to do with active connections to the database.

I have read the documentation but unable to catch up correctly. Any help from you is appreciated.


I agree that some improvement here seems warranted. At minimum the setting description should be linking to the main documentation for the feature:


Plus, that chapter seems to only think that these workers are going to be interacted with by people writing custom code, not those wishing to manage a limited system resource in the face of parallelism.

However, the second question is answered by looking at what max_worker_processes say:

"Sets the maximum number of background processes that the system can support."
and
"This parameter can only be set at server start."

Any per-session parameter would usually be changeable within a given session.  This one is a DBA setting to say how many resources are to be consumed by the server.

The nature of the background worker's task determines whether it consumes an available connection slot.  Parallel workers do not as the leader process already has one assigned to it for the team.  See the first link.

David J.





Re: Workers in Postgres

От
Tom Lane
Дата:
Teja Jakkidi <teja.jakkidi05@gmail.com> writes:
> 1. What is a worker process exactly in Postgres?

It's a background process that can be started if the planner decides
that a particular query would benefit from parallelization.  If so,
the original session process (the "leader") cooperates with one or
more temporarily-spawned workers to perform the query.

> 2. is max_parallel_workers specific to a session or instance. My max_parallel_workers is set to 8. If it is specific
toinstance, does it mean at any point of time I can only see 8 parallel processes despite the number of transactions in
thedb?  

Per instance.  There is a different knob max_parallel_workers_per_gather
that gives you some control over how many workers a given leader will
try to use.

Before you say "oh, I've got max_connections set to 100, so I'd better
raise max_parallel_workers to a few hundred" ... don't do that unless
you've got a few hundred CPUs in the machine.  While session processes
might be sitting around doing nothing much except waiting for the next
query, workers generally are busy throughout their lifespan.  So it's
counterproductive for max_parallel_workers to be more than roughly the
number of available CPUs --- setting it higher just encourages the
system to create parallel workers that it can't use effectively.

> 3. Does number of worker process have anything to do with active connections to the database.

See above.

            regards, tom lane