diff options
author | Simon MacMullen <simon@rabbitmq.com> | 2014-07-28 17:01:29 +0100 |
---|---|---|
committer | Simon MacMullen <simon@rabbitmq.com> | 2014-07-28 17:01:29 +0100 |
commit | 9011fa6b498cc3bc535aa6f4bdf188848baffc15 (patch) | |
tree | f4918ce1aa02acfaab6f2a2fea1c9bb3f0bf3438 | |
parent | 445df09d3c68db8389ec4283f151c89eef5a3e1b (diff) | |
parent | a398dd37df895ebdc1bc90aed5415b1a0294c35d (diff) | |
download | rabbitmq-server-9011fa6b498cc3bc535aa6f4bdf188848baffc15.tar.gz |
stable to default
-rw-r--r-- | src/pmon.erl | 22 | ||||
-rw-r--r-- | src/rabbit_misc.erl | 7 |
2 files changed, 26 insertions, 3 deletions
diff --git a/src/pmon.erl b/src/pmon.erl index ae1be40c..de3e9fea 100644 --- a/src/pmon.erl +++ b/src/pmon.erl @@ -54,8 +54,13 @@ new(Module) -> #state{dict = dict:new(), monitor(Item, S = #state{dict = M, module = Module}) -> case dict:is_key(Item, M) of true -> S; - false -> S#state{dict = dict:store( - Item, Module:monitor(process, Item), M)} + false -> case node_alive_shortcut(Item) of + true -> Ref = Module:monitor(process, Item), + S#state{dict = dict:store(Item, Ref, M)}; + false -> self() ! {'DOWN', fake_ref, process, Item, + nodedown}, + S + end end. monitor_all([], S) -> S; %% optimisation @@ -76,3 +81,16 @@ erase(Item, S = #state{dict = M}) -> S#state{dict = dict:erase(Item, M)}. monitored(#state{dict = M}) -> dict:fetch_keys(M). is_empty(#state{dict = M}) -> dict:size(M) == 0. + +%%---------------------------------------------------------------------------- + +%% We check here to see if the node is alive in order to avoid trying +%% to connect to it if it isn't - this can cause substantial +%% slowdowns. We can't perform this shortcut if passed {Name, Node} +%% since we would need to convert that into a pid for the fake 'DOWN' +%% message, so we always return true here - but that's OK, it's just +%% an optimisation. +node_alive_shortcut(P) when is_pid(P) -> + lists:member(node(P), [node() | nodes()]); +node_alive_shortcut({_Name, _Node}) -> + true. diff --git a/src/rabbit_misc.erl b/src/rabbit_misc.erl index 180993a5..09355f3f 100644 --- a/src/rabbit_misc.erl +++ b/src/rabbit_misc.erl @@ -912,8 +912,13 @@ ntoab(IP) -> _ -> "[" ++ Str ++ "]" end. +%% We try to avoid reconnecting to down nodes here; this is used in a +%% loop in rabbit_amqqueue:on_node_down/1 and any delays we incur +%% would be bad news. is_process_alive(Pid) -> - rpc:call(node(Pid), erlang, is_process_alive, [Pid]) =:= true. + Node = node(Pid), + lists:member(Node, [node() | nodes()]) andalso + rpc:call(Node, erlang, is_process_alive, [Pid]) =:= true. pget(K, P) -> proplists:get_value(K, P). pget(K, P, D) -> proplists:get_value(K, P, D). |