solanav
Hello everyone!
I’m currently working on a web spider/metadata extractor and because writing parsers for many file types would be too much work, I’m using libextractor.
I wrote a NIF which I learned only allows for functions that return in less than ~1ms. So I just changed this:
static ErlNifFunc funcs[] = {
{ "extract", 2, extract }
};
into this:
static ErlNifFunc funcs[] = {
{ "extract", 2, extract, ERL_NIF_DIRTY_JOB_CPU_BOUND }
};
The problem: it seems like the scheduler gets to 100% utilization which is bad because the spider downloads a lot of files in parallel so it becomes impossible to do things like launch the observer if I’m calling the NIF. Any idea if this is normal? Is there a way I can prevent the NIF from blocking the rest of the system?
Here is a picture of the observer while I test the calls to my main function:
Thanks!
Trending in Questions
Hey guys,
I’ve got a huge CSV ( around 10 GB ) that needs to be processed hourly
Do you guys have any suggestions what is the best prac...
New
Hello!
Could someone please give me a help/sample code, how to delete a file from s3 using waffle/waffle_ecto from Phoenix app.
I creat...
New
I have what I’ve heard referred to as a “lookup table” in my database. This is a way of assigning codes to common values. One common lo...
New
What approach to take when sending live updates to “random” users Hi! I have a question, I have a little chat app, and when I create a DM...
New
Anyone here using Honeybadger?
My Honeybadger account is being overwhelmed with noise from some bots. Seeing a lot of
Bandit.HTTPError...
New
I’m seeing that a list inside a Kino.DataTable will be interpreted as a charlist, even if the Kino.configure() is set to charlists: :as_l...
New
Hi, I’ve just set up an application with ash_authentication. There is only magic link strategy for now, so there is no confirmation add o...
New
Other Trending Topics
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
New
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
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
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
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
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
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #blog-post
- #elixir-ls
- #ai
- #elixirconf-us
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming











Showing Posts 1 to 10- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
mpope
Is it possible to run
erlang:system_infoto checkschedulers_state,scheduling_statistics,dirty_cpu_schedulers_online,dirty_cpu_schedulersAnd the most useful would be to check schedulers using microstate accounting?
msacc:start(1000), msacc:print(), msacc:stop().Might not be wise to use it in a production env…ityonemo
Can you set the number of dirty nif schedulers to number of cores - 1? Probably easiest way to test this is to do the following at startup:
NobbZ
Are you sure that your NIF is CPU bound and not IO bound?
solanav
I don’t know how useful this is, I’m just running iex -S mix on my NIF, it’s not running in production or anything, but I hope it helps.
Here I did :msacc.start(1000), ran the NIF, printed and then stopped.
solanav
So I tried doing that and it seems like the result is the same, probably because the number of dirty schedulers was 12 so I guess not much changed.
solanav
Well I am not. Not really. I know libextractor (the library I am wrapping with this NIF) does not wait for user input and does not connect to the internet. But I think it may be running some code stored on dynamic libraries.
But I have tried changing it to IO scheduler and even though the peak was of less duration, it still peaked at 80-100%. The graph was almost the same but no dotted line, just a normal one.
nonblockio
It seems that the performance surge only least for one or two seconds from the chart.
:msacc.start(1000)is kinda too short to catch the vibration since it only analyze scheduler in 1000ms. Could you increase the time of:msacc.start/1and try to fit the surge in that period?nonblockio
And could you provide the OTP version?
solanav
I’m using version 23.1 (tried both on WSL and on a ubuntu 20.04 virtual machine with the same results).
solanav
I can’t get it to work, the extractor won’t start running until :msacc.start() has finished. Is this code alright?