Skip to content

Latest commit

 

History

History
46 lines (31 loc) · 1.12 KB

12_NodeAndDistributedErlang.md

File metadata and controls

46 lines (31 loc) · 1.12 KB

Node and Distributed Erlang

[ToC]

Distributed Erlang/OTP

Hamler is compiled to Erlang/OTP, which is a concurrent, fault-tolerant, distributed programming platform. A distributed Erlang/OTP system consists of a number of Erlang runtime systems called node. Nodes are connected with TCP/IP sockets and communicate by message passing.

DistributedNodes

Connect Nodes

An Erlang runtime system -- node is identified by a unique name like an email address. Erlang nodes communicate with each other via these names.

Start Erlang epmd for registering node name first:

epmd -daemon

Start n1@127.0.0.1 on a Hamler REPL console:

hamler repl
> import Control.Distributed.Node
> import Control.Distributed.NetKernel
> start :"n1@127.0.0.1"

Start n2@127.0.0.1 on another Hamler REPL console, then connect to the n1@127.0.0.1 node:

hamler repl
> import Control.Distributed.Node
> import Control.Distributed.NetKernel
> start :"n2@127.0.0.1"
> connectNode :"n1@127.0.0.1"
true
> nodes
['n1@127.0.0.1']

RPC

-- TODO: ...