Skip to content

Commit

Permalink
feat(clustering/rpc): generate rpc disconnected event
Browse files Browse the repository at this point in the history
rpc disconnected
  • Loading branch information
chronolaw authored and ADD-SP committed Jan 7, 2025
1 parent 45afb4d commit eb3293c
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
11 changes: 11 additions & 0 deletions kong/clustering/rpc/manager.lua
Original file line number Diff line number Diff line change
Expand Up @@ -469,6 +469,17 @@ function _M:handle_websocket()
local res, err = s:join()
self:_remove_socket(s)

-- tell outside that rpc disconnected
do
local worker_events = assert(kong.worker_events)

-- notify this worker
local ok, err = worker_events.post_local("clustering:jsonrpc", "disconnected")
if not ok then
ngx_log(ngx_ERR, _log_prefix, "unable to post rpc disconnected event: ", err)
end
end

if not res then
ngx_log(ngx_ERR, _log_prefix, "RPC connection broken: ", err, " node_id: ", node_id)
return ngx_exit(ngx.ERROR)
Expand Down
5 changes: 5 additions & 0 deletions kong/clustering/services/sync/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,11 @@ function _M:init_worker()
assert(self.rpc:sync_every(EACH_SYNC_DELAY))

end, "clustering:jsonrpc", "connected")

-- if rpc is down we will also stop to sync
worker_events.register(function()
assert(self.rpc:sync_every(EACH_SYNC_DELAY), true) -- stop timer
end, "clustering:jsonrpc", "disconnected")
end


Expand Down

0 comments on commit eb3293c

Please sign in to comment.