-
There's some kind of race condition within `bounded_join`. When the demand causes sufficiently large messages to be sent, the join direction being matched against is `nil`. I'm currently working aroun…
-
```
result = 1..10_000 |> Flow.from_enumerable |> Flow.map(fn x -> "abc" |> String.duplicate(x) end) |> Enum.map(fn x -> "xyz" x end) |> List.flatten; length result
```
-
-
Looking through the code I found a theoretical issue or at least a potential source of confusion.
Let's look at an example:
``` elixir
enums_with_urls
|> Flow.from_enumerables(stages: 4, max_d…
-
I've been playing with an extension for Flow that is either a good idea or I'm thinking about it wrong.
Say I have 2 or tasks that must be called - and these tasks are not CPU bound (instead, IO Bo…
-
I'm not sure where I should open an issue, I hope this repo is okay.
My app is storing quite a lot of data to postgres db using Postgrex directly (without ecto).
The app accumulates a 'buffer' of …
-
The current blockchain synchronization process uses a GenStage pipeline as follows:
![add_block 1](https://user-images.githubusercontent.com/1004935/29618389-5fd3feaa-87ee-11e7-93ec-eaf49e65ed82.jp…
-
Hey. So I've been reading through your library to determine if its appropriate to use in a production codebase that need to handle fairly modest load but with strong safety guarantees. There's one pie…
-
When setup multi nodes at local, e.g.
iex --name ac1@127.0.0.1 -S mix
iex --name ac2@127.0.0.1 -S mix
iex --name ac3@127.0.0.1 -S mix
After running these nodes and manually ping them for each …
-
Hello. Thanks for the gun!
I have a back-pressure system written in Elixir using GenStage where I send a lot of requests from dynamically spawned processes. After request is made, the processes di…