> On Nov 11, 2017, at 10:36 AM, Michael Welzl <[email protected]> wrote: > > >> On Nov 11, 2017, at 10:06 AM, Tommy Pauly <[email protected]> wrote: >> >> Hi Michael, >> >> Just a couple initial notes that may help: >> >> - The version diff you should look at is between -01 and -03. -02 is the >> same as -03, but had a typo. >> >> - You've mentioned previously that you thought that Post requires both peers >> to use that API. That is absolutely not the case in any way. Having >> implemented Post myself, I am only communicating to "legacy" servers that >> know nothing about Post. I think this fundamental understanding needs to be >> cleared up before coming to any conclusions. We can discuss during the WG. > > Oh?! That would be fantastic!! But I stumbled over a number of things that > require a system on the other side, or they just couldn’t happen (like the > “carrier forking” notification I quoted below - but there were more). If you > say you can talk to a “legacy” server that knows nothing about Post, WHAT > does that server speak? Legacy which protocol? Maybe it’s just a matter of > me thinking TCP, and you thinking TLS… dunno! Tell me :)
So, since Post (and TAPS in general) isn't defining any new protocol features, we need to of course be compatible with all existing protocols. Certainly, some functionality is a bit degenerate in some cases. Whatever the server speaks, the client needs to conform to. So, we use our Post implementation for raw TCP, raw UDP, TLS over TCP, HTTP/2 Streams over TLS over TCP, QUIC streams over UDP, etc. These are all standard server configurations, but Post offers a client application a single set of APIs to talk over any of these protocols. In the case of "Carrier Forking", that's essentially what you say to the protocol stack when you want to open a new stream to the same place. So, when I call "fork Carrier", it turns into: - For raw UDP/TCP or TLS (or anything that is mono-streamed), open a new five-tuple to the same remote endpoint - For HTTP/2 and QUIC, open a new stream on the same connection > > >> - The point of the API is to give the shape of the application interaction, >> which is why you find it general. I believe that many of the >> protocol-specific options like you mention (disabling Nagle, >> retransmissions, etc) don't belong to this main abstract API draft, but to a >> different document that goes into how to configure options that can be used >> for setups like TCP/UDP. Again, in my implementation of Post, all of these >> options exist as part of the Configuration object mentioned in the draft. >> However, as I'll discuss in the WG, I believe that the general shape of the >> API needs to be defined to be more-forward looking than just what we've >> specified with the minset for TCP/UDP/SCTP. Essentially, these become a set >> of Configuration options that can be used, but as transport protocols >> continue to evolve (and when we need more protocol-specific options), we >> need to be able to expand. Certain aspects of the minset, like the >> connection state management, are of course general and common enough to be >> part of the highest level of API description. > > It’s clear to me that we want a higher abstraction level than what the list > from minset has - e.g., rather than a DSCP value, it would be better to > specify general requirements (low latency or such) for a carrier. Rather than > saying “disable Nagle”, we could also say “ low latency, even if it comes at > the cost of some overhead” - we do such things in the NEAT API too. You’re > focused on the interaction with the application (e.g. callback-based instead > of traditional socket-style) - which is fine, but I think doesn’t have much > to do with the actual protocol choice. > > As for being more forward-looking, I wonder what the new transport features > are that we’re missing out on (things that apps really see). I follow QUIC > from a slightly too large distance (I simply run out of cycles there :( ), > but so far I’m not sure there’s anything we’d be missing (but that’s maybe > also because I’m not an HTTP/2 expert either). Except security of course, but > there the argument is perhaps that it’s enough to consider falling back to > TLS? QUIC is using TLS 1.3, so it can give equivalent security properties to HTTP/2. Doing fallback between these is definitely an important feature. I think this flexibility is why the API needs to allow per-protocol configs. > > As for how you represent Nagle etc. in your code, that sounds good to me, but > I see an issue in that so much transport functionality is simply not covered > by the draft. E.g., the packet sizes / fragmentation thing is important too … > yes that’s lower level stuff, but UDP-based applications will only get > inefficient if they don’t get this information exposed, which risks having > app programmers move to the old ways again IMO. A Post API definitely allows access to IP-packet level configuration and metadata. However, you're right that the draft doesn't specify this in detail now. I still think that may be a separate doc, but yeah. > > So, the general design approach of post-sockets is IMO fine, but what I’m > missing is a long section with the nitty-gritty details on how such a system > would really be implemented (not the happy eyeballing bit, this is fine to be > elsewhere - but “how would this work with current protocols”). If I was to > implement it from the current draft, I’d have a ton of question marks - e.g. > the draft convinced me that there must be a system on both sides (this issue > is also not discussed in the draft). Getting feedback on how to clarify this for the implementer will be really important, so thanks for this feedback! I'd also like to discuss with the WG the scope of various documents that we want to produce. If you have one document that does the abstract connection-management and I/O API and all the protocol options and the racing/fallback strategy, that would be a very long and complex doc. Best, Tommy > > Cheers, > Michael > > _______________________________________________ > Taps mailing list > [email protected] > https://www.ietf.org/mailman/listinfo/taps
_______________________________________________ Taps mailing list [email protected] https://www.ietf.org/mailman/listinfo/taps
