Zum Inhalt springen
Menü
Sie müssen registriert sein, um mit der Community zu interagieren.
Diese Frage wurde gekennzeichnet
4 Antworten
14435 Ansichten

Hello,

I would like to know and share what is the better minimum tuning we could do on postgres to have OpenERP V7 in a production environment ?

Postgresql come with conservative setup by default (like @odony said in his slide at OpenDays ).

Think it could be very helpfull to share and have a default one optimized for OpenERP use.

thanks,

Avatar
Verwerfen
Beste Antwort

Hi Nicolas,

Here is the tunning I apply on my (5) servers  (Debian Wheezy)

  1. create an empty file pg_memory.sh in /root directory and copy/paste the code below :

page_size=`getconf PAGE_SIZE`
phys_pages=`getconf _PHYS_PAGES`
shmall=`expr $phys_pages / 2`
shmmax=`expr $shmall \* $page_size`
echo kernel.shmmax = $shmmax
echo kernel.shmall = $shmall
echo 'Edit /etc/sysctl.conf and apply with : sysctl -p'

  1. as root execute command :

bash pg_memory.sh

  1. As notified in the script, copy/paste the result of  the script in /etc/sysctl.conf and execute command :

sysctl -p

  1. You should now have these  parameters at the end of  sysctl.conf (this is an example):

kernel.shmmax = 2107961344
kernel.shmall = 514639

  1. now install pgtune (apt-get install pgtune)
  2. as root, execute command :

pgtune -i /etc/postgresql/9.1/main/postgresql.conf  -o pgsql.conf

  1. This will duplicate the postgresql.conf and add some parameters at the end of the file.
  2. Just open the new file (/root/pgsql.conf)
  3. Copy/past the end of the file (lines with pgtune wizard as comment) in the real one ( /etc/postgresql/9.1/main/postgresql.conf ) . Backup it first!
  4. Restart the server

Note : change path to postgresql.conf according to your OS/Server

PgTune will set parameters according to your system (OS, HD, Memory, etc).

I always trust pgtune and copy/paste "as is" in postgresql.conf. For now, all my servers are running well.

Hope this helps

Avatar
Verwerfen
Beste Antwort

Dear Thierry Godin,
I have tried tune my postgresql with pg_tune, but still the postgesql is using around 90% of my total cpu(6 core with 1.8Ghz) when taking reports.

Any other solution you have to improve the performance in taking reports like stock valuation ?

Avatar
Verwerfen
Beste Antwort

I think the configuration depends on your installation demands. So far we did not get into any trouble with PostgreSQL, other than VACUUM. The later process will surprise you since once it gets started, it virtually stops the server and affects its performance. But you can get it under control.

Avatar
Verwerfen

BTW, I think you can get started by taking a look at this page:

https://wiki.postgresql.org/wiki/Tuning_Your_PostgreSQL_Server/es

Verknüpfte Beiträge Antworten Ansichten Aktivität
1
März 15
6170
0
Juli 25
219
0
Juli 25
272
1
Juni 25
927
2
Mai 25
1142