Git Product home page Git Product logo

Comments (2)

carllerche avatar carllerche commented on May 29, 2024 1

Back pressure handling is built into the entire stream system (and future system) in a much more robust way than node has done IMO. Your future / stream construction represents the flow of data from the leaves (where data enters the future/stream system) down to the root future... the one you use to trigger the computation.

Since future-rs works via poll instead of push (and this is what is unique about futures-rs), none of the combinators will buffer up data. Instead, they will only operate when the entire system has capacity to handle more data. This means that buffering logic is delegated to the leaf futures aka the ones that push data into the system from the outside world (I should note that you can also add explicit buffering points by using a buffer combinator).

The reason why futures::stream::channel has the note that you pointed out is because it is a "leaf node" in your future computation. Aka, you use it to push data in.

Another point of comparison vs. node's streams. Since future-rs is entirely poll based, there is no need for a function to "pause" the stream. You simply don't poll. This is important because "pausing" a concurrent computation is inherently racy. A poll strategy has clearer guarantees.

from futures-rs.

alexcrichton avatar alexcrichton commented on May 29, 2024

Indeed! I think @carllerche covered it pretty well, in that the theory is "backpressure" is everywhere by default.

We may eventually want to add some sort of Sender::pipe method on the sending half of a channel which pipes one stream into a channel, but that should also handle backpressure by default due to the polling effects.

As I think this is basically all taken care of, closing, but thanks for the report!

from futures-rs.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.