710 Datenbankeinstellungen und Tuning (postgresql conf) » Historie » Version 66
[E] Frank S, 11.04.2019 18:20
1 | 42 | [X] Daniel S | h1. postgresql.conf: Datenbankeinstellungen und Tuning |
---|---|---|---|
2 | 1 | [X] Daniel S | |
3 | 26 | [S] Philipp K | |
4 | 23 | [E] Oleg G | @postgresql.conf@ ([[PostgreSQL Netzwerkkonfiguration (pg_hba.conf)]]) |
5 | 1 | [X] Daniel S | |
6 | 56 | [S] Dominik G | Datei-Pfad: *..\PostgreSQL\9.6\data\pg96\postgresql.conf* |
7 | 25 | [E] Oleg G | |
8 | 58 | [S] Philipp K | h2. Prüfen der wichtigsten Postgreseinstellungen mittels Datenbankfunktion |
9 | |||
10 | 65 | [E] Frank S | Die Funktionen heißen @TSystem.database_settings__initialize()@ und @TSystem.database_settings__validate()@ und muss bei Neuerungen entsprechend angepasst oder erweitert werden. |
11 | 54 | [S] Philipp K | |
12 | 1 | [X] Daniel S | h2. Konfiguration PostgreSQL (Beachte Betriebssystem) ab Version 9.3 |
13 | 54 | [S] Philipp K | |
14 | 51 | [X] Daniel S | Beachte Programm-Start-Prüfung PRODAT: #9933 |
15 | 60 | [S] Philipp K | Für ein 16GB RAM System |
16 | @shared_buffers = 4096MB@ Daumenregel: ca 1/4 Des RAMs den Rest für effective_cache_size |
||
17 | 1 | [X] Daniel S | @temp_buffers = 8MB@ |
18 | 66 | [E] Frank S | ° @work_mem = 32MB@ (nicht zu hoch, da je sort bzw. hash Operation, auch mehrfach bei komplexen queries) |
19 | 1 | [X] Daniel S | @maintenance_work_mem = 512MB@ (für VACUUM, CREATE INDEX, and ALTER TABLE ADD FOREIGN KEY, außerdem für restore dumps) |
20 | 49 | [S] Philipp K | @dynamic_shared_memory_type = windows@ |
21 | 1 | [X] Daniel S | |
22 | 49 | [S] Philipp K | @max_worker_processes = 8@ > Default ist 8 (keine Änderung nötig). Je nach Unternehmensgröße mehr |
23 | 66 | [E] Frank S | ° @max_parallel_workers_per_gather = 4@ |
24 | 1 | [X] Daniel S | |
25 | 49 | [S] Philipp K | @fsync = off@ |
26 | @synchronous_commit = off@ |
||
27 | 45 | [X] Richard H | @wal_compression = on@ |
28 | 44 | [X] Richard H | @wal_buffers = -1@ (bis 9.3 8MB) |
29 | 1 | [X] Daniel S | @max_wal_size = 3GB@ (ab 9.6 Ersatz für checkpoint_segments3 * checkpoint_segments) * 16MB ) |
30 | |||
31 | 66 | [E] Frank S | ° @max_locks_per_transaction = 128@ |
32 | 62 | [X] Daniel S | |
33 | 60 | [S] Philipp K | @effective_cache_size = 12288MB@ (Beachte, wenn Server nur für PRODAT dann 3/4 des Arbeitsspeichers, wenn auch andere Programme dort laufen dann 1/2 Arbeitsspeicher. Gibt an wieviel RAM-Cache Postgressql erwarten kann, für Indizies usw) |
34 | 1 | [X] Daniel S | |
35 | @default_statistics_target = 1000@ |
||
36 | 38 | [X] Daniel S | |
37 | 66 | [E] Frank S | ° @seq_page_cost = 2.0@ (Mache sequentielle Scans "teurer": Der Planer ist eher geneigt, den Index zu nutzen) |
38 | ° @cursor_tuple_fraction = 0.75@ (siehe #6436) (Steuert, dass das CURSOR-FETCH (F2-Fenster) anders errechnet wird und es Blöcke früher zurückgibt) |
||
39 | 47 | [S] Philipp K | |
40 | 1 | [X] Daniel S | @log_destination = 'eventlog'@ (unter Windows) |
41 | 55 | [S] Dominik G | @#log_checkpoints = off # default off@ (auf Default setzen) |
42 | 56 | [S] Dominik G | @log_line_prefix = '<%u@@@%d-%t> '@ |
43 | 66 | [E] Frank S | ° @log_autovacuum_min_duration = 250ms # default -1@ (auf Default setzen) > alles was länger 250ms dauert loggen und bei Gelegnheit prüfen |
44 | 1 | [X] Daniel S | |
45 | 46 | [E] Oleg G | @search_path = '"$user",public,TSystem,prodat_languages,Z_99_Deprecated'@ |
46 | 1 | [X] Daniel S | |
47 | @datestyle = 'iso, dmy'@ |
||
48 | |||
49 | @standard_conforming_strings = off@ (siehe #4860) |
||
50 | |||
51 | 66 | [E] Frank S | ° @lc_messages = 'en_US.UTF-8'@ (Das muß sein, da wir die Fehlermeldungen teilweise parsen und somit auf die Fehler-Strings gehen.) |
52 | 1 | [X] Daniel S | |
53 | @lc_monetary = 'German_Germany.1252'@ (Lokale je nach Land) |
||
54 | @lc_numeric = 'German_Germany.1252'@ |
||
55 | 56 | [S] Dominik G | @lc_time = 'German_Germany.1252'@ |
56 | |||
57 | {{collapse(Alte Versionen:) |
||
58 | 1 | [X] Daniel S | @checkpoint_segments = 64 # in 9.6 nicht supported@ |
59 | 66 | [E] Frank S | ° @statement_timeout = 120000@ Bis Prodat 11.5.3@ wird clientseitig im Prodat gesetzt (480000 und für AppServer/Admins 1200000) |
60 | 49 | [S] Philipp K | }} |
61 | 66 | [E] Frank S | |
62 | !!! "°" für einige Werte gibt es Vortaben in Client-Sessions |
||
63 | !!! siehe @TSystem.database_settings__initialize@ und @TSystem.database_settings__validate@ (PSQL\0050 System\010 Functions TSystem.sql) |
||
64 | 1 | [X] Daniel S | |
65 | 57 | [S] Dominik G | h2. Reload |
66 | |||
67 | Konfiguration im laufenden Betrieb neu laden. |
||
68 | @..\PostgreSQL\pg96\bin\pg_ctl reload -D ..\PostgreSQL\data\pg96@ |
||
69 | |||
70 | 34 | [X] Daniel S | |
71 | h2. Linux |
||
72 | |||
73 | {{collapse(Linux) |
||
74 | |||
75 | h3. Betriebssystem - Speichereinstellungen mind. 3GiB Arbeitsspeicher! |
||
76 | |||
77 | * standard: |
||
78 | sysctl kernel.shmmax |
||
79 | kernel.shmmax = 33554432 |
||
80 | |||
81 | * umsetzen auf 280437720 (256MB, Mindestens, LOLL steht auf 1024MB (8GB Ram)) (On Windows the useful range is 64MB to 512MB) |
||
82 | /etc/sysctl.conf -> zeile aufnehmen: kernel.shmmax=280437720 |
||
83 | reboot |
||
84 | |||
85 | h3. Nur auf Systemen mit 3GiB+ RAM anzuwenden |
||
86 | |||
87 | @$ free -m@ |
||
88 | <pre> |
||
89 | total used free shared buffers cached |
||
90 | Mem: 3018 1516 1501 0 208 1113 |
||
91 | -/+ buffers/cache: 194 2823 |
||
92 | Swap: 1023 0 1023 |
||
93 | </pre> |
||
94 | |||
95 | |||
96 | h3. Weiteres |
||
97 | |||
98 | Unter Linux ist noch die shmmax-Option aus der 99-postgresql.conf via sysctl zu setzen, sonst klappert das da. |
||
99 | http://www.postgresql.org/docs/8.2/static/kernel-resources.html |
||
100 | |||
101 | }} |
||
102 | 1 | [X] Daniel S | |
103 | 19 | [S] Dominik G | |
104 | 14 | [S] Dominik G | Könnte durchaus noch weiter getrieben werden, indem man Sie auf die Prodat-DB abstimmt: |
105 | 13 | [S] Dominik G | * http://wiki.postgresql.org/wiki/Tuning_Your_PostgreSQL_Server |
106 | 11 | [X] Daniel S | * http://www.postgresql.org/docs/current/static/performance-tips.html |
107 | 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 |
108 | |||
109 | 19 | [S] Dominik G | |
110 | *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. |
||
111 | 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) |
||
112 | 11 | [X] Daniel S | |
113 | 12 | [X] Daniel S | |
114 | 13 | [S] Dominik G | h2. Virtualisierung |
115 | 12 | [X] Daniel S | |
116 | 13 | [S] Dominik G | "Database_Virtualization_PG_China.pdf":http://www.prodat-sql.de/redmine/attachments/download/2568/Database_Virtualization_PG_China.pdf |