ryanzidago

ryanzidago

Hi all,

Heroku keeps killing the application because the memory quota is vastly exceeded (i.e. 220% of the quota is used). I’m trying to find the root cause of this. The application use the PhoenixLiveDashboard so I could inspect the processes using the most memory …

As you can see in the following picture, there is an :error_logger process that is using more than 1 GB of memory. Surely it isn’t normal right?

How can I find which piece of my code is responsible for spawning the :error_logger process and why is it accumulating so much data?

Could it be due to some Telemetry misconfiguration in the application?

I see here that Telemetry uses an error_logger module. Also I see that Elixir’ Logger uses this error_logger module by default here.

Thanks!

Showing Posts 1 to 9

hauleth

hauleth

Both Elixir and Telemetry use error_logger only if you are using Erlang 20.x or earlier. In other situations it is not started unless there is other component that registers error_logger:add_report_handler/{1,2}.

If you are using OTP 20.x or earlier, then this process is started as part of kernel application and you cannot disable it (as this could cause you to lose information about processes that have failed).

ryanzidago

ryanzidago OP

I’m using Erlang 23.0.3 with Elixir 1.11.2. And I’m not calling the error_logger:add_report_handler function anywhere in the code :thinking:

hauleth

hauleth

You may use dependency that does. For example Sentry still does IIRC. You can search through your deps for that function call.

ryanzidago

ryanzidago OP

Alright, I have three dependencies that makes this function call:

  • lagger
  • rabbit_common
  • rollbax (here)

Recently, I added an ErrorReporter module to hold the logic on how a message should be reported to Rollbar when an event cannot be consumed. The error reporter module looks like so:

defmodule Shared.ErrorReporter do
  require Logger

  def report_and_log_error(
        module,
        %{error: error, event: event, metadata: metadata} = error_params
      ) do
    Rollbax.report(:error, error_params, stacktrace())

    error_message =
      "#{module} error=#{inspect(error)} consuming=#{Shared.LoggableEvent.to_log(event)} metadata=#{
        inspect(metadata)
      }"

    Logger.error(error_message)
  end

  def report_and_log_error(
        module,
        %{error: error, job: job} = error_params
      ) do
    Rollbax.report(:error, error_params, stacktrace())

    error_message = "#{module} error=#{inspect(error)} job=#{inspect(job)}"
    Logger.error(error_message)
  end

  def log_retry(module, %{error: error, event: event, metadata: metadata} = _retry_params) do
    error_message =
      "#{module} error=#{inspect(error)} consuming=#{Shared.LoggableEvent.to_log(event)} metadata=#{
        inspect(metadata)
      }"

    Logger.error(error_message)
  end

  def stacktrace do
    {_, stacktrace} = Process.info(self(), :current_stacktrace)
    stacktrace
  end
end

And this is how I call the module:

report_and_log_error(__MODULE__, %{error: error, event: event, metadata: metadata})

Rollbar allows us 50,000 requests/1 minute and the application is far away from having that many errors :thinking:

ryanzidago

ryanzidago OP

So I have diggen up further and configured my heroku app from the instructions on this article so that I can inspect the process’ state.

What I find really surprising is that the :error_logger process has only the following message in its state:

{items,{"Installed handlers",
        [{handler,'Elixir.Rollbax.Logger',false,
                  #{'__struct__' => 'Elixir.Rollbax.Logger',
                    reporters => ['Elixir.Rollbax.Reporter.Standard']},
                  false}]}}

The Message Queue Len is also empty. Here’s a more detailed picture of the process:

It has only 500 MB but it can grow up to =~ 1.5GB or so before Heroku kills the app …

Any ideas on how to investigate further? :thinking:

hauleth

hauleth

Seems like bug in Rollbax, not error_logger. Try to drop that library for test. If it help, then you have found culprit (it will probably also make error_logger process to go away). In general I prefer Sentry for error logging, so if you can switch, then it may be the interesting solution for you.

ryanzidago

ryanzidago OP

I’m pretty sure that this will work, however, we have many applications that use Rollbax and only one of them crashes. So I’ll take a deeper look, maybe we misconfigured something.

ryanzidago

ryanzidago OP

Disabling the enable_crash_reports “fixed” the issue because it didn’t start the error_logger process.

error_logger is actually quite known to cause memory leaks :thinking: There’s a whole section about this process in the Erlang in Anger book.

If I have some free time, I’ll try to fork Rollbax and replace error_logger with either logger or lager, because I would still like to have those crash reports.

hauleth

hauleth

I highly suggest taking a look at Sentry. It always felt “cleaner” to me.

— All posts loaded —

Where Next? Top

Trending in Questions Top

katta
I having some trouble figuring out if I have set myself too strict of standards for my production server. Currently I can handle 75% of r...
New
brecabral
Documentation While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
New
nseaSeb
Hello, I know there is an approach for handling lists that allows for optimized traversal, but I can’t recall the specific method (somet...
New
kpanic
Hi everyone, I am toying with the idea of building a “match maker” for giving personal help to people that wants to start coding. I sta...
New
velrest
So my question is quite simple and i have found no conclusive answer on forum, google or AI. Should we use :erlang.float for Integer to ...
New
asweet-confluent
I recently noticed that Elixir’s Logger defaults its primary log level to :debug when no :logger, :level application configuration is pre...
New
apz
I’m new to elixir and just tried to install the elixirLS extension for VScode(ium) and it is throwing some errors that I would like help ...
New

Other Trending Topics Top

GenericJam
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
JesseHerrick
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
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
mhanberg
Hi everyone! The first release candidate for the Expert language server project is now available! We’ve published a press release detai...
New
budgie
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

We're in Beta

About us Mission Statement

Options

Thread Display Mode




Thread Preview

Skip Thread Previews