TestingTester

TestingTester

High Memory Usage: firing off many https requests in Task.async calls has huge memory impact

Hello, I’m struggling to work through memory usage problems when trying to run many queries at once using Task.async + Task.await. I’m relatively new to Elixir + Phoenix, so bear with me.

I need to fire off multiple POST requests to a third party service at once and collect all of the responses. Here’s a simplified version of what I’m doing now.

[
  Task.async(fn -> some_func_that_makes_a_post_req(...) end),
  Task.async(fn -> some_func_that_makes_a_post_req(...) end),
  Task.async(fn -> some_func_that_makes_a_post_req(...) end),
  Task.async(fn -> some_func_that_makes_a_post_req(...) end),
  ...
]
|> Enum.map(&Task.await/1)
|> Enum.reduce(...) # do something with the data returned

I’m using hackney to send the POST requests

:hackney.post(
   "some_url",
   [
     {"Content-Type", "application/json"}
   ],
   Jason.encode!(query_body),
   [:with_body]

This seemed to work well, but once I started profiling my application I noticed massive memory spikes. My Phoenix application uses around 60-80 MB of memory at baseline, but when I spawn ~40 Tasks (which each make 1 post request) I see a massive spike up to 150-200 MB, and the processes seem to hang around for a minute or two.

Using the :observer I was able to track down which processes were hogging memory. I can’t upload images to the elixir forum yet, but I’m seeing numerous ssl_gen_statem:init/1 processes consume ~2 MB each. They stick around long after the post requests have completed and each task has been awaited.

Any ideas on what I’m doing wrong? I want to be able to send many requests at once, parse each response & format them independently, and finally merge all of the results into one Map / struct. Is there a better way to send numerous https requests at once without flying too close to the sun & running into OOM issues?

Most Liked

sdr

sdr

This post looks similar and is caused by ssl certs. Not sure if your issue is the same but it’s worth looking into.

benwilson512

benwilson512

Author of Craft GraphQL APIs in Elixir with Absinthe

Hey @TestingTester welcome!

From the numbers you’re posting, on average each HTTP request is using ~2-3mb of memory each. Whether that is expected or very high depends a lot on what you’re sending and what you’re receiving. Can you elaborate on what sort of data you’re posting, and what data you’re getting back?

Where Next?

Popular in Questions Top

electic
Hi, I am new to Elixir. I am trying to use the DateTime component to insert a date into MySQL however the there seems to be no way to fo...
New
vertexbuffer
Hello, can anybody help here..? I have a list of players and I what to delete an element, but every for loop the list is reverting to ori...
New
Qqwy
Original source of discussion: This topic on the Pragmatic Programmers’ Functional Web Development with Elixir, OTP, and Phoenix forum. ...
New
skosch
To my knowledge, put_in, Map.update etc. all have the one limitation of not automatically creating intermediate keys when needed (for exa...
New
Fl4m3Ph03n1x
About me? ( if you have nothing better to do than reading about some random guy in the internet :stuck_out_tongue: ) Hello all, this is ...
New
marius95
Hello everyone, I try to use an Javascript Event Handler in my root.html.leex file. Therefore I created a function in the app.js file: ...
New
dblack
I’ve got an issue with an app and I’ve no idea of how to troubleshoot it. I’m hoping someone here might have seen something similar. I p...
New

Other popular topics Top

nobody
Hi! In PHP: $_SERVER[‘SERVER_ADDR’] - in Elixir? Searched the docs for ip address and the web, no good results. Thanks!
New
JakeBecker
TL;DR: I’ve just released an implementation of Microsoft’s IDE-independent Language Server Protocol for Elixir. It adds language support ...
1144 54921 245
New
sen
Hi All, I set a environment variables in dev.exs , like below code. when i start server, how can i set the ${enable} value? thanks. d...
New
axelson
This post is a wiki (feel free to hit the edit button near the bottom right of this post to add your own changes!) This post collects co...
239 49084 226
New
bsollish-terakeet
Credo is smart enough to check for (something like) this: assert length(the_list) == 0 with this response: Checking if an enum is empt...
New
jason.o
In the code below, if the create action is not set to accept “extra_key” as an input, it errors out with a message shown above. Is there ...
New

We're in Beta

About us Mission Statement