-
Related to: https://github.com/elixir-lang/gen_stage/issues/132
I have malformed CSV file:
```csv
this,is,malformed,"csv,data
```
and even if I do:
```elixir
try do
file_path…
-
Hey,
I have an Elixir GenStage step that needs to hit 5 different XML data API hosts about 20,000 times per minute each (so 100K total requests in 1 minute, across 5 different hosts). I'd like to s…
-
I have this code:
```
defmodule T do
def hello do
r = Flow.from_enumerable([1,2,3,4,5,6])
|> Flow.partition()
|> Flow.map(fn x -> { x, x } end)
|> Flow.partition()
|> F…
-
Hi, I'm needing to send 10M desktop web pushes in < 1 hour.
So far I see a few articles about how to do this with Elixir, here's the best article I think:
https://blog.discordapp.com/how-discor…
-
When using a Flow as the enumerable for the events as a GenStage producer, the process can receive consumer messages causing it to error. Interestingly enough, most of the messages to get correctly ro…
-
I'm a little concerned that this library to some extent, but more particularly the associated [blog post](https://pragdave.me/blog/2019/01/07/component-library.html) could lead to Elixir new-comers th…
-
I'd like to be able to specify a longer timeout than 5000, and I know that this is an option than GenStage accepts.
In addition to :max_demand and :min_demand, could we get a :timeout option that's…
-
I'm starting to use Quantum on my app, I already use Swarm for other functionality, while experimenting (killing a node from the cluster) I get an error on the remaining running nodes, which sometimes…
-
Hey all,
On my team, we have been using Flow and GenStage for the past 9 months or more. We use it to process streams of data from a number of different sources, and to process a lot of data throug…
-
It would be useful to run the Flow test suite against multiple versions of Elixir. A CI setup with Travis could help with that.
Right now it seems Flow and GenStage progress in lockstep which is fi…