dashbitco / broadway

Concurrent and multi-stage data ingestion and data processing with Elixir

Home Page:https://elixir-broadway.org

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Possibility to update Pipeline :context ?

ifoo opened this issue · comments

commented

Is there a possibility to update the :context variable of a Broadway pipeline during runtime?

The use case is that I have some sort of configuration, that tells the processors how to handle the messages, and it would be nice to update those settings without having to restart the pipeline.

Not possible because those are different processes. If you have mutable configuration, store them in ETS, and have them read from ETS instead. :)