benbonnet
Trying to understand Genserver memory leak
Getting started with otp; having a sample app which main purpose is to ingest data.
A genserver is subscribed to a given channel and receives load of data passed aroudn through pubsub. Its single purpose is tostore this data in the db (using ecto). It does not store any state.
def init(_args) do
Phoenix.PubSub.subscribe(PubSub, "CHANNEL_NAME")
{:ok, []}
end
def handle_info({:matcher, data}, state) do
upsert(data)
{:noreply, state} # , :hibernate} added, solved memory leak, but ¯\_(⊙︿⊙)_/¯
end
defp upsert(klines) do
Repo.insert_all(
ModuleName,
data, # array of struct
on_conflict: :replace_all,
conflict_target: [:key1, :key2, :key3]
)
end
Its memory invariably increase to some 100Mb, and never lowers. Googling around, found out about {:noreply, state, :hibernate}, and it solved my issue.
But no clue why this memory increase ended up to be permanent. Is it because of Ecto ? About the way the data is passed around (pubsub) ?
Hope the question is somehow relevant; would like to get a better understanding
regards
Trending in Questions
I’m in search of an Elixir library that offers PDF generation capabilities similar to Ruby’s Prawn. While there have been discussions abo...
New
I’m looking to build a personal workflow to quickly deploy web applications written in elixir/phoenix, for local consumption (ie not on t...
New
Using Phoenix.LiveView.TagEngine as an EEx.Engine is deprecated!
To compile HEEx, use Phoenix.LiveView.TagEngine.compile/2 instead.
Sta...
New
Hello !
We want new/edit form pages to POST/PUT to their own URL rather than the resources REST defaults (post /things, put /things/:id)...
New
Before I dive in myself, did anyone successfully sprinkle Hologram into their existing LiveView app?
Looking for hints regarding:
Addi...
New
Hi all, I wanted to ask how the community is dealing with post-release steps.
Today we have Ecto migrations, which make sure that the db...
New
I am using Oban and occasionally, shortly after a deployment, a handful of jobs can fail because of dependency on other parts of the syst...
New
Other Trending Topics
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
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
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
Emily is an Elixir library that runs Nx computations on Apple’s MLX. Install it as the default Nx backend and Nx, defn, Axon, Nx.Serving,...
New
I just stumbled on a newly redesigned elixir-lang.org. :tada: It looks like @Software_Mansion did the work, and I think it is generally a...
New
@hugobarauna and I (Alex Koutmos) have been hard at work on writing a book on Nerves that takes you from simply blinking LEDs to building...
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
- #channels
- #elixirconf
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #phoenix_html
- #iex
- #blog-post
- #graphql
- #genstage
- #ai
- #websockets
- #elixirconf-us
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #metaprogramming
- #security
- #hex










First 10 of 20 Posts!
ityonemo
I believe hibernate triggers a GC event.
You can also trigger GC manually using
:erlang.garbage_collect/0benbonnet
It leads me be more accurate in my question; to try to understand when/how a genserver gets garbage collected
Or if is mandatory to manually manage a genserver’s memory
ityonemo
It’s not required. but sorry, I don’t have answers for you on when the GenServer gets gc’d. Are maybe your messages coming in more rapidly than you can dispatch them to the database? (Aka do you always have a message in the message queue?). This is just a guess but I think if all of the messages are dispatched, the process goes into a tail call that calls GC, but if there are messages in the queue, the process is only put on ice by the scheduler.
Could also be some weird things with binary references, which are handled differently and have different lifetimes.
Here is specific data how the Erlang GC works, but that is not just for GenServers. Erlang Garbage Collector — OTP 29.0.2 (erts 17.0.2). If you’re curious you can always check out the source code for the gen module: otp/lib/stdlib/src/gen.erl at master · erlang/otp · GitHub + gen_server module otp/lib/stdlib/src/gen_server.erl at master · erlang/otp · GitHub
benbonnet
thanks a lot for those links! and sorry did not meant to demand an answer, rather general advices
I should have mentionned, the genserver receives data every 15 minutes. It takes it something like 1 minutes to ingest the data; then it just hangs around not receiving anything, waiting for the next batch. Which leads me to think the GC was never triggered
trisolaran
Sounds like this could be a plausible explanation: Extremely high memory usage in GenServers - #23 by sasajuric
karlosmid
Hi! What helped in my team was to run function as a async Task:
In that case, when Task is done, gen server memory related to it is released immediately.
Heads up: this was in combination with when the gen server did repetitive tasks triggered by the timer.
hst337
Well. it’s actually not a leakage, it’s just how the garbage collection works. I think you’re receiving big amount of structures (in the
{:matcher, data}) structure, which is not collected right awayhst337
That’s a bad solution, because it copies klines to the new process. The right solution is to trigger gc in the GenServer manually
karlosmid
@hst337 what happens with
klinesin gen server after call toTask.async? Those are not garbage collected? Based on our testing, gen server memory usage immediately dropped.hst337
First of all, unused data will always be garbage collected. The question here is at which point it’ll be garbage collected
Second, here
klinesget copied intoTaskprocess you’ve created. So it might trigger gc inGenServer. But thisklineswill be in theTaskuntil it dies.But this is a bad solution, because you don’t need a process here, you don’t need to copy this data. You just need to call the
Repo.alland then trigger minor gcLast Post!
benbonnet
so far no errors/missing data with the “working”
approach - eg. dispatching through pubsub and centralizing the upsert in a single genserver; but am really wondering why such behaviour happens (the db timeout when each genserver was doing its upsert)