madshargreave
Hi
I’ve seen people talk bundling releases, and for which it basically sounds like the hot code-swapping works out-of-the-box, with no source code modification required.
But then I’ve also seen people talk about having to specify various callbacks in order to get them working.
Say I am using Presence and just don’t want to break connections on redeployment, is this possible without any source code modifications?
Trending in Discussions
Hey there,
It’s been more than a year since we started using LiveView as our main UI library and building a whole library of UI componen...
New
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Hi everyone!
The first release candidate for the Expert language server project is now available!
We’ve published a press release detai...
New
A little off-topic, but I feel like people here have a good head on their shoulders.
I used to be quite good at making software. Was luc...
New
Hi there! :wave:
@frigidcode and I (but mostly him) have been running an Elixir Book club, we’re almost done with Designing Elixir Syste...
New
I love Elixir. It’s one of 2 programming languages I’ve ever fallen in love with.
But I don’t use it anymore.
Serverless was the promis...
New
What IDE or editor are you using for Elixir development?
Personally, I use Zed, and I really like it, but sometimes I wish there were a ...
New
Other Trending Topics
Edit: 2026 May 15 - This post is archived.
Mob is alive!!
Main docs: mob v0.7.11 — Documentation
A bit of explanation for the slightly c...
New
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
New
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
New
Just published claude-code-elixir, a plugin marketplace for Claude Code with Elixir support. These are the plugins I’ve been using for my...
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
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
- #ai
- #ecto-query
- #elixirconf-us
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #elixirconf-eu
- #api
- #forms
- #metaprogramming
- #hex










Showing Posts 1 to 6- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
Qqwy
This is a really good question. I believe there are some special configuration settings to set, and some things that become impossible when doing hot code swapping, but I do not know the specifics.
One of the intricacies, I believe, is that care must be taken to transform the current state object stored in a GenServer to the new one, by writing a proper GenServer.code_change/3 implementation.
I would be very interested in an answer from someone who has used hot-code swapping themselves as well.
OvermindDL1
In general when a hot-swap is performed:
GenServer) will handle that by calling your code_change function then swapping to the new code. If non-OTP you can handle that message by calling your loop function via a long call (Module.myloopinstead of justmyloop) to swap to the new code (while doing whatever conversions you want one way or another). TheModule.blahform always calls the new code of a module. Theblahform calls the local version of the code of a module (take in to account Elixir imports, those are long calls).crusso
Nice post. What’s the best source for information on hot-swapping your Elixir code?
OvermindDL1
Done via normal OTP release mechanics, so via exrm or distillery or whatever you use.
Some good docs of how erlang does it (which is how elixir does it) is at: Leveling Up in The Process Quest | Learn You Some Erlang for Great Good!
mindreader
I’ve had some questions about this for some time, but haven’t had the time to test it myself. Everyone talks about changing the state of a genserver, so I fully understand that, but what happens if you add a new module to a supervisor, will it automatically be started? What if you remove a module from a supervisor, will it automatically be killed?
Edit: sorry for resurrecting this thread, I thought the last post was today, but it was actually exactly a year ago.
dom
It’s in the OTP doc: Appup Cookbook — Erlang System Documentation v29.0.2
Generally, these changes are not automatic, but you can tweak a release made via distillery to add them.