Caravan (caravan v1.0.1)
Tools for running Distributed Elixir/Erlang with Nomad and Consul
Caravan
The built-in Erlang distribution mechanisms are prefaced on using the Erlang Port Mapper Daemon(EPMD), a process that is started with the VM and communicates with remote EPMD instances to determine what ports to send data on. While this method can work in some cloud environments, container scheduling technologies make it difficult to pick a single port to use globally or to run multiple processes in a continer. Also, the built-in method for forming a cluster is to use a plaintext .hosts file with resolvable node names, which is very difficult to make work in a dynamic environment where nodes can leave a cluster frequently.
There are several libraries and strategies for using the Kubernetes API to build a distributed cluster, but Consul provides us with a clean DNS api to retrieve information, while Nomad handles monitoring and scheduling services.
Caravan is split into two parts: The first is a set of modules that remove the
need for epmd
by determing node ports by the node name. The idea and much of
the code is from the excellent article Erlang (and Elixir) distribution
without
epmd.
It's worth the read, and should explain what we're trying to accomplish with
the Caravan.Epmd
module.
The second part utilizes libcluster to help with forming clusters automatically based on DNS SRV queries to Consul.
Getting started with custom Erlang distribution
Erlang has some command line options to overwrite the default distribution mechanism. To use Caravan's implementations, you would do something similar to this
iex --erl "-proto_dist Elixir.Caravan.Epmd.Dist -start_epmd false -epmd_module Elixir.Caravan.Epmd.Client" --sname "node3434" -S mix
For testing locally, you'll either have to run elixirc
on the above
modules to create the required .beam
files, or you can pass an additional
flag to --erl
:
-pa _build/dev/lib/caravan/ebin
Note: building a release with Distillery will not require the -pa
flag.