710 Datenbankeinstellungen und Tuning (postgresql conf) » Historie » Version 55
[S] Dominik G, 04.09.2018 15:35
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 | 25 | [E] Oleg G | Datei-Pfad: *H:\PostgreSQL\9.6\data\pg96\postgresql.conf* |
7 | |||
8 | 54 | [S] Philipp K | |
9 | 1 | [X] Daniel S | h2. Konfiguration PostgreSQL (Beachte Betriebssystem) ab Version 9.3 |
10 | 26 | [S] Philipp K | |
11 | 54 | [S] Philipp K | |
12 | 51 | [X] Daniel S | Beachte Programm-Start-Prüfung PRODAT: #9933 |
13 | |||
14 | 1 | [X] Daniel S | @shared_buffers = 1024MB@ |
15 | @temp_buffers = 8MB@ |
||
16 | @work_mem = 16MB@ (nicht zu hoch, da je sort bzw. hash Operation, auch mehrfach bei komplexen queries) |
||
17 | @maintenance_work_mem = 512MB@ (für VACUUM, CREATE INDEX, and ALTER TABLE ADD FOREIGN KEY, außerdem für restore dumps) |
||
18 | 49 | [S] Philipp K | @dynamic_shared_memory_type = windows@ |
19 | 1 | [X] Daniel S | |
20 | 49 | [S] Philipp K | @max_worker_processes = 8@ > Default ist 8 (keine Änderung nötig). Je nach Unternehmensgröße mehr |
21 | @max_parallel_workers_per_gather = 4@ |
||
22 | 1 | [X] Daniel S | |
23 | |||
24 | 49 | [S] Philipp K | @fsync = off@ |
25 | @synchronous_commit = off@ |
||
26 | 45 | [X] Richard H | @wal_compression = on@ |
27 | 44 | [X] Richard H | @wal_buffers = -1@ (bis 9.3 8MB) |
28 | 1 | [X] Daniel S | @max_wal_size = 3GB@ (ab 9.6 Ersatz für checkpoint_segments3 * checkpoint_segments) * 16MB ) |
29 | |||
30 | 54 | [S] Philipp K | @effective_cache_size = 2048MB@ (Beachte, wenn Server nur für PRODAT dann 3/4 des Arbeitsspeichers, wenn auch andere Programme dort laufen dann 1/2 Arbeitsspeicher) |
31 | 1 | [X] Daniel S | |
32 | @default_statistics_target = 1000@ |
||
33 | 38 | [X] Daniel S | |
34 | 54 | [S] Philipp K | @seq_page_cost = 2.0@ (mache Sequentielles abareiten "teurer": Der Planer ist eher geneigt den IndexFile zu nutzen) |
35 | @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) |
||
36 | 47 | [S] Philipp K | |
37 | 1 | [X] Daniel S | @log_destination = 'eventlog'@ (unter Windows) |
38 | 55 | [S] Dominik G | |
39 | @#log_checkpoints = off # default off@ (auf Default setzen) |
||
40 | @#log_autovacuum_min_duration = -1 # default -1@ (auf Default setzen) |
||
41 | 1 | [X] Daniel S | |
42 | 46 | [E] Oleg G | @search_path = '"$user",public,TSystem,prodat_languages,Z_99_Deprecated'@ |
43 | 1 | [X] Daniel S | |
44 | @datestyle = 'iso, dmy'@ |
||
45 | |||
46 | @standard_conforming_strings = off@ (siehe #4860) |
||
47 | |||
48 | 54 | [S] Philipp K | @lc_messages = 'en_US.UTF-8'@ (Das muß sein, da wir die Fehlermeldungen teilweise parsen und somit auf die Fehler-Strings gehen.) |
49 | 1 | [X] Daniel S | |
50 | @log_line_prefix = '<%u@@@%d-%t> '@ |
||
51 | |||
52 | @lc_?@ |
||
53 | 40 | [X] Daniel S | |
54 | 49 | [S] Philipp K | {{collapse(Alte Versionen:) |
55 | <pre><code class="sql"> |
||
56 | @# checkpoint_segments = 64 # in 9.6 nicht supported@ |
||
57 | </code></pre> |
||
58 | }} |
||
59 | 1 | [X] Daniel S | |
60 | |||
61 | 34 | [X] Daniel S | -Bis Prodat 11.5.3 @statement_timeout=120000@- |
62 | |||
63 | h2. Linux |
||
64 | |||
65 | {{collapse(Linux) |
||
66 | |||
67 | h3. Betriebssystem - Speichereinstellungen mind. 3GiB Arbeitsspeicher! |
||
68 | |||
69 | * standard: |
||
70 | sysctl kernel.shmmax |
||
71 | kernel.shmmax = 33554432 |
||
72 | |||
73 | * umsetzen auf 280437720 (256MB, Mindestens, LOLL steht auf 1024MB (8GB Ram)) (On Windows the useful range is 64MB to 512MB) |
||
74 | /etc/sysctl.conf -> zeile aufnehmen: kernel.shmmax=280437720 |
||
75 | reboot |
||
76 | |||
77 | h3. Nur auf Systemen mit 3GiB+ RAM anzuwenden |
||
78 | |||
79 | @$ free -m@ |
||
80 | <pre> |
||
81 | total used free shared buffers cached |
||
82 | Mem: 3018 1516 1501 0 208 1113 |
||
83 | -/+ buffers/cache: 194 2823 |
||
84 | Swap: 1023 0 1023 |
||
85 | </pre> |
||
86 | |||
87 | |||
88 | h3. Weiteres |
||
89 | |||
90 | Unter Linux ist noch die shmmax-Option aus der 99-postgresql.conf via sysctl zu setzen, sonst klappert das da. |
||
91 | http://www.postgresql.org/docs/8.2/static/kernel-resources.html |
||
92 | |||
93 | }} |
||
94 | 1 | [X] Daniel S | |
95 | 19 | [S] Dominik G | |
96 | 14 | [S] Dominik G | Könnte durchaus noch weiter getrieben werden, indem man Sie auf die Prodat-DB abstimmt: |
97 | 13 | [S] Dominik G | * http://wiki.postgresql.org/wiki/Tuning_Your_PostgreSQL_Server |
98 | 11 | [X] Daniel S | * http://www.postgresql.org/docs/current/static/performance-tips.html |
99 | 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 |
100 | |||
101 | 19 | [S] Dominik G | |
102 | *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. |
||
103 | 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) |
||
104 | 11 | [X] Daniel S | |
105 | 12 | [X] Daniel S | |
106 | 13 | [S] Dominik G | h2. Virtualisierung |
107 | 12 | [X] Daniel S | |
108 | 13 | [S] Dominik G | "Database_Virtualization_PG_China.pdf":http://www.prodat-sql.de/redmine/attachments/download/2568/Database_Virtualization_PG_China.pdf |