Coder Social home page Coder Social logo

Comments (6)

jonhoo avatar jonhoo commented on June 15, 2024

It seems reasonable to me for us to ensure that we don't call flush after we've called close 👍 Want to take a stab at a PR?

from async-bincode.

xmakro avatar xmakro commented on June 15, 2024

Thanks for the quick response Jon. Please let me know if you see issues with the PR

from async-bincode.

xmakro avatar xmakro commented on June 15, 2024

I found that the send logic is actually a bit more fiddly. The AynscBincodeWriter has an unbounded buffer size which can lead to OOM errors in common scenarios. Example:

let stream = AsyncBincodeReader::<_, Example>::from(BufReader::new(File::open("inputfile").await?));
let sink = AsyncBincodeWriter::from(BufWriter::new(File::create("outputfile").await?)).for_async();
stream.forward(sink).await?

For large files, if the stream produces items quicker than the sink can write, then the buffer of the AsyncBincodeWriter grows until the program runs OOM.

Instead we should rely on the buffer of the BufWriter for this. I changed the PR that the buffer of the AsyncBincodeWriter only contains one serialized item at a time.

from async-bincode.

jonhoo avatar jonhoo commented on June 15, 2024

The OOM is unfortunate, though I also worry about this being a decently-sized performance regression for anyone currently using the crate, as they'll now need to add a BufWriter in front of their output if they want to batch write operations to the underlying writer. May still be worth doing, I just worry about it.

As for #12, I guess the thinking is that changing the call of poll_flush to poll_ready in poll_close is fine because in order to get to the first call to poll_close, we must have already emptied the buffer, and thus the call to poll_ready must no longer be calling poll_write on the underlying writer on re-entry? It does raise the question about whether it's okay to never call poll_flush as part of poll_close though. I thought the proposal was to still call poll_flush in our poll_close, but to only do so if it hasn't already returned Ok (i.e., if we haven't already called the underlying poll_close at least once already)?

from async-bincode.

xmakro avatar xmakro commented on June 15, 2024

Thank you for the thorough review Jon. I added some documentation about batching write operations. Unfortunately, I do not see any way around this change since the AsyncBincodeWriter must stall instead of growing memory. Introducing a buffer size argument for AsyncBincodeWriter seems wrong, as that is the job of BufWriter. Maybe we can do a major version increase to 0.8 so users have to opt-in to this change?

Re poll_ready in poll_close: Yes, this is my thinking, I added your description as a comment.

Re poll_flush in poll_close: I think this is not needed, the documentation of futures::Sink::poll_close describes that the stream is flushed when poll_close is called.

from async-bincode.

jonhoo avatar jonhoo commented on June 15, 2024

I agree, I think this is the correct change. And I'm okay with not bumping the major version — this isn't a real breaking change, and I'd rather people get the improvement 👍

And thanks for updating the docs + comments in there!

from async-bincode.

Related Issues (6)

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.