710 Datenbankeinstellungen und Tuning (postgresql conf) » Historie » Version 25
[E] Oleg G, 29.09.2017 14:38
1 | 1 | [X] Daniel S | h1. Datenbankeinstellungen und Tuning |
---|---|---|---|
2 | |||
3 | 23 | [E] Oleg G | @postgresql.conf@ ([[PostgreSQL Netzwerkkonfiguration (pg_hba.conf)]]) |
4 | 1 | [X] Daniel S | |
5 | 25 | [E] Oleg G | Datei-Pfad: *H:\PostgreSQL\9.6\data\pg96\postgresql.conf* |
6 | |||
7 | 13 | [S] Dominik G | h2. Linux |
8 | 1 | [X] Daniel S | |
9 | 21 | [E] Oleg G | {{collapse(Linux) |
10 | 1 | [X] Daniel S | |
11 | 24 | [E] Oleg G | h3. Betriebssystem - Speichereinstellungen mind. 3GiB Arbeitsspeicher! |
12 | |||
13 | 13 | [S] Dominik G | * standard: |
14 | 1 | [X] Daniel S | sysctl kernel.shmmax |
15 | kernel.shmmax = 33554432 |
||
16 | |||
17 | 13 | [S] Dominik G | * umsetzen auf 280437720 (256MB, Mindestens, LOLL steht auf 1024MB (8GB Ram)) (On Windows the useful range is 64MB to 512MB) |
18 | 1 | [X] Daniel S | /etc/sysctl.conf -> zeile aufnehmen: kernel.shmmax=280437720 |
19 | reboot |
||
20 | |||
21 | 19 | [S] Dominik G | h3. Nur auf Systemen mit 3GiB+ RAM anzuwenden |
22 | |||
23 | 13 | [S] Dominik G | @$ free -m@ |
24 | <pre> |
||
25 | total used free shared buffers cached |
||
26 | Mem: 3018 1516 1501 0 208 1113 |
||
27 | -/+ buffers/cache: 194 2823 |
||
28 | Swap: 1023 0 1023 |
||
29 | 1 | [X] Daniel S | </pre> |
30 | |||
31 | |||
32 | 19 | [S] Dominik G | h3. Weiteres |
33 | |||
34 | 13 | [S] Dominik G | Unter Linux ist noch die shmmax-Option aus der 99-postgresql.conf via sysctl zu setzen, sonst klappert das da. |
35 | 1 | [X] Daniel S | http://www.postgresql.org/docs/8.2/static/kernel-resources.html |
36 | |||
37 | 21 | [E] Oleg G | }} |
38 | 1 | [X] Daniel S | |
39 | 13 | [S] Dominik G | h2. Konfiguration PostgreSQL (Beachte Betriebssystem) |
40 | 1 | [X] Daniel S | |
41 | 13 | [S] Dominik G | @shared_buffers = 1024MB@ |
42 | @temp_buffers = 8MB@ |
||
43 | 1 | [X] Daniel S | @work_mem = 16MB@ (nicht zu hoch, da je sort bzw. hash Operation, auch mehrfach bei komplexen queries) |
44 | 18 | [S] Dominik G | @maintenance_work_mem = 512MB@ (für VACUUM, CREATE INDEX, and ALTER TABLE ADD FOREIGN KEY, außerdem für restore dumps) |
45 | 1 | [X] Daniel S | |
46 | @fsync = off@ |
||
47 | 10 | [X] Daniel S | @synchronous_commit = off@ |
48 | 1 | [X] Daniel S | @wal_buffers = 8MB@ (@-1@ ab 9.3 "-1 sets based on shared_buffers") |
49 | @checkpoint_segments = 64@ |
||
50 | 18 | [S] Dominik G | |
51 | 19 | [S] Dominik G | @effective_cache_size = 2048MB@ (Beachte 1/2 Arbeitsspeicher) |
52 | |||
53 | 1 | [X] Daniel S | @default_statistics_target = 1000@ |
54 | |||
55 | 20 | [S] Dominik G | @cursor_tuple_fraction = 0.75@ (siehe #6436) |
56 | 19 | [S] Dominik G | |
57 | 16 | [S] Dominik G | @log_destination = 'eventlog'@ (unter Windows) |
58 | 13 | [S] Dominik G | |
59 | 1 | [X] Daniel S | @search_path = '"$user",public,TSystem'@ |
60 | 11 | [X] Daniel S | |
61 | 19 | [S] Dominik G | @datestyle = 'iso, dmy'@ |
62 | 15 | [S] Dominik G | |
63 | 19 | [S] Dominik G | @standard_conforming_strings = off@ (siehe #4860) |
64 | 15 | [S] Dominik G | |
65 | 19 | [S] Dominik G | |
66 | 22 | [E] Oleg G | -Bis Prodat 11.5.3 @statement_timeout=120000@- |
67 | 1 | [X] Daniel S | |
68 | 19 | [S] Dominik G | |
69 | 14 | [S] Dominik G | Könnte durchaus noch weiter getrieben werden, indem man Sie auf die Prodat-DB abstimmt: |
70 | 13 | [S] Dominik G | * http://wiki.postgresql.org/wiki/Tuning_Your_PostgreSQL_Server |
71 | 11 | [X] Daniel S | * http://www.postgresql.org/docs/current/static/performance-tips.html |
72 | 13 | [S] Dominik G | * "five_steps_perform_2009.pdf":http://www.prodat-sql.de/redmine/attachments/download/2528/five_steps_perform_2009.pdf Dokument über Einstellungen etc |
73 | |||
74 | 19 | [S] Dominik G | |
75 | *Hinweis:* Fehler im PgAdmin/Server-Status: ungültige Byte-Sequenz für Kodierung "UTF8" ... durch SELECT pg_file_read('pg_log/... kann ignoriert werden, da wir ja ins eventlog schreiben. |
||
76 | Die Anzeige vom Log hier einfach schließen. Liegt an LC_MESSAGES und mehrsprachigen Systemen, vermutlich ein Bug, Workaround LC_MESSAGES='C' (evtl. nicht mit Prodat kompatibel) |
||
77 | 11 | [X] Daniel S | |
78 | 12 | [X] Daniel S | |
79 | 13 | [S] Dominik G | h2. Virtualisierung |
80 | 12 | [X] Daniel S | |
81 | 13 | [S] Dominik G | "Database_Virtualization_PG_China.pdf":http://www.prodat-sql.de/redmine/attachments/download/2568/Database_Virtualization_PG_China.pdf |