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
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
|
=encoding utf-8
=head1 NAME
ngx_stream_upstream_hc_module - Module ngx_stream_upstream_hc_module
=head1
The C<ngx_stream_upstream_hc_module> module (1.9.0)
allows enabling periodic health checks of the servers in a
L<group|ngx_stream_upstream_module>.
The server group must reside in the
L<shared memory|ngx_stream_upstream_module>.
If a health check fails, the server will be considered unhealthy.
If several health checks are defined for the same group of servers,
a single failure of any check will make the corresponding server be
considered unhealthy.
Client connections are not passed to unhealthy servers
and servers in the “checking” state.
B<NOTE>
This module is available as part of our
commercial subscription.
=head1 Example Configuration
upstream tcp {
zone upstream_tcp 64k;
server backend1.example.com:12345 weight=5;
server backend2.example.com:12345 fail_timeout=5s slow_start=30s;
server 192.0.2.1:12345 max_fails=3;
server backup1.example.com:12345 backup;
server backup2.example.com:12345 backup;
}
server {
listen 12346;
proxy_pass tcp;
health_check;
}
With this configuration, nginx
will check the ability to establish a TCP connection to each server
in the C<tcp> group every five seconds.
When a connection to the server cannot be established,
the health check will fail, and the server will
be considered unhealthy.
Health checks can be configured for the UDP protocol:
upstream dns_upstream {
zone dns_zone 64k;
server dns1.example.com:53;
server dns2.example.com:53;
server dns3.example.com:53;
}
server {
listen 53 udp;
proxy_pass dns_upstream;
health_check udp;
}
In this case, the absence of
ICMP “C<Destination Unreachable>” message is expected
in reply to the sent string “C<nginx health check>”.
Health checks can also be configured to test data obtained from the server.
Tests are configured separately using the L</match> directive
and referenced in the C<match> parameter
of the L</health_check> directive.
=head1 Directives
=head2 health_check
B<syntax:> health_check I<[I<C<parameters>>]>
B<context:> I<server>
Enables periodic health checks of the servers in a
L<group|ngx_stream_upstream_module>.
The following optional parameters are supported:
=over
=item
C<interval>=I<C<time>>
sets the interval between two consecutive health checks,
by default, 5 seconds.
=item
C<jitter>=I<C<time>>
sets the time within which
each health check will be randomly delayed,
by default, there is no delay.
=item
C<fails>=I<C<number>>
sets the number of consecutive failed health checks of a particular server
after which this server will be considered unhealthy,
by default, 1.
=item
C<passes>=I<C<number>>
sets the number of consecutive passed health checks of a particular server
after which the server will be considered healthy,
by default, 1.
=item
C<mandatory> [C<persistent>]
sets the initial “checking” state for a server
until the first health check is completed (1.11.7).
Client connections are not passed to servers in the “checking” state.
If the parameter is not specified,
the server will be initially considered healthy.
The C<persistent> parameter (1.21.1)
sets the initial “up” state for a server after reload
if the server was considered healthy before reload.
=item
C<match>=I<C<name>>
specifies the C<match> block configuring the tests that a
successful connection should pass in order for a health check to pass.
By default, for TCP, only the ability
to establish a TCP connection with the server is checked.
For UDP, the absence of
ICMP “C<Destination Unreachable>” message is expected
in reply to the sent string “C<nginx health check>”.
B<NOTE>
Prior to version 1.11.7, by default, UDP health check
required a match block with the
send and expect
parameters.
=item
C<port>=I<C<number>>
defines the port used when connecting to a server
to perform a health check (1.9.7).
By default, equals the
L<ngx_stream_upstream_module> port.
=item
C<udp>
specifies that the C<UDP> protocol should be used for
health checks instead of the default C<TCP> protocol (1.9.13).
=back
=head2 health_check_timeout
B<syntax:> health_check_timeout I<I<C<timeout>>>
B<default:> I<5s>
B<context:> I<stream>
B<context:> I<server>
Overrides the
L<ngx_stream_proxy_module>
value for health checks.
=head2 match
B<syntax:> match I<I<C<name>> { B<...> } >
B<context:> I<stream>
Defines the named test set used to verify server responses to health checks.
The following parameters can be configured:
=over
=item
C<send> I<C<string>>;
sends a I<C<string>> to the server;
=item
C<expect> I<C<string>> E<verbar>
C<~> I<C<regex>>;
a literal string (1.9.12) or a regular expression
that the data obtained from the server should match.
The regular expression is specified with the preceding
“C<~*>” modifier (for case-insensitive matching), or the
“C<~>” modifier (for case-sensitive matching).
=back
Both C<send> and C<expect> parameters
can contain hexadecimal literals with the prefix “C<\x>”
followed by two hex digits, for example, “C<\x80>” (1.9.12).
Health check is passed if:
=over
=item *
the TCP connection was successfully established;
=item *
the I<C<string>> from the C<send> parameter,
if specified, was sent;
=item *
the data obtained from the server matched the string or regular expression
from the C<expect> parameter, if specified;
=item *
the time elapsed does not exceed the value specified
in the L</health_check_timeout> directive.
=back
Example:
upstream backend {
zone upstream_backend 10m;
server 127.0.0.1:12345;
}
match http {
send "GET / HTTP/1.0\r\nHost: localhost\r\n\r\n";
expect ~ "200 OK";
}
server {
listen 12346;
proxy_pass backend;
health_check match=http;
}
B<NOTE>
Only the first
L<ngx_stream_proxy_module>
bytes of data obtained from the server are examined.
|