You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, all streams listen to a single source stream and pick up data which is relevant to them.
There needs to be some kind of sharding mechanism (based on stream name) to improve performance when there are a large number of streams - That way each stream only consumes from the source shard which is relevant to them.
...Maybe in some kind of tree hierarchy - That would allow stream-demux to achieve O(log n) time complexity with respect to the number of streams.
The text was updated successfully, but these errors were encountered:
Currently, all streams listen to a single source stream and pick up data which is relevant to them.
There needs to be some kind of sharding mechanism (based on stream name) to improve performance when there are a large number of streams - That way each stream only consumes from the source shard which is relevant to them.
...Maybe in some kind of tree hierarchy - That would allow
stream-demux
to achieveO(log n)
time complexity with respect to the number of streams.The text was updated successfully, but these errors were encountered: