Re: PostgreSQL Performance Tuning / Postgresql.conf and on OS Level

From: "Kevin Grittner" <kgrittn(at)mail(dot)com>
To: "Shams Khan" <shams(dot)khan22(at)gmail(dot)com>
Cc: pgsql-admin(at)postgresql(dot)org
Subject: Re: PostgreSQL Performance Tuning / Postgresql.conf and on OS Level
Date: 2012-12-17 13:08:31
Message-ID: 20121217130831.14720@gmx.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-admin

Shams Khan wrote:

> Question 1. How do we correlate our memory with kernel parameters, I mean
> to say is there any connection between shared_buffer and kernel SHMMAX. For
> example if I define my shared buffer more than my current SHMMAX value, it
> would not allow me to use that ??or vice versa. Please throw some light.

If SHMMAX is not large enough to allow the PostgreSQL service to
acquire the amount of shared memory it needs based on your
configuration settings, the PostgreSQL server will log an error and
fail to start. Please see the docs for more information:

http://www.postgresql.org/docs/current/static/kernel-resources.html

> Questions 2. I want to show the last result of last query before and after
> changing the parameters, I found performance was degraded.

>  Total runtime: 142.812 ms

>  Total runtime: 145.127 ms

The plan didn't change and the times were different by less than
2%. There can easily be that much variation from one run to the
next. If you try the same query many times (say, 10 or more) with
each configuration and it is consistently faster with one than the
other, then you will have pretty good evidence which configuration
is better for that particular query. If the same configuration wins
in general, use it.

Since performance differences which are that small are often caused
by very obscure issues, it can be very difficult to pin down the
reason. It's generally not anything to fret over.

-Kevin

Responses

Browse pgsql-admin by date

  From Date Subject
Next Message Baptiste LHOSTE 2012-12-17 15:57:35 [Autovacuum] Issue to understand some logs
Previous Message Shams Khan 2012-12-17 11:55:51 Re: PostgreSQL Performance Tuning / Postgresql.conf and on OS Level