sabri
Hello,
I have found lovely CSV library that I will be using to insert CSV files into postgres.
But there are some issues I am wondering about, as I am fresh in elixir.
Ok, here is the sample code I will be using to insert the CSV into DB:
File.stream!("ignore/customers.csv")
|> CSV.decode
|> Enum.each(fn
{:ok, [id, nm, csr, sal]} ->
Customer.changeset(%Customer{},
%{masterid: id,
custname: nm,
csrid: String.to_integer(csr),
salesid: String.to_integer(sal)})
|> Repo.insert
{:error, message} ->
# Whatever you want to do with invalid rows
end)
My questions are:
-
In the
Enum.eachwhat is the time interval between each call to theRepo.insert? can I control this to make sure that my DB won’t get over-pumped with queries? -
As I need to implement a progress bar in the browser while the CSV being inserted into DB, Can I broadcast a progress message in successful
Enum.eachto client using channels? for ex: after|> Repo.insertto broadcast message as:
MyApp.Endpoint.broadcast client_topic, “progress”, %{
progress: progress_number
}
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










First Post!- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
minhajuddin
If you have a lot of records and don’t need data validation use
COPYto pipe the data to postgres. This is very fast.The time between each insert is actually the time it takes to insert the record, So you insert a record and then another. So you probably don’t have to worry about overloading the server. Also, broadcasting a message should also be possible using the technique you mention
Most Liked
hq1
I recently faced a similar task, so hopefully some of my experiences will come in handy.
COPYwas my first thought. It’s the most efficient way to import CSV data to postgres, period.It’s also the least flexible way from an Elixir app perspective. Building a custom query, handling separators, error handling/reporting, testing, finally “all or nothing” semantics (it’s a single transaction).
If you’re OK with the above,
COPYis for you.If you’re troubled with performance and still don’t want to completely sacrifice flexibility, consider using nimble_csv. Thanks to super clever implementation (metaprogramming and binary matching), sequential parsing is way faster than the library you’ve mentioned, that attempts parsing in parrallel (IIRC 5M rows in 20 seconds vs 2 minutes according to my microbenchmarks).
nibmble_csvworks with Streams too, so you’ll be fine when it comes to memory spikes.If you care about parallel processing later on, to make the DB insertion efficient (by utilizing the connection pool and bulk inserts), here’s what you can do to make it reasonably fast:
process_in_parallelimplementation is entirely up to you. If you’re on Elixir 1.4, you may useasync_stream; if lower than that,parallel_streamlooks like an OK choice. Just make sure the number of parallel processes is somewhat in line withSystem.schedulers_onlineand your database pool size. Make it configurable, measure, rinse and repeat. How scheduling works.Your
chunk_handler_fn/1will receive.. a chunk of 1000 decoded rows. You may prepare changesets there, have them validated, filter the chunk based onvalid?property, remap the columns according to a custom mapping rule, build a list of maps to be inserted (changeset.changesis already there for you, perhaps needs to be enriched a little) and push it throughRepo.insert_allin each individual process.Caveats:
on_conflictoption if the need be to perform an upsert/ignore constraint errors.Stream.with_index. Note, that you will have to calculate the offset based on the header presence (the very first row gets either skipped or included).nimble_csvwill brutally crash on bad rows, e.g. discontinued quote. You might want to rescue from (catch)NimbleCSV.ParseErrorand convert it to something useful ({:error, {:parse_error, reason}}tuple most likely).Hope this helps.
Cheers
edit added a note about
NimbleCSV.ParseErrorhandling, fixed grammersabri
Thanks, I’ve finally implemented it!, but I have to admit, that I had to change my mindset to do it
Here is a sample chunk:
As I have used
Stream.mapin the pipeline:Thanks all for support
minhajuddin
I did a screencast covering this here https://www.youtube.com/watch?v=YQyKRXCtq4s