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
i use many streaming library, and they both have rate-limit buffer control function.
such as: buffer (1000 records <> 1s unit timer <> 10 Mb/s), any condition will emit record to downstream.
i don't know whether the function can be implemented in conduit,
or there's any exist similar library meet those requirement?
The text was updated successfully, but these errors were encountered:
This kind of buffering is usually handled outside of the conduit pipeline itself, since a conduit pipeline is half duplex, not full duplex. Depending on the exact functionality you're looking for, it may be possible to achieve what you want directly in the pipeline. The stm-conduit library (which I'm not the author of) provides a lot of these higher-level combining features.
i use many streaming library, and they both have rate-limit buffer control function.
such as: buffer (1000 records <> 1s unit timer <> 10 Mb/s), any condition will emit record to downstream.
i don't know whether the function can be implemented in conduit,
or there's any exist similar library meet those requirement?
The text was updated successfully, but these errors were encountered: