stefanchrobot

stefanchrobot

I’ve been looking at my application in terms of resource usage. It’s a simple SQS consumer that calls some APIs and is under a very small load. BEAM constantly reports usage of around 70MB of memory:

I’m not sure what to think about it. Honestly, I expected a smaller footprint. I’m running with the default settings and simple MIX_ENV=prod mix run.

Is there an easy way to shave off some memory? Also, I’m wondering - why so many atoms are used?

Showing Posts 1 to 5

jeremyjh

jeremyjh

Each module, and every function in every module is an atom. If you are loading a few libraries hitting 22K isn’t too hard. I’m not sure what to think of the memory. Its not so bad compared to other high-level language VMs though is it? I’m sure Go or Rust would be a lot smaller but a better comparison is Ruby, Python or Java.

sribe

sribe

I seem to recall a minimal web/proxy thing I wrote taking about 24MB used… There is an awful lot of runtime data available in the BEAM. You can easily find out what processes have the largest heaps etc. I’ve used the base Erlang system info calls, but I bet somebody here can guide you to easier-to-use tools that will allow you to drill down and find out where the big uses are.

jeramyRR

jeramyRR

70 MBs seems a bit high for a small app. What all libs are you loading?

The image below shows a basic Phoenix app.

stefanchrobot

stefanchrobot OP

:+1: makes sense!

Here’s my app:

$ mix deps.tree
app
├── statix ~> 1.1 (Hex package)
├── gen_stage ~> 0.14.0 (Hex package)
├── jason ~> 1.1 (Hex package)
├── poison ~> 4.0 (Hex package)
├── junit_formatter ~> 3.0 (Hex package)
├── dialyxir ~> 0.4 (Hex package)
├── hackney ~> 1.9 (Hex package)
│   ├── certifi 2.5.1 (Hex package)
│   │   └── parse_trans ~>3.3 (Hex package)
│   ├── idna 6.0.0 (Hex package)
│   │   └── unicode_util_compat 0.4.1 (Hex package)
│   ├── metrics 1.0.1 (Hex package)
│   ├── mimerl ~>1.1 (Hex package)
│   └── ssl_verify_fun 1.1.4 (Hex package)
├── sweet_xml ~> 0.6 (Hex package)
├── ex_aws ~> 2.0 (Hex package)
│   ├── hackney 1.6.3 or 1.6.5 or 1.7.1 or 1.8.6 or ~> 1.9 (Hex package)
│   ├── poison >= 1.2.0 (Hex package)
│   └── sweet_xml ~> 0.6 (Hex package)
├── ex_aws_sqs ~> 2.0 (Hex package)
│   └── ex_aws ~> 2.0.0 (Hex package)
├── credo ~> 1.0 (Hex package)
│   ├── bunt ~> 0.2.0 (Hex package)
│   └── jason ~> 1.0 (Hex package)
└── tesla ~> 1.2.1 (Hex package)
    ├── hackney ~> 1.6 (Hex package)
    ├── jason >= 1.0.0 (Hex package)
    ├── mime ~> 1.0 (Hex package)
    └── poison >= 1.0.0 (Hex package)

credo, dialyxir and junit_formatter are :dev or :test only.

Would the size of the loaded code change if I built a release instead of running plain mix run?

jola

jola

If you do try building a release, I’m curious to see what the memory usage turns out to be. I made a quick comparison in a project of my own and also just a plain new phoenix project, in both cases memory use was much higher in the release. Why do releases use so much more memory than `mix run`? - #2 by michalmuskala

As I point out though, my comparison may be unfair, as not all code is necessarily loaded in the mix version when I checked memory use, while releases preload all modules. But you should be able to get an accurate comparison.

— All posts loaded —

Where Next? Top

Trending in Questions Top

Blokh
Hey guys, I’ve got a huge CSV ( around 10 GB ) that needs to be processed hourly Do you guys have any suggestions what is the best prac...
New
kszambelanczyk
Hello! Could someone please give me a help/sample code, how to delete a file from s3 using waffle/waffle_ecto from Phoenix app. I creat...
New
Onor.io
I have what I’ve heard referred to as a “lookup table” in my database. This is a way of assigning codes to common values. One common lo...
New
Trolleger
What approach to take when sending live updates to “random” users Hi! I have a question, I have a little chat app, and when I create a DM...
New
RemyXRenard
I’m seeing that a list inside a Kino.DataTable will be interpreted as a charlist, even if the Kino.configure() is set to charlists: :as_l...
New
matt-savvy
Anyone here using Honeybadger? My Honeybadger account is being overwhelmed with noise from some bots. Seeing a lot of Bandit.HTTPError...
New
samoloth
Hi, I’ve just set up an application with ash_authentication. There is only magic link strategy for now, so there is no confirmation add o...
New

Other Trending Topics Top

mudasobwa
I am happy to introduce the very α version of the new programming language compiled to BEAM. Welcome Cure. It has literally three kille...
New
garrison
Hobbes is a low-level distributed database for the Elixir programming language. Hobbes provides a simple, safe, and scalable storage lay...
New
mcass19
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
New
Damirados
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
netoum
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
wintermeyer
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

We're in Beta

About us Mission Statement

Options

Thread Display Mode




Thread Preview

Skip Thread Previews