j4p3
I’m processing some large-ish datasets by streaming CSV input, and I was curious if this actually contributed to speed or if it was merely keeping the memory footprint down.
To find out, I ran some simple benchmarking:
def process_stream(length) do
1..length
|> Stream.map(&:math.sqrt(&1))
|> Stream.map(&:math.pow(&1, 2))
|> Stream.run()
end
def process_enum(length) do
1..length
|> Enum.map(&:math.sqrt(&1))
|> Enum.map(&:math.pow(&1, 2))
end
Benchee says the enum mapping is actually a bit faster:
Comparison:
enum 1.01 K
stream 0.76 K - 1.33x slower +0.33 ms
Does this seem correct? Is it generally true that streams - accumulating a bunch of lambdas on each input and then executing them all at once, rather than making multiple passes through the input list - aren’t any faster?
Trending in Questions
I’m working on a project that simulates the bumbl example in the programming phoenix book. It acts almost like an email client. We have a...
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
Hello,
I know there is an approach for handling lists that allows for optimized traversal, but I can’t recall the specific method (somet...
New
So my question is quite simple and i have found no conclusive answer on forum, google or AI.
Should we use :erlang.float for Integer to ...
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
If a change or preparation module uses Ash.Changeset.get_argument/2 or Ash.Query.get_argument/2 (or any of the other get_argument functio...
New
apply_graft/2 doesn’t rewrite an add_many sub-workflow’s deps on an add step. Grafted jobs cancel with “upstream job was deleted”
Version...
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
Hi there! We created Gust: A task orchestrator inspired by Airflow.
For those who have never heard about Aiflow, it’s a Python-based wor...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Xamal is a deployment tool for Elixir apps that deploys native releases to bare metal servers over SSH. It’s a port of GitHub - basecamp/...
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
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #library
- #deployment
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #ai
- #elixirconf-us
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










Showing Posts 1 to 5- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
cenotaph
It is literally apples and oranges at your comparison points.
Streams are memory, process, and CPU cycles efficient ways to handle very large data, continuous or unknown length data.
Doesn’t make sense to performance benchmark them against enumerations, you will get some stream overhead.
The easiest way to wrap your head around is try opening a 20MB text file with any IDE that loads the file. Very likely it will crash or take ages to load.
tailorheadthe same file or use an IDE that supports streams - nano, vim - to open the same file. IT will open instantly, thanks to the streaming capabilities. The Stream (data) keeps flowing and implemantation manages the necessary operations abucketat a time.Imagine displaying latest 100 visitors for your website with the visit count from your logs with
100_000_000_000linesWith enums
You will either run out of memory or process will be killed by the OS or freeze or take a long time.
with streams realising you need the only first 100 of reversed list so it will start optimisations and provide you with the result in a reasonable time.
dmitrykleymenov
Good catch, always thought
StreamMUCH faster thanEnum. Made some additional research and have got:Only on that scale
Streambecomes faster thanEnumWith two operations in a row(like in the first post) and with length equal 10000, i’ve got the same results(
Streamis 1.33 slower), but with length equal 10, it’s almost twice slowermattbaker
A better test might be to read and process your CSV using tools in Stream and then do it again without streaming (presumably you’re using functions in Enum).
Whether a tool will provide better performance depends on the sorts of problems you’re solving, and will probably be way more interesting than trying to benchmark working on a range of numbers! Definitely try it on some small, medium, and massive files and compare notes.
dimitarvp
To me streams were always about being more memory efficient and protecting the app against huge inputs that could bring down a node or a container.
Only from a certain scale and onwards do streams become a little bit faster as well but that’s very dependent on the task to be performed, as you yourself have discovered.
j4p3
José Valim on this on this topic during this year’s Advent of Code: by streaming you’re trading CPU for memory. And yes, stream will be slower, depending on the input size.