ijunaidfarooq
Massive increase in binaries using Finch
I am using finch in my application, what my application do is:
It sends a request to the camera for getting a jpeg, (Basic/Digest auth) and get the binary image, and then send it to another cloud.
so if I have 500 cameras they are sending 500 * 2 requests per second.
I was using HTTPoison before and my binary state on phoenix dashboard was like this
but when I deployed with Finch.
I had these pool settings with hackney
:hackney_pool.child_spec(:snapshot_pool, timeout: 50_000, max_connections: 10_000),
:hackney_pool.child_spec(:seaweedfs_upload_pool, timeout: 50_000, max_connections: 10_000),
:hackney_pool.child_spec(:seaweedfs_download_pool, timeout: 50_000, max_connections: 10_000)
and I have these settings with Finch now
{Finch,
name: EvercamFinch,
pools: %{
:default => [size: 500, max_idle_time: 25_000, count: 5]
}},
I want to know the reason of such massive binary increase?
UPDATE:
this is what I am using to make requests
defmodule EvercamFinch do
def request(method, url, headers \\ [], body \\ nil, opts \\ []) do
transformed_headers = transform_headers(headers)
Finch.build(method, url, transformed_headers, body)
|> Finch.request(__MODULE__, opts)
|> case do
{:ok, %Finch.Response{} = response} ->
{:ok, response}
{:error, reason} ->
{:error, reason}
end
end
defp transform_headers([]), do: []
defp transform_headers([{key, _value} | _rest] = headers) do
case is_atom(key) do
true -> transform_headers(headers, :atom)
false -> headers
end
end
defp transform_headers(headers, :atom) do
headers
|> Enum.map(fn {k, v} ->
{Atom.to_string(k), v}
end)
end
end
This is how my process look for NimblePool
even with small size and count. why the NimblePool has increased to 2500+?
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
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
Hello,
I have an Elixir backend that implements a custom protocol over TCP. I want to load test the backend and assess the performance o...
New
Other Trending Topics
ActiveMemory 0.8.0 is on Hex. It’s an in-memory store built on ETS and Mnesia:
typed records you query by **any attribute**, not just a ...
New
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
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
- #elixirconf-us
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #metaprogramming
- #hex
- #performance













First 10 of 18 Posts
keathley
I’m not really surprised that NimblePool has a lot of processes based on your settings. Your configured for 5 pools with 500 connections per pool.
ijunaidfarooq
I changed it to
and still
what you suggest?
500 * 2 request per second?
also why is there massive increase in binaries?
keathley
I can’t really make a suggestion on your pools since it’s dependent on the servers that you’re interacting with and what they’re capable of handling. My suspicion is that the responses you’re dealing with are quite large (since you’re dealing with images) and the processes dealing with those responses aren’t being killed. Large binaries have historically caused issues for the garbage collector. I’m not sure if that’s changed in recent OTP releases or not. Killing the process can help reduce memory bloat. You can also use recon, observer, and the built in beam tools to try to track down which processes are causing you issues.
sb8244
To expand on what Chris is suggesting. You can trigger GC manually across all processes by using
Process.list() |> Enum.each(&:erlang.garbage_collect/1). If you do this and the memory drops, then you know you have a memory leak.Here’s a post on an old memory leak I tracked down and some options for how to handler them Stephen Bussey - Elixir Memory - Not Quite Free
ijunaidfarooq
I am not interacting with servers but I am interacting with cameras,
they have an IP , port , username and password..
Also the API which I am using to upload to cloud is capable of 1000+ requests per second.
I have decreased the pool settings but isn’t it strange that with HTTPoison and Hackney the binaries were in control? or the Hackney was hiding the memory leak somehow?
ijunaidfarooq
Okay thank you.
but what are the out comes if I will let this continue to happen?
Would that crash the application at some point?
keathley
It’s really hard to say without understanding what your code is doing. I have a general idea, but in this case the details matter. It would be useful to see which processes are using up the most memory. It’s definitely interesting and worth digging into, but I can only speculate without more information.
ijunaidfarooq
Okay Thank you, I will get back to you with as much information as I can.
ijunaidfarooq
is it true that even while having no pool configuration in
{Finch, name: Everjamer},..when you do a get request, it does init one
NimblePool.init/1and when you start doing 1 get and 1 post request.It inits, 2
NimblePool.init/1?keathley
I’m not sure I understand exactly what you’re asking. If you don’t specify a pool configuration finch will use the default pool configuration.