GithubHelp home page GithubHelp logo

Comments (3)

Lukasa avatar Lukasa commented on May 24, 2024

nextOutboundStreamID is definitely thread-safe, as we guard it by an eventLoop.execute which forces a swap onto the event loop thread.

The issue here is actually long-standing:swift-nio-http2 allocates stream IDs before it has actually created the stream. It does this for a number of reasons, but it is fundamentally brittle. The result is that if you are calling createStreamChannel repeatedly and quickly you need to ensure that you actually write data on those channels in the order that you created them, or you'll see this error, where the stream channel created second sends its data first.

There are a bunch of things we can do to fix this, but all of them are quite substantial API changes. The ultimate behaviour has to be to create a new HTTP stream channel that does not expect its users to know the stream ID (that is, where the data being passed in the pipeline is HTTP2Frame.Payload, not HTTP2Frame). Then we can lazily allocate the stream ID as and when the channel sends its first payload data.

This is not the kind of thing we'd be able to fix quickly, though, so we should also investigate a quick workaround in grpc.

from swift-nio-http2.

i9 avatar i9 commented on May 24, 2024

Thanks for the prompt response! will close this and continue discussions in grpc-swift repo.

from swift-nio-http2.

Lukasa avatar Lukasa commented on May 24, 2024

Ok, tracking the underlying issue in #214.

from swift-nio-http2.

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.