1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
|
<chapter id="signals">
<DocInfo>
<AuthorGroup>
<Author>
<FirstName>Massimo</FirstName>
<Surname>Dal Zotto</Surname>
</Author>
</AuthorGroup>
<Date>Transcribed 1998-10-16</Date>
</DocInfo>
<title><productname>Postgres</productname> Signals</title>
<Para>
<Note>
<Para>
Contributed by <ULink url="mailto:dz@cs.unitn.it">Massimo Dal Zotto</ULink>
</Para>
</Note>
</para>
<para>
<productname>Postgres</productname> uses the following signals for
communication between the postmaster and backends:
</para>
<para>
<table tocentry="1">
<title><productname>Postgres</productname> Signals</title>
<titleabbrev>Signals</titleabbrev>
<tgroup cols="2">
<thead>
<row>
<entry>
Signal
</entry>
<entry>
<application>postmaster</application> Action
</entry>
<entry>
Server Action
</entry>
</row>
</thead>
<tbody>
<row>
<entry>
SIGHUP
</entry>
<entry>
kill(*,sighup)
</entry>
<entry>
read_pg_options
</entry>
</row>
<row>
<entry>
SIGINT
</entry>
<entry>
die
</entry>
<entry>
cancel query
</entry>
</row>
<row>
<entry>
SIGQUIT
</entry>
<entry>
kill(*,sigterm)
</entry>
<entry>
handle_warn
</entry>
</row>
<row>
<entry>
SIGTERM
</entry>
<entry>
kill(*,sigterm), kill(*,9), die
</entry>
<entry>
die
</entry>
</row>
<row>
<entry>
SIGPIPE
</entry>
<entry>
ignored
</entry>
<entry>
die
</entry>
</row>
<row>
<entry>
SIGUSR1
</entry>
<entry>
kill(*,sigusr1), die
</entry>
<entry>
quickdie
</entry>
</row>
<row>
<entry>
SIGUSR2
</entry>
<entry>
kill(*,sigusr2)
</entry>
<entry>
async notify (SI flush)
</entry>
</row>
<row>
<entry>
SIGCHLD
</entry>
<entry>
reaper
</entry>
<entry>
ignored (alive test)
</entry>
</row>
<row>
<entry>
SIGTTIN
</entry>
<entry>
ignored
</entry>
<entry>
</entry>
</row>
<row>
<entry>
SIGTTOU
</entry>
<entry>
ignored
</entry>
<entry>
</entry>
</row>
<row>
<entry>
SIGCONT
</entry>
<entry>
dumpstatus
</entry>
<entry>
</entry>
</row>
<row>
<entry>
SIGFPE
</entry>
<entry>
</entry>
<entry>
FloatExceptionHandler
</entry>
</row>
</tbody>
</tgroup>
</table>
<note>
<para>
<quote>kill(*,signal)</quote> means sending a signal to all backends.
</para>
</note>
</para>
<para>
The main changes to the old signal handling are the use of SIGQUIT instead
of SIGHUP to handle warns, SIGHUP to re-read the pg_options file and the
redirection to all active backends of SIGHUP, SIGTERM, SIGUSR1 and SIGUSR2
sent to the postmaster.
In this way these signals sent to the postmaster can be sent
automatically to all the backends without need to know their pids.
To shut down postgres one needs only to send a SIGTERM to postmaster
and it will stop automatically all the backends.
</para>
<para>
The SIGUSR2 signal is also used to prevent SI cache table overflow
which happens when some backend doesn't process SI cache for a long period.
When a backend detects the SI table full at 70% it simply sends a signal
to the postmaster which will wake up all idle backends and make them flush
the cache.
</para>
<para>
The typical use of signals by programmers could be the following:
<programlisting>
# stop postgres
kill -TERM $postmaster_pid
</programlisting>
<programlisting>
# kill all the backends
kill -QUIT $postmaster_pid
</programlisting>
<programlisting>
# kill only the postmaster
kill -INT $postmaster_pid
</programlisting>
<programlisting>
# change pg_options
cat new_pg_options > $DATA_DIR/pg_options
kill -HUP $postmaster_pid
</programlisting>
<programlisting>
# change pg_options only for a backend
cat new_pg_options > $DATA_DIR/pg_options
kill -HUP $backend_pid
cat old_pg_options > $DATA_DIR/pg_options
</programlisting>
</para>
</chapter>
|