Settings

Theme

Cap'n Proto 0.9

capnproto.org

144 points by Shelnutt2 4 years ago · 37 comments

Reader

hamandcheese 4 years ago

Aside from the speed benefits, are there any other major advantages of Cap’n Proto?

I’ve been using grpc/protobuf with Java and Scala. Overall I like it, but the grpc Java library does feel like it comes with a lot of opinions baked in. As an example, I was looking in to implementing automatic retries on the client side for certain classes of error. Grpc Java has some experimental retry support, but it seemed tightly coupled to their also-opinionated way of doing service discovery. I can see why you might want the server to inform clients how to do retries, keepalives, etc. But for less sophisticated operations (read: me) it is frustrating and over complicated. Why can’t I just specify a retry policy when creating a client stub?

Still, it’s better than anything else I’ve seen.

But I do long for a simpler alternative. Is that Cap’n proto? Seems like for Java there is only 3rd party support for serialization only, and not RPC.

  • caturopath 4 years ago

    The 'cap' in Cap'n Proto is for https://en.wikipedia.org/wiki/Capability-based_security -- Cap'n Proto isn't actually an RPC system, it's a capabilities framework. You can work with results without actually having the results, e.g. before the results exist.

    • dpwm 4 years ago

      > You can work with results without actually having the results, e.g. before the results exist.

      This results in cool things like promise pipelining. It is very interesting how it can simplify interface design, and there are examples on the RPC page[0].

      [0] https://capnproto.org/rpc.html

    • hamandcheese 4 years ago

      > The 'cap' in Cap'n Proto is for https://en.wikipedia.org/wiki/Capability-based_security

      This seems to go completely unmentioned on the home page, other than the word “capability system” in the very first sentence.

      What does capability based security mean for a data interchange format? The notion hardly makes any sense to me.

      From the homepage: “Think JSON, except binary.”

      What would JSON look like with capability-based security?

      > You can work with results without actually having the results, e.g. before the results exist

      This sounds exactly like promises, or perhaps a functional effect system. What does this have to do with data serialization?

      • lucozade 4 years ago

        Cap'n Proto has a remote object system using interface references.

        When a reference is constructed, only the creator has the capability of invoking the interface. If the reference is then passed to another server, they and only they have the capability of invoking the interface.

        That's what they mean by capability.

      • kentonv 4 years ago

        Cap'n Proto has a serialization layer and an RPC layer. The capability-based security part is mostly a feature of the RPC layer, not the serialization. The serialization does assist slightly in defining a way to encode remote references.

        > This sounds exactly like promises

        Yes, the API is Promise-based. Both Cap'n Proto and JavaScript Promises are inspired by the E programming language, which is a strict object-capability language.

      • c-cube 4 years ago

        It's a promise you can send to other processes, even to the machine that is supposed to fulfill that promise. That allows batching of calls that depend on one another.

  • PhilippGille 4 years ago

    > But I do long for a simpler alternative

    If you're happy with protobuf but just not with gRPC, you can check out Twirp [1] and DRPC [2]. Both aim to be simpler alternatives while keeping protobuf for serialization. Their development is Go focused though.

    [1] https://github.com/twitchtv/twirp

    [2] https://github.com/storj/drpc/

  • richieartoul 4 years ago

    I also agree that the gRPCs libraries (in all languages) tend to be opinionated, and most annoyingly, opinionated about the wrong things.

    That said I also haven’t found anything better either and the technology is popular enough that I stick with it and just work around the limitations.

    For your specific case I highly recommend ignoring the built in GRPC retry nonsense and using the Java failsafe library retry policies instead. That has worked well for my team at least.

    • chii 4 years ago

      > annoyingly, opinionated about the wrong things.

      what's what opinions are - they necessarily must be wrong to some people. Otherwise, it'd just be called facts!

      • setr 4 years ago

        Having an opinion is not the same as having a good opinion. There’s a range of quality to the matter

        • edoceo 4 years ago

          The point is that "good" and "quality" is subjective and highly dependent on use-case.

          • setr 4 years ago

            And my point is that it’s not — the starting pieces may differ, and thus the conclusions, but there’s clearly a qualitative difference between the opinion of an expert, and the opinion of a novice. If only that the expert brings far more knowledge into his opinion than the novice. But also in that his opinion is of better foundation, of more supporting infrastructure, of more stable reasoning, and can in general be both better explained and better defended.

            Opinions don’t exist in a void — they’re still the outcome of argument, and can easily be compared by that ruler.

            And in this case, it’s trivial to imagine utterly terrible opinionated outcomes — use hyphen to represent addition, having functions like c’s get() (impossible to use correctly, and having defaults that are backwards in the common case.

            It’s also trivial to imagine what a poorly reasoned opinion might look like: “ what's what opinions are - they necessarily must be wrong to some people. Otherwise, it'd just be called facts!”

      • ithkuil 4 years ago

        Some try to confuse this aspect by calling opinions "best practices"

  • moonchrome 4 years ago

    If you're looking for a binary serialisation library that generates simpler/more readable code and doesn't do parsing look into flatbuffers. Going through generated protobuff code in . NET last time I used it was vomit inducing. Flatbuffers don't provide RPC AFAIK so not comparable with gRPC

    Capnproto tried to do too much with distributed objects and RPC, I was looking into it years ago but it still seems like the C++ impl is the only one that supports those advanced concepts.

    • Communitivity 4 years ago

      For your own sanity, please stay away from Flatbuffers. The key here is 'doesn't do parsing'. I used it, and wound up writing a ton of extract code to unpack things in the way I wanted. Behind the scenes everything in FlatBuffers is stored in a byte array or byte buffer. It can be made to work, but protobuffs worked better for me.

      Caveats:

      1) I needed to work in C++ and Java

      2) I was transporting serialized messages over ZeroMQ

      • kortex 4 years ago

        At one point I dug a bit into the python impl of Flatbuffers, and while I forget the exact details, I was struck by how inefficient it looked. Basically every accessor call requires parsing/casting (into python) bytes into objects, without any awareness of whether it had been parsed before.

    • jiggawatts 4 years ago

      Apparently at C# implementation supports promise pipelining: https://github.com/c80k/capnproto-dotnetcore#features

      It is missing many nice-to-have features however and is also apparently unmaintained, with the last release 16 months ago...

      • naasking 4 years ago

        No activity doesn't necessarily mean unmaintained, it could just mean usable and stable/bug-free.

  • mixedCase 4 years ago

    >are there any other major advantages of Cap’n Proto?

    Parametric type polymorphism AKA generics.

    I regularly think of Cap'n Proto when working with gRPC or GraphQL, despite not ever having had the chance to use it in a real project.

  • tyingq 4 years ago

    >are there any other major advantages of Cap’n Proto

    There's a list at https://capnproto.org/ under "other advantages".

  • asimpletune 4 years ago

    The actual language itself is very nice https://capnproto.org/language.html, and it has a bunch of really great security features. I actually think of it the other way around and don't understand why it's not used more.

    • jchw 4 years ago

      On paper I agree. However it does have a couple of problems:

      - It has yet to escape the ZeroVer versioning scheme and produce a “stable” API.

      - Maturity for languages other than C++ can be a bit spotty.

      - The RPC protocol is cool, but apparently most of it was never implemented. The C++ implementation only implements “level 1.”

      Cap’n Proto is undeniably cooler than Protobuf, although in practice I worry primarily about maturity and support.

      • aseipp 4 years ago

        It's fine if most implementations of RPC are Level 1, even the main C++ bindings; due to the design of the protocol there only needs to exist a single Level 4 implementation written in any language, and all other implementations can then piggyback on it for their own needs beyond Level 1 (so cap proxying, etc. all come "for free" once someone does that.) I've mentioned Level 4 support to Kenton a while back and the basic answer was "I haven't needed it so it's not done." It's not intended for there to be a Level 4 implementation in every language or anything.

        The biggest issue is undeniably that the language maturity isn't quite as solid as the alterntaives. You've got C++, Rust, Python, C#, maybe one or two others. Only C++ is first class. So gRPC and Protobuf win here. But the actual RPC design and IDL design of Cap'n is solid and way more well engineered than the alternatives, IMO.

        I have no opinions on the ZeroVer thing. Cap'n Proto is very stable in my experience but I see why others would raise their eyebrows.

        • heavenlyblue 4 years ago

          Python implementation is super low quality.

          A lot of their tests were checking for Exception raises and were basically testing AttributeError due to a change in interface instead of the initial error they were testing for.

      • ocdtrekkie 4 years ago

        FWIW, Sandstorm has been using Cap'n Proto since 2014, and I don't think anything done with Cap'n Proto has really broken it since, despite Cap'n Proto development largely having moved on to support Cloudflare Workers development.

        With it being fundamental to Cloudflare Workers at this point, you should assume it's support will be solid for at least as long as Cloudflare Workers is a significant part of Cloudflare's business.

      • dpwm 4 years ago

        > It has yet to escape the ZeroVer versioning scheme and produce a “stable” API.

        Having worked with it over years, the API stability is there. Backwards compatibility is given very strong emphasis, , even with early versions.

        > Maturity for languages other than C++ can be a bit spotty.

        The language support is a pain at times, especially as the more esoteric language support tends to be built with a specific use case in mind and may not use and implement all the features of the protocol in sometimes undocumented ways.

        People can and do write implementations and contribute to existing ones. The C++ and its Javascript and Python bindings work well enough for many use cases. The Rust ones are also fine. There are probably others that have good support now, too.

        > The RPC protocol is cool, but apparently most of it was never implemented. The C++ implementation only implements “level 1.”

        The RPC protocol is perfectly usable, just not for the higher levels – which all do things not found in other RPC systems. Level 2 can be trivially implemented between client and server at the app level, as anything similar would need to be in any other RPC system. Level 3 sounds way beyond standard RPC needs.

      • dureuill 4 years ago

        While it is technically not 1.0, I have yet to see a breakage and I have been using it since 0.7.

        The language maturity one, I can concur though. The rust implementation has been fine, but pycapnp was plagued with memory leaks until recently, and curre tly has performance problems[1] that makes it unsuitable for my use case.

        As for the level 2+ protocol, it looks cool on paper, but it looks like a lot of added complexity to address an advanced use case.

        The language itself has generics and sum types, which makes it much better at modelling the problem domain than protobuf.

        [1]: https://github.com/capnproto/pycapnp/issues/256

appleflaxen 4 years ago

I am a huge Kenton Varda fan. his sandcats platform was genius. I'm happy to see it open sourced, but sad to see the development slow down.

great to see he is still pushing cap'n proto forward!

rawoke083600 4 years ago

Very good. Where does the "speed increase" comes from ? Better encoding scheme or better decoding implementation ?

lilyball 4 years ago

What will it take before it’s declared as 1.0?

  • kentonv 4 years ago

    There's a change I want to make to the kj::AsyncOutputStream interface, to make it have an explicit `end()` method rather than assuming EOF on destruction. That's backwards-incompatible, so I don't want to declare 1.0 until I get around to doing it...

    Also, I need to make a web site for KJ.

  • Tempest1981 4 years ago

    Maybe never, if ZeroVer is the new hotness...

    https://news.ycombinator.com/item?id=28154187

SV_BubbleTime 4 years ago

Is anyone using a non-self describing schema format like this in C?

I used Protobufs for awhile and really didn’t like the C options.

Keyboard Shortcuts

j
Next item
k
Previous item
o / Enter
Open selected item
?
Show this help
Esc
Close modal / clear selection