Skip to content

Commit d9197a1

Browse files
author
王发康
committed
First: update api add_server for add some logical judgment can not repeat add same server.
Second: add api add_peer and it's support ip_hash or round_robin. Third: in order to support UPSTREAM_CHECK_MODULE and add a ngx_http_lua_upstream_module.h head file(save some variables on health check module) and add api: remove_server remove_peer and it's support round_robin or ip_hash. Fourth: update README.md and add some test for add_server add_peer remove_server remove_peer(thanks for [email protected] for guide).
1 parent db32ca8 commit d9197a1

5 files changed

+1333
-30
lines changed

README.md

+52-7
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@ Table of Contents
1515
* [get_primary_peers](#get_primary_peers)
1616
* [get_backup_peers](#get_backup_peers)
1717
* [set_peer_down](#set_peer_down)
18+
* [add_server](#add_server)
19+
* [add_peer](#add_peer)
20+
* [remove_server](#remove_server)
21+
* [remove_peer](#remove_peer)
1822
* [TODO](#todo)
1923
* [Compatibility](#compatibility)
2024
* [Installation](#installation)
@@ -205,23 +209,64 @@ You can turn on a peer again by providing a `false` value as the 4th argument.
205209

206210
[Back to TOC](#table-of-contents)
207211

212+
add_server
213+
-----------
214+
`syntax: ok,err = upstream.add_server(upstream_name,ip:port,weight,max_fails,fail_timeout)`
215+
216+
Add a server to upstream. if the server is exist will return err and notes the server is exist.
217+
Warning:
218+
`it also to add server to ngx_http_upstream_server_t structure ,so you should call add_peer.
219+
[Back to TOC](#table-of-contents)
220+
221+
add_peer
222+
-----------
223+
`syntax: ok,err = upstream.add_peer(upstream,ip:port)`
224+
225+
Add a server to back-end peers. if back-end peers is exist will return err and notes the peer is exist.
226+
it's suitable for ip_hash or round_robin.
227+
228+
229+
[Back to TOC](#table-of-contents)
230+
231+
remove_server
232+
-----------
233+
`syntax: ok,err = upstream.remove_server(upstream,ip:port)`
234+
235+
Remove a server from upstream. if the server is not exist will return err and notes the server is not found.
236+
Warning:
237+
`it also to add server to ngx_http_upstream_server_t structure ,so you should call add_peer.
238+
239+
240+
[Back to TOC](#table-of-contents)
241+
242+
remove_peer
243+
-----------
244+
`syntax: ok,err = upstream.remove_peer(upstream,ip:port)`
245+
246+
Remove a server to back-end peers. if back-end peers not exist will return err and notes the peer is not found.
247+
it's suitable for ip_hash or round_robin.
248+
249+
250+
[Back to TOC](#table-of-contents)
251+
252+
253+
254+
208255
TODO
209256
====
210257

211-
* Add API to add or remove servers to existing upstream groups.
212258

213259
[Back to TOC](#table-of-contents)
214260

215261
Compatibility
216262
=============
217263

218-
The following versions of Nginx should work with this module:
264+
The following versions of OpenResty should work with this module:
219265

220-
* **1.9.x** (last tested: 1.9.2)
221-
* **1.8.x**
222-
* **1.7.x** (last tested: 1.7.10)
223-
* **1.6.x**
224-
* **1.5.x** (last tested: 1.5.12)
266+
* **1.7.10.x** (last tested: 1.7.10.2)
267+
* **1.7.7.x** (last tested: 1.7.7.2)
268+
* **1.7.4.1**
269+
* **1.7.2.1**
225270

226271
[Back to TOC](#table-of-contents)
227272

src/ddebug.h

-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
#ifndef _DDEBUG_H_INCLUDED_
88
#define _DDEBUG_H_INCLUDED_
99

10-
1110
#include <ngx_config.h>
1211
#include <nginx.h>
1312
#include <ngx_core.h>

0 commit comments

Comments
 (0)