[Elixir002]节点启动后自动连接其它节点

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[Elixir002]节点启动后自动连接其它节点相关的知识,希望对你有一定的参考价值。

问题: 如何指定一个节点在启动后自动连接到别的节点上?

这个我们要使用到sys.config,这是erlang的配置文件,这个文件一般都是$ROOT/releases/Vsn下

1. 首先我们要先启动一个master节点,Node.list可以看到当前节点并没有连接到任何节点

iex --cookie secret --name [email protected]
Erlang/OTP 18 [erts-7.2.1] [source] [64-bit] [smp:4:4] [async-threads:10] [hipe] [kernel-poll:false] [dtrace]

Interactive Elixir (1.2.2) - press Ctrl+C to exit (type h() ENTER for help)
iex([email protected]127.0.0.1)1>Node.list
[]

2. 我们再启动一个slave节点,让它启动时直接连接到master上

新建sys.config

#sys.config
[{kernel,
  [
    {sync_nodes_optional, [[email protected]]},
    {sync_nodes_timeout, 150000}
  ]}
].

这个配置可以表明,启动后会主动连接到‘[email protected]‘ ,如果没有连接成功会每150秒再重连。

iex --cookie secret --name [email protected] --erl "-config sys.config"
Erlang/OTP 18 [erts-7.2.1] [source] [64-bit] [smp:4:4] [async-threads:10] [hipe] [kernel-poll:false] [dtrace]

Interactive Elixir (1.2.2) - press Ctrl+C to exit (type h() ENTER for help)
iex([email protected]127.0.0.1)1> Node.list
[:"[email protected]"]

这时在2个节点上用Node.list都可以看到对方啦。 注意: 一定要保持2个节点的cookie是一样的

再验证一下:

iex([email protected])2>:rpc.call(:"[email protected]", :io, :format, [:user, "~ts pid: ~p~n", ["我是在master节点上运行的", self()]])
:ok
iex([email protected])2>self
#PID<0.69.0>

这个format只是会在原运行节点上输出,因为使用了:user, 所以我们在master上看到结果

iex([email protected])2> 我是在master节点上运行的 pid: <9547.69.0>

可以看到master上输入的pid是slaver上的进程pid, 其中9547是标记它来自[email protected]节点, 即: <0.69.0> == <9547.0.0>

3. sys.config实现了发布新的release后会根据新的sys.config再加载配置

 When traversing the contents of sys.config and a filename is encountered, its contents are read and merged with the result so far. When an application configuration tuple{Application, Env} is found, it is merged with the result so far. Merging means that new parameters are added and existing parameter values overwritten.

官方的例子给得太简单啦,演示个完整的例子看看:)

假如我们想在上面的slaver节点上的kernel再加一个配置database的地址, 那么我们新建一个region.config 

#File: /etc/region.config
[{kernel, [ {database_for_example_purposes,
"db://prod-host-omg:8089"} ]}].

 

那么我们要做的就是把region.config加到sys.config

File: sys.config
[{kernel, [
          {sync_nodes_optional, [[email protected]]},
          {sync_nodes_timeout, 150000}
          ]},
     "/etc/region.config"].

我们再验证一下是否改变

iex --cookie secret --name [email protected] --erl "-config ./sys.config"
Erlang/OTP 18 [erts-7.2.1] [source] [64-bit] [smp:4:4] [async-threads:10] [hipe] [kernel-poll:false] [dtrace]

Interactive Elixir (1.2.2) - press Ctrl+C to exit (type h() ENTER for help)
iex([email protected]127.0.0.1)1> Application.get_all_env(:kernel)
[database_for_example_purposes: ‘db://prod-host-omg:8089‘,
 sync_nodes_timeout: 150000, included_applications: [],
 sync_nodes_optional: [:"[email protected]"], error_logger: :tty]

 

有兴趣可以看看extrm release如何生成sys.config的

参照资料

1. Distributed-otp-applications

2. Design_principles about distributed_applications

3. sys.config


A day in the life of an Erlang developer

技术分享

 

以上是关于[Elixir002]节点启动后自动连接其它节点的主要内容,如果未能解决你的问题,请参考以下文章

Elixir - 在监督下启动 Java JInterface OTP 节点

Erlang/Elixir精选-第1期

Phoenix/Erlang 节点连接

Docker 上的 Erlang/Elixir 和热代码交换

剥开比原看代码02:比原启动后去哪里连接别的节点

启动远程 Erlang 节点