nightfury17200
hello all, I want to operate on large amount of data where I pass a query to get some records and then for each record I have to perform a costly operation (creating large number of redis keys(~1000) for each record data and then deleting it) so here I want to use a stream to make the strain less. My code till now is-
Repo.transaction(
fn ->
query
|> Repo.stream(max_rows: @query_batch)
|> Stream.chunk_every(@query_batch)
|> Stream.each(fn x ->
Enum.to_list(x) |> Enum.each(fn y -> delete_from_redis(y) end)
end)
|> Enum.to_list()
end,
timeout: :infinity
)
here in this code when I tried to do -
Stream.each(x, fn y -> delete_from_redis(y) end)
in place of-
Enum.to_list(x) |> Enum.each(fn y -> delete_from_redis(y) end)
my code did not worked, please explain the reason for that also please tell me what can I do to make my current code more efficient?
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
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
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
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
Documentation
While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
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
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
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
With AI doing more of the implementation work, I’ve been wondering how much coding I should deliberately keep doing myself.
My main conc...
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
- #elixirconf-us
- #ai
- #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 9- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
kokolegorille
What was the error message?
nightfury17200
no error message the code just did nothing.
al2o3cr
Re: your specific question:
Stream.eachdoesn’t run any computation, you have to call a function likeEnum.to_listorStream.runto makeStreamdo things.A more general thought: this code returns all the rows from
querywhich neutralizes a lot of the benefit from streaming;Stream.runwill do the computation but ignore the result, if that’s your intent.nightfury17200
I read about what stream.run do and what the documentation mentioned was-
to be honest I was not able to make any sense of it hence I tried using stream.each and thought it would be similar to enum.each and would call a function for each value. Can you please explain how stream.run works?
nightfury17200
I tried using stream.run assuming that it makes all the stream command inputted in it work. the code I tried is-
but it does not work. can you point out where I am making the mistake?
al2o3cr
Stream.eachreturns a new stream that calls the supplied function as each element is generated. It doesn’t iterate by itself.Example:
Note that in the second line,
streamis bound as aStreamstruct but nothing has beenIO.inspect-ed yet.Stream.runcauses the stream to compute values but discards them and returns:ok, whileEnum.to_listaccumulates and returns the values.nightfury17200
then shouldn’t the code above your reply run here I have added
Stream.run. so first I will make chunks of data withStream.chunk_every(@query_batch)and then pass it to Stream.each for going to each chunk and then for each chunk I will pass it toStream.eachso that I can iterate over the records and then call the required function for each record, and lastly all of this is passed tostream.run()to implement this. Sorry If my understanding is incorrect.benwilson512
Your overall stream does, but you’re doing another
Stream.eachinside aStream.eachand that inner one isn’t doing anything:The inner
Stream.eachshould probably be anEnum.eachsince thexlist is already loaded into memory, streaming here doesn’t accomplish anything.nightfury17200
ok, understood. thanks