From: | Douglas McNaught <doug(at)mcnaught(dot)org> |
---|---|
To: | Brad Nicholson <bnichols(at)ca(dot)afilias(dot)info> |
Cc: | pgsql-general <pgsql-general(at)postgresql(dot)org> |
Subject: | Re: Dynamically Allocated System Resources |
Date: | 2007-05-01 18:26:24 |
Message-ID: | 87zm4oqu27.fsf@suzuka.mcnaught.org |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-general |
Brad Nicholson <bnichols(at)ca(dot)afilias(dot)info> writes:
> Running PG8.1 - will it recognize CPU and memory that are added
> dynamically to the server when the postmaster is running?
Depends somewhat on the OS. If it allows existing processes to be
scheduled on newly added CPUs, then existing backends will be able to
run on them. Newly added memory will be available for private
(per-backend) allocations and (I assume) disk caching by the OS, but
not for addition to the Postgres shared memory pool (since that is all
allocated when the server starts up).
In general, if the OS makes newly added resources available to
existing processes, PG should be able to use them.
-Doug
From | Date | Subject | |
---|---|---|---|
Next Message | Andrej Ricnik-Bay | 2007-05-01 18:29:29 | Re: Dynamically Allocated System Resources |
Previous Message | Michael Glaesemann | 2007-05-01 18:20:53 | Re: CHECK() Constraint on Column Using Lookup Table |