marcandre
Compilation time for our project degraded from ~26 seconds to ~32 seconds (~23% slower)
.
Did anyone else compare compilation performance on their project?
$ time mix compile --force && elixir -v
Compiling 1397 files (.ex)
Generating Enaia.Cldr for 2 locales named [:en, :und] with a default locale named :en
Generated enaia app
real 0m25.922s
user 1m59.042s
sys 0m16.722s
Erlang/OTP 27 [erts-15.2.7.2] [source] [64-bit] [smp:8:8] [ds:8:8:10] [async-threads:1] [jit]
Elixir 1.18.4 (compiled with Erlang/OTP 27)
time mix compile --force && elixir -v
Compiling 1397 files (.ex)
Generating Enaia.Cldr for 2 locales named [:en, :und] with a default locale named :en
Generated enaia app
real 0m32.299s
user 2m48.014s
sys 0m20.359s
Erlang/OTP 28 [erts-16.1.1] [source] [64-bit] [smp:8:8] [ds:8:8:10] [async-threads:1] [jit]
Elixir 1.19.1 (compiled with Erlang/OTP 28)
Trending in Discussions
As the title says, please share what you’ve been up to with Elixir. Whether that’s been learning it, looking into it, making stuff with i...
New
I want to open this thread for you all to discuss and help those who really like Ash but are still hesitant to use it in a real project. ...
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
We’re evaluating API mocking tools for OpenAPI-based projects and would love to hear what other teams are using.
We’re particularly inte...
New
I’m posting this in response to Jose’s recent tweet (Cr. link) :
People are sleeping on Elixir for a coding harness:
Hot-code swappi...
New
Hello,
I wrote Stop My Hand, a Scattergories-like web application using Phoenix/LiveView as my learning project for Elixir (after readin...
New
AcmeScript — Writing JS hooks as if I were still using Elixir
I’ve been having fun building a little something over the last few days: Ac...
New
Other Trending Topics
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
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
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
There are three potential reasons for members of this forum to have a look at https://vutuv.de
You are tired or annoyed of LinkedIn.
Yo...
New
Aludel - LLM Evaluation Workbench
Aludel is an embeddable Phoenix LiveView dashboard for evaluating and comparing LLM prompts across mult...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #blog-post
- #elixir-ls
- #elixirconf-us
- #ai
- #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)
vanderhoop
The compiler is definitely doing more work overall in 1.19.X, so make sure you’re leveraging the
MIX_OS_DEPS_COMPILE_PARTITION_COUNTenv var, described here: elixir/CHANGELOG.md at v1.19 · elixir-lang/elixir · GitHubIf the compilation is still longer overall after setting that value to around half your cores, I’d open a bug, as I don’t think that’s expected.
vanderhoop
Also, you’re the
!
freedom_formatterguy! Thanks for the trailing commasjosevalim
Can you try with the —profile time option to
mix compile? I am suspecting a type system related slowdown (you can also try v1.19 branch, we just pushed more optimizations).marcandre
Thanks. Unfortunately specifying
MIX_OS_DEPS_COMPILE_PARTITION_COUNT=2didn’t noticeably change the results.marcandre
Thanks @josevalim . I’m not sure what to look for when using
. What can I do to help figure out the source of the slowdown? Do I need the output from 1.18 and what would I compare?
–profile time… There’s a lot of outputjosevalim
Wait a second. Compilation took 21s but the Mix task took 33s?! Try running “mix compile —force” with MIX_DEBUG=1 and see which task is taking long.
marcandre
Right. There’s a sizeable delay that doesn’t have any output, even with MIX_DEBUG=1:
josevalim
Ok, good news is that it is not compiler related, bad news is that we don’t have instrumentation around the areas that are slow now.
When does the delay happen? Before it starts compiling each module? In the middle? At the end? My suggestion is to add some print statements around mix/compilers/elixir.ex and try to get a feeling where in the code the slowdown is.
marcandre
Paying more attention to it, the mysterious delay is after the “compilation cycle” and before the “group pass check”:
Is this when the type checking is happening?
josevalim
No. I have a hunch this is protocol consolidation. If you open up mix/compilers/elixir.ex, you will see each_cycle and after_compile callbacks, measure those!