jfrolich
Did anyone successfully set up ECS using distributed Elixir? I am tackling this right now.
I am especially interested how to connect the nodes. I was thinking it might make sense to write a custom libcluster strategy that fetches the current ip’s connected to the Application Load Balancer. ECS also offers service discovery using DNS, so that might also be a solution (this creates an A record for each node) and there seems to be a DNS strategy already in libcluster.
As far as I know these are the things to be addressed:
- Setting the node name to:
<APPNAME>@<PRIVATE IP> - Exposing the Port Mapper Daemon port in the VPC and docker image (4369)
- Exposing the intra-erlang communication ports (configurable using inet_dist_listen_min, inet_dist_listen_max) in the VPC and the docker image
- Service discovery (setting up communication between nodes) using a libcluster strategy
Setting the hostname to include the private IP can be done by using curl http://169.254.169.254/latest/meta-data/local-ipv4, not sure yet how to best inject this as a env variable.
Perhaps anyone already has figured some of this out on ECS/EC2? Help really appreciated! Planning to document the results so it’s easier for other to get this up and running. I already have some experience building a very small docker image using releases and multi-stage builds.
Trending in Questions
Other Trending Topics
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
- #ai
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #elixirconf-eu
- #metaprogramming
- #hex










Showing Posts 15 to 6- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
acrolink
Does the same applies for Elastic Beanstalk with applications deployed using Docker?
mowings
So after some investigation, it does look like the A records get removed immediately with the stop requests. It also appears that the application does not get a SIGTERM for quite a while after that – the container remains active all the way through to the end of the DEPROVISIONING state.
The limitation with the number of A records being limited to 8 stands, however. More than that and the cluster will experience lots of random disconnects and reconnects. It is possible that things may eventually stabilze (seems like it should in theory) – I am still looking at this.
mowings
Thanks for this write-up. However, note that Route53 multi-value DNS will only ever return 8 records maximum. This limits the number of nodes in a cluster using this strategy to 8. Any more than that, and the results returned by the dns query will vary each time, causing libcluster to think nodes are coming and going, and you will see lots of disconnects/reconnects.
There is also a possible issue with the task IPs getting removed from the private namespace zone only after a task has transitioned to the STOPPED state (which seems like a major design flaw), not giving a task being shut down a chance to drain any pending requests and account for the A record TTL. I have not fully investigated this, however.
drewble
I struggled with this for a week and eventually got it working. The information in this thread is enough to point in the right direction, but there is a big gap between the right direction and a successful deployment.
I’ve written up a fresh guide on deploying distributed Elixir to ECS Fargate tasks with Service Discovery and libcluster’s DNS Polling strategy. Hope it helps save someone some time!
JorisKok
I am using the bridge network mode, with the custom peerage provider for srv records.
Not really sure why it won’t connect. Any help is appreciated.
lukaszsamson
We use a custom Peerage.Provider implementation like
quolpr
Our tasks are using
awsvpcnetwork mode. It has some limits depending on EC2 instance type Elastic network interfaces - Amazon Elastic Compute Cloud . With Fargate you don’t need to think about this limitationjfrolich
I use Fargate, so it uses the A record for service discovery.
troelsim
Hey guys, thanks for all the info, it helped me a lot set it up myself.
You’re all running one node per instance, with a fixed port mapping from container to host, right?
AWS doesn’t allow A records in the service registry unless the
networkModeof the container isawsvpc(where each container has its own elastic network interface and IP address), I suppose because there could be multiple instances per host, running on different ports. It has to be SRV, which is fine.The
DNSPollstrategy only polls A records by default, so I’m curious about whether you guys had to use a custom resolver like I did, or if there’s a more straightforward way?jfrolich
Yep that’s exactly what we are using as well now. BTW the erlang communication port can be a single port.