AndyL

AndyL

Elixir 1.9 Release vs Distillery

It looks like Elixir 1.9 Releases are a subset of Distillery. (Is that right?)

When should someone use Elixir 1.9 Releases vs Distillery?

Are the two approaches mutually exclusive? Are there situations where you would want to use both toolsets?

Most Liked

hubertlepicki

hubertlepicki

You want one or another, I think. I was sort of forced to switch to 1.9 releases because stumbled upon bugs with distillery + erlang + elixir in most recent versons. Which is a recurring pattern, and something to expect from external library.

Elixir releases are now internal part of Elixir, which means the chances are they won’t break as much on updating as distillery did. There’s absolutely no blame on distillery side, it’s just that carrying about multiple Elixir versions is obviously more difficult than carrying about one single current Elixir version. So the code base is in several places overcomplicated / bug prone because of that requirement, I suppose.

I was pleasantly surprised with the migration. I am very happy with how runtime config is handled. I kind of miss deploy hooks not being there but easy to work around, and probably for the best.

So in the long run, I think Elixir releases are the way to go for pretty much everyone. I suspect there’ll be a way to extend them with tools built on top of them, rather than distillery soon, so if you need some of the missing functionality you’ll be able to add it this way.

16
Post #3
LostKobrakai

LostKobrakai

Elixir releases are a subset of distillery that’s correct. Currently there’s a bunch of overlap in functionality, as distillery basically had/has to do all the stuff elixir releases do. Especially as it’s still used for elixir <1.9 projects. Distillery also does more than elixir core releases. Most notably is the support for hot code updates in distillery.

As for when to use which: If you’re on elixir 1.9 (possibly without distillery already) I’d use core releases unless you need features only distillery provides. I’ve also heard people in slack note that elixir releases seem smaller than distillery ones, but I cannot confirm that, but might be worth looking into if file size is a concern.

I’d not try to mix them, as they are similar, but also very different: e.g. the cli in bin/ is completely different. Instead of changing distillery though I’d rather hope that distillery’s functionality will over time be extracted in (possibly smaller, more purpose build) new libraries, which hook into core releases using the :steps configuration available. I’m not sure how well this is possible for e.g. hot updates, but I’d expect adding things like build hooks or custom cli commands should be possible this way.

Where Next?

Popular in Questions Top

JDanielMartinez
Hi! May someone helps me, please! I have two apps into an umbrella project: the first one is Database, which manages queries, and the se...
New
joaquinalcerro
Hi there, I am working with Ecto-Postgresql and I need to call all of the records from a specific table but the table has 40,000 record...
New
aalberti333
As the title describes, I’m trying to run Enum.map() over a list of key/value pairs, where the value is a map. My data looks like this: ...
New
lastday4you
I wanted to check elixir version in phoenix because i found that my elixir is 1.5 but when i use Enum.chunk_by it said the function is un...
New
stefanchrobot
What’s the safe way to decode a JSON string into a struct? I want to avoid calling String.to_atom. Jason.decode can give me a map with st...
New
freewebwithme
Using vs code and installed ElixirLS: support and debugger. And I got an error popped up on start up says Failed to run ‘elixir’ comma...
New
shahryarjb
Hello, I have map which I want to convert it to string like this: the map: %{last_name: "tavakkoli", name: "shahryar"} the string I ne...
New
johnnyicon
Hi all, I've just started learning Elixir and Phoenix Framework, so please pardon my n00bness at this stage. I'm trying to use Postg...
New
kostonstyle
Hi all I want to have a unix time, from the current time plus 1 hour. DateTime.now + 1 hour How to get it in elixir? Thanks
New
vrod
I am using the Starship cross-shell prompt – it seems pretty nice, but I get some errors: [WARN] - (starship::utils): Executing command ...
New

Other popular topics Top

srinivasu
How to handle excepions in elixir? Suppose i have A, B, C ,D, E modules. and each module has get() function. A.get() method will call th...
New
dotdotdotPaul
Okay, I'm having a heck of a time trying to figure out how to best handle the validation of belongs_to associations in Ecto. I'm sure I'...
New
bsollish-terakeet
Credo is smart enough to check for (something like) this: assert length(the_list) == 0 with this response: Checking if an enum is empt...
New
yawaramin
In the Dialyzer docs ( http://erlang.org/doc/man/dialyzer.html#requesting-or-suppressing-warnings-in-source-files ), there is a way to tu...
New
aalberti333
As the title describes, I’m trying to run Enum.map() over a list of key/value pairs, where the value is a map. My data looks like this: ...
New
vac
Hi, I'm quite new in Elixir and I'm trying to format a string to a PEM format. I have the certificate value like MIIDBTCCAe2...... and ...
New
minhajuddin
I have seen a lot of code which picks the first element from a list using Enum.at(0) instead of List.first. Is there a reason why people ...
New
ashish173
I am using Ecto timestamps with postgres, I can see the timestamps() use the :naive_dateime but for my use case I wanted to store the ti...
New
electic
Hi, I am new to Elixir. I am trying to use the DateTime component to insert a date into MySQL however the there seems to be no way to fo...
New
Fl4m3Ph03n1x
About me? ( if you have nothing better to do than reading about some random guy in the internet :stuck_out_tongue: ) Hello all, this is ...
New

We're in Beta

About us Mission Statement