Iex.new
Hi,
in our Team at work we have Hackathons and for next year I am thinking about to introduce Elixir. As we have todo with data processing in our daily work I planning to propose a small app that should import data in parallel from a huge csv file (let say for example a list of persons) into a database. And maybe to transform the data in between.
I think I would also like to show the results in the front end using Pheonix.
During my research I came across Flow and Broadway.
As I have not so much experience with Elixir and never used Flow/Broadway, what could be a good fit for my experimentation ?
I find this article on dev.to which seems to close to what I want to do :
Thank you!
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
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
Anyone here using Honeybadger?
My Honeybadger account is being overwhelmed with noise from some bots. Seeing a lot of
Bandit.HTTPError...
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)
D4no0
How big the CSV is? What is the policy on failure and restarts of the server, meaning do you need persistence in processing?
If you don’t have any special requirements, I would just recommend to use Oban. You can just simply stream the file contents into small to medium jobs, then process them concurrently with Oban without having to care about anything else, you will have features like rate-limiting and persistence out of the box.
Iex.new
I think something like 2GB.
I do not have any policies at the moment as I am just starting to think about the “workshop” and things that could be nice to show. As we do not have so much tome (2 days) I would like something small but that also give a good overview of what is possible to do.
joey_the_snake
Flow would be a good fit for this
dimitarvp
If you don’t want to store future and current tasks state you can just get away with
NimbleCSVandTask.async_stream/3, very easily:Flow and Broadway are awesome but for a 2GB file the above will serve you just fine. I’ve processed files up until 17GB or so, if memory serves.
Again though, if each record – or a batch of records – takes more time to process then you’ll need to have more persistent workers where
Obanwill be much more suited.Iex.new
@dimitarvp, thank you!
Yesterday I was able to implement what I wanted to do with the solution you proposed
In my process I check with the lib
file_systemif a new file was detected in a specific directory and if yes then it will proceed. Each line of the CSV file is correctly imported into a MySQL database. For that, I have used Ecto.When trying to set up Ecto, it was proposed to set up my Repo in the application.ex file like :
config/config.exs:
In the Ecto documentation, the namespace is not the same:
In my case, I have tried to define MyApp.Store but this did not work for me.
So I have some questions …
:
MyApp.Storeinstead of onlyStore?If I understand correctly the first one is to set
Storeas available Ecto Repo and the second one is for the database configuration. Correct?This is the code I ended with based on what you wrote:
dimitarvp
Glad you made it work!
I can offer you something that can accelerate the code further: you can put
Stream.chunk_every(500)afterYourCSV.parse_stream()and then theTask.async_streamwill accept a batch of 500 records (not a single record).And then you can do batch inserts – provided you don’t do Ecto validation that is. If you need validation then inserting one by one is still better.
Also
Task.async_stream’s optionmax_concurrencywill depend on your repo pool size in this case. F.ex. if your repo has a pool of only 20 connections then you should change themax_concurrencyto 20 (or even 18-19). So have that in mind as well, it’s important and you might see a lot of timeout failures ifmax_concurrencyis too high.Iex.new
thanks for the hint !
I have tried with 100 000 000 rows but only 62 733 738 have been imported.
I got some errors like:
I think I will have to tune better the pool (100) and the number of max_concurrency (100).
I will play a bit with it.
What do you think about the questions I asked in my previous answer regarding the namespace and configuration?
dimitarvp
If the MySQL instance itself is telling you “too many connections” maybe you should look into its own config – maybe it is not configured to accept that many? I mean you can allow Elixir to connect to 100 separate MySQL connections (on the same server) but if MySQL is configured to e.g. allow maximum 80 (just an example) then you’d get an error like that.
So it’s time to check MySQL’s config itself.
Yes, always scope your app’s modules. Never leave top-level modules unless you’re 100% convinced you’ll never get a collision. Which if you say “I am sure” would be famous last words because who knows who will try to integrate with your app / library in the future…
Yes, correct, hence it’s not possible to remove one or the other. The first setting comes in handy if you have several repositories.
Iex.new
Thank you @dimitarvp !
dimitarvp
I’m curious if you fix the connection errors. Please let us know.