aseigo
In this week’s episode we look at the basics of how clustering Elixir nodes works, and how to automate their creation using libcluster (using UDP Gossip, but also supports Kubernetes, EC2 and DNS service discover) as well as how to replace epmd itself.
An Extra episode will be available tomorrow or the next day as well covering some updates to last week’s episode, some musings on the current limitations of BEAM clustering (security, scalability), and a look at how the show’s git repo is being organized.
I hope you all enjoy! ![]()
Trending in Screencasts
Several weeks ago I was nerd snipped by browsers support for View Transitions API and took to myself to see how that goes in LiveView. Af...
New
Sooner or later you’ll need to run a one-off or recurring task on a deployed app, and if you deploy with releases the usual answer, a Mix...
New
Other Trending Topics
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
New
Hi there! We created Gust: A task orchestrator inspired by Airflow.
For those who have never heard about Aiflow, it’s a Python-based wor...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Xamal is a deployment tool for Elixir apps that deploys native releases to bare metal servers over SSH. It’s a port of GitHub - basecamp/...
New
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve.
They are GUI (Emerge) and State management (S...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #library
- #deployment
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixirconf-us
- #blog-post
- #ai
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










Showing Posts 1 to 10- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
arkgil
Great episode @aseigo!
aseigo
Thanks, just happy when people get something from them as well!
Crowdhailer
This is a great quick screencast thank you.
Exactly what I needed, hopefully I will find the time soon to add libcluster to my tokumei project generator. Then quickstart can be even smoother.
BartOtten
@aseigo, tnx for the screencasts and all the expertise you’ve shared in various communities.
globalkeith
Great work Arron, your screencast foo is powerful. Keep up the great work!
pggalaviz
Amazing screencast! However I cloned the repo and can’t get it to work on development machine.
Starting
libclusteron first node isn’t an issue, the heartbeat starts to appear, but when I try to run it on a second node it raises an error:{:failed_to_start_child, Cluster.Strategy.Gossip, {{:badmatch, {:error, :eaddrinuse}}, [...] ...}Seems there is some process already running in the required address/port and
libclustercan’t start.aseigo
Hm.. which operating system, and what are the exact steps you are taking that lead to this?
Or .. do you have some other process bound to port 45892 (and probably needs to be a UDP connection ..)? You can change the default port used by libcluster by editing config/libcluster.exs and adding
port: <something other number>to the exploring_elixir topology section.pggalaviz
Thanks for replying!
Running on:
MacOS Sierra 10.12.6
erlang/OTP 20
elixir 1.5.2
libcluster 2.2.3
Just cloned the repo and installed deps (nothing changed) and after successfully starting the first node with
iex --sname node-1 -S mixandExploringElixir.AutoCluster.start(), if i runlsof -i :45892this shows up:Trying to start the second node
iex --sname node-2 -S mixandExploringElixir.AutoCluster.start()shows the error I previously mentioned:Changing the
port: <some_other_number>didn’t fix the issue, I even tried to set the port to0so a random and available one is picked, in this way the second node can successfully start but it wont be able to automatically connect to the first or any other node.This is my
config/libcluster.exs:Maybe I’m just not getting the
configuration part, or some other setup is required to run multiple nodes in
devmode.As far as I know a UDP socket can’t share the same address/port with other process or be restarted:
but in your screencast it seems to work fine, so I’m confused haha.
aseigo
UDP ports can be open by multiple processes if in broadcast mode .. but this requires binding to an interface that supports UDP broadcasting. I don’t have a Mac to test this on, but it apparently can require a bit of config .. see: Multicast overlays · gossiperl/gossiperl Wiki · GitHub
Would be interested to know if that resolves it for you …
pggalaviz
Unfortunately that didn’t help.
According to this:
since MacOS 10.10.5, two unbound (wildcard) UDP sockets can not share the same port anymore.
So, for my project I’ll use the hardcoded epmd strategy only for development, I prefer spending more time on my app’s issues than dealing with my computer’s configuration.
Thanks a lot for your help and the amazing screencast! keep them coming!