質問

既存のスーパーバイザーに動的な子プロセスを追加する方法の例をどこで見つけることができますか(simple_one_for_one 戦略を再開)?

役に立ちましたか?

解決

私はいくつかの研究をしました、そして、以下が私が持っているものです。

まず、これはスーパーバイザーのサンプルコールバックモジュールです。

-module(root_sup).
-behaviour(supervisor).
-export([start_link/0]).
-export([init/1]).

start_link() ->
     {ok, Pid} = supervisor:start_link({local, ?MODULE}, 
          ?MODULE, []),
     {ok, Pid}.

init(_Args) ->
     RestartStrategy = {simple_one_for_one, 10, 60},
     ChildSpec = {ch1, {ch1, start_link, []},
          permanent, brutal_kill, worker, [ch1]},
     Children = [ChildSpec],
     {ok, {RestartStrategy, Children}}.

そして、これは子どものコールバックモジュールであり、これはSurvision Treeに動的に追加されます。

-module(ch1).

-behaviour(gen_server).

% Callback functions which should be exported
-export([init/1]).
-export([handle_cast/2]).

% user-defined interface functions
-export([start_link/0]).

start_link() ->
     gen_server:start_link(?MODULE, [], []).

init(_Args) ->
     io:format("ch1 has started (~w)~n", [self()]),
     % If the initialization is successful, the function
     % should return {ok,State}, {ok,State,Timeout} ..
     {ok, ch1State}.

handle_cast(calc, State) ->
     io:format("result 2+2=4~n"),
     {noreply, State};
handle_cast(calcbad, State) ->
     io:format("result 1/0~n"),
     1 / 0,
     {noreply, State}.

これが私たちが通常監督者を始める方法です:

1> ch_sup:start_link().
{ok,<0.33.0>}

それでは、最初の子プロセスを始めましょう。

2> {ok, Child1Pid} = supervisor:start_child(ch_sup, []).
ch1 has started (<0.35.0>)
{ok,<0.35.0>}

チャイルドプロセスを動的に開始できます。別の子供を始めましょう:

3> {ok, Child2Pid} = supervisor:start_child(ch_sup, []).
ch1 has started (<0.37.0>)
{ok,<0.37.0>}

私たちのプロセスが開始されたことがわかります(最後の2つに注意してください):

4> erlang:processes().
[<0.0.0>,<0.2.0>,<0.4.0>,<0.5.0>,<0.7.0>,<0.8.0>,<0.9.0>,
 <0.10.0>,<0.11.0>,<0.12.0>,<0.13.0>,<0.14.0>,<0.15.0>,
 <0.16.0>,<0.17.0>,<0.18.0>,<0.19.0>,<0.20.0>,<0.21.0>,
 <0.22.0>,<0.23.0>,<0.24.0>,<0.25.0>,<0.26.0>,<0.27.0>,
 <0.31.0>,<0.33.0>,<0.35.0>,<0.37.0>]

それでは、私たちの最初の子供のプロセスに何かをさせましょう:

5> gen_server:cast(Child1Pid, calc).
result 2+2=4
ok

ここまでは順調ですね。次に、いくつかの悪いコードを評価するために最初の子供を作ります。

6> gen_server:cast(Child1Pid, calcbad).
result 1/0
ok    
7> 
=ERROR REPORT==== 10-Feb-2011::01:32:15 ===
** Generic server <0.35.0> terminating 
** Last message in was {'$gen_cast',calcbad}
** When Server state == ch1State
** Reason for termination == 
** {'function not exported',
       [{ch1,terminate,
            [{badarith,
                 [{ch1,handle_cast,2},
                  {gen_server,handle_msg,5},
                  {proc_lib,init_p_do_apply,3}]},
             ch1State]},
        {gen_server,terminate,6},
        {proc_lib,init_p_do_apply,3}]}
ch1 has started (<0.42.0>)
7>

レポートでは、ゼロによる分割が例外を引き起こし、プロセスが終了したことがわかります。しかし、監督者はそれの世話をし、すぐに別の子プロセスを開始します(最後の行に注意してください)。

以前に始めた他の子プロセスがまだ生きていることを確認することができます(注意 <0.37.0>):

7> erlang:processes().                 
[<0.0.0>,<0.2.0>,<0.4.0>,<0.5.0>,<0.7.0>,<0.8.0>,<0.9.0>,
 <0.10.0>,<0.11.0>,<0.12.0>,<0.13.0>,<0.14.0>,<0.15.0>,
 <0.16.0>,<0.17.0>,<0.18.0>,<0.19.0>,<0.20.0>,<0.21.0>,
 <0.22.0>,<0.23.0>,<0.24.0>,<0.25.0>,<0.26.0>,<0.27.0>,
 <0.31.0>,<0.33.0>,<0.37.0>,<0.42.0>]
8>

私たちはそれを私たちのために何かすることさえできます:

8> gen_server:cast(Child2Pid, calc).   
result 2+2=4
9>

以下は、読みたいErlangマニュアルページです。

他のヒント

監督の行動 のセクション OTP設計原則 erlang docsの一部は、使用方法の例があります simple_one_for_one そしてダイナミックな子供たち。 OTPの仕組みに関する多くの洞察を提供するため、設計原則全体をお勧めします。

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top