tcoopman

tcoopman

I was reading the docs on Agent and noticed there is no mentions of hibernation at all.
Given that Agents are just wrappers around GenServers I was kinda surprised .

So I read through the code, but hibernate is not used at all.

Wouldn’t it make sense to support hibernate on Agent? I noticed that hibernation reduce memory consumption often a lot.

First 9 of 9 Posts Switch mode

dimitarvp

dimitarvp

You would think so, yep, but I’d say if you have enough Agents in memory that hibernating them would help you then you have a huge design problem. I mean, you would probably need 500K - 1M agents for this to make a tangible difference. And you absolutely should not have so many agents.

tcoopman

tcoopman OP

I find that a bit of a weird argument.

You can make the same argument for GenServers and LiveViews.
GenServers support hibernate and LiveView has a default hibernation after 15s.

tcoopman

tcoopman OP

One more thing. It’s actually trivial to write an agent that grows huge in size if not hibernated and where hibernation makes it tiny again.

Agent.start_link(fn ->
  x = fetch_something_big()
  calculate_something_small_from(x)
end, name: :foo)

This will create a huge Agent named foo, although it might just have a tiny state.
After hibernation this would become tiny again.

You could of course trigger :erlang.garbage_collect on it manually to get the same result.

krasenyp

krasenyp

Yes, but the idea of an Agent is not to fetch huge data in it. It’s for simple concurrent state management. You’d fetch the data and then update the Agent’s state. API’s should be hard to misuse.

derek-zhou

derek-zhou

IMHO, Agent is just GenServer with training wheels. I moved to full GenServer for all Agents except the trivial ones. Maybe the core team think adding advanced features to a “training-wheel” API is not worth their time?

tcoopman

tcoopman OP

That’s not an idea I read in the docs.

The first function blocks the agent. The second function copies all the state to the client and then executes the operation in the client. One aspect to consider is whether the data is large enough to require processing in the server, at least initially, or small enough to be sent to the client cheaply. Another factor is whether the data needs to be processed atomically: getting the state and calling do_something_expensive(state) outside of the agent means that the agent’s state can be updated in the meantime. This is specially important in case of updates as computing the new state in the client rather than in the server can lead to race conditions if multiple clients are trying to update the same state to different values.
(from Agent — Elixir v1.20.2)

The docs say to consider if the data is large enough to require processing in the server.
It doesn’t say that you should not process large data in an agent.

Anyway, I don’t mind too much that Agent doesn’t have hibernate. I seem to be the first person missing this, and it’s easy enough to work around.

I was a bit surprised about it though, because it’s easy to have big stacks that can be a lot smaller after garbage collection. Anyway, it might not be an issue at all and might be cleaned up once garbage collections kicks in.

D4no0

D4no0

Completely agree, there is absolutely zero benefit from using an Agent over a Genserver besides those 2 callbacks that dump the state.

dimitarvp

dimitarvp

Another angle to consider is that I personally would reach for ETS if load and/or payload size(s) start growing.

jeffheigl

jeffheigl

@tcoopman - Agent supports hibernate_after, I just tried and confirmed it works (using :observer I looked that the Processes → Current Function).

When you call Agent.start_link just pass in the hibernate_after option in miliseconds.

Looking at the code, Agent.start_link will pass through the options to GenServer.start_link

https://github.com/elixir-lang/elixir/blob/main/lib/elixir/lib/agent.ex#L276

— All posts loaded —

Where Next? Top

Trending in Discussions Top

AstonJ
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...
2977 91898 914
New
AstonJ
The obligatory hello world thread! Who are you and where are you from? :stuck_out_tongue:
4616 55835 594
New
byu
@chrismccord : I just saw the Extract AGENTS.md from Phoenix.new into phx.new generator commit to the phoenix project. My initial shotgu...
New
arcanemachine
I was working on an Ecto migration and I needed a timestamp. So, for the nth time, I looked up the different data types for timestamps, a...
New
alexslade
Fly’s CEO posted this recently - Turn And Face The Strange · The Fly Blog It says that Fly is going all-in on sprites, which is a worry ...
New
Herve37
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
matt-savvy
Is there a word for the ~> symbol used in Version strings? Do you also just call it a Squiggle Arrow™ ?!
New

Other Trending Topics Top

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
jimsynz
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
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
ausimian
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
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