Skip to content

balancer_by_lua for streams #30

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 37 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
35e6cd7
Initial Commit of balancer_by_lua_* port
splitice Feb 4, 2016
559a9b4
add balancer to FFI context and fix get_phase
splitice Feb 4, 2016
0729016
fix segfault due to miss-matched types
splitice Feb 4, 2016
14a545c
first part of porting tests, the configuration
splitice Feb 4, 2016
463a8eb
fix log passing
splitice Feb 4, 2016
485ec80
pass the stream session correctly
splitice Feb 4, 2016
e72e37f
Merge remote-tracking branch 'refs/remotes/openresty/master'
splitice Feb 5, 2016
169a8cf
Merge remote-tracking branch 'refs/remotes/openresty/master'
splitice Feb 5, 2016
a969b82
request/session r -> s
splitice Feb 5, 2016
70942f9
FFI: get_last_failure comment the reason for non-implementation. Retu…
splitice Feb 5, 2016
1527ee1
Style: remove extra whitespace / newline
splitice Feb 5, 2016
9d3efbf
style fixes
splitice Feb 5, 2016
1477f6d
missed semicolon
splitice Feb 5, 2016
d6252a2
Merge remote-tracking branch 'refs/remotes/openresty/master'
splitice Feb 18, 2016
8d47c5c
Merge remote-tracking branch 'refs/remotes/openresty/master'
splitice May 4, 2016
0a87fc2
style fixes based on ngx-style.pl
rshriram Aug 9, 2016
291d72f
add comment about *status=0
rshriram Aug 9, 2016
78efab0
travis tests
Aug 9, 2016
69785dc
remove extraneous resolve test
Aug 9, 2016
4552ef2
fix balancer tests
Aug 9, 2016
9c65d89
add empty --config sections in balancer test
Aug 9, 2016
bb12e57
add stream request to tests
Aug 9, 2016
da0cb96
remove http specific tests from suite 138-balancer.t
Aug 10, 2016
52cc121
remove blank lines
Aug 10, 2016
3a430b8
remove travis from personal branch
Aug 10, 2016
0327ea3
Merge remote-tracking branch 'upstream/master'
Aug 10, 2016
c083780
set name of context for balancer_by_lua
Aug 10, 2016
07b8540
add support for set_timeouts in balancer_by_lua
Aug 14, 2016
9f0c59e
set nginx version to 1.11.2
Aug 16, 2016
9136d25
revert travis version to 1.9.15
Aug 16, 2016
3d84692
remove set_timeout support
Aug 16, 2016
dc5a572
ngx exit support - wip
Aug 16, 2016
a73175b
fixing balancer tests. check for ngx error and ngx ok
Aug 17, 2016
34ae6be
check for context mismatch before anything else in balancer functions
Aug 21, 2016
8aa6082
remove stray http balancer reference
Aug 21, 2016
ac4f075
Merge remote-tracking branch 'upstream/master'
Oct 17, 2016
f204613
fix compilation error
Oct 17, 2016
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions config
Original file line number Diff line number Diff line change
Expand Up @@ -336,6 +336,7 @@ NGX_ADDON_SRCS="$NGX_ADDON_SRCS \
$ngx_addon_dir/src/ngx_stream_lua_initby.c \
$ngx_addon_dir/src/ngx_stream_lua_args.c \
$ngx_addon_dir/src/ngx_stream_lua_initworkerby.c \
$ngx_addon_dir/src/ngx_stream_lua_balancer.c \
"

NGX_ADDON_DEPS="$NGX_ADDON_DEPS \
Expand Down Expand Up @@ -373,6 +374,7 @@ NGX_ADDON_DEPS="$NGX_ADDON_DEPS \
$ngx_addon_dir/src/ngx_stream_lua_initby.h \
$ngx_addon_dir/src/ngx_stream_lua_args.h \
$ngx_addon_dir/src/ngx_stream_lua_initworkerby.h \
$ngx_addon_dir/src/ngx_stream_lua_balancer.h \
"

ngx_feature="export symbols by default (-E)"
Expand Down
Loading