What are the biggest pros and cons of Apache Thrift vs Google's Protocol Buffers?

link|improve this question
2  
As a side note, Marc Gravell maintains a library for working with Googles protobuf called protobuf.net and it's at code.google.com/p/protobuf-net – RCIX Sep 27 '09 at 1:08
feedback

9 Answers

They both offer many of the same features; however, there are some differences:

  • Thrift supports 'exceptions'
  • Protocol Buffers have much better documentation/examples
  • Thrift has a builtin Map and Set type
  • Protocol Buffers allow "extensions" - you can extend an external proto to add extra fields, while still allowing external code to operate on the values. There is no way to do this in Thrift
  • I find Protocol Buffers much easier to read

Basically, they are fairly equivalent (with Protocol Buffers slightly more efficient from what I have read).

link|improve this answer
4  
So did any of these points change in the last 4 years? – Janus Troelsen Feb 20 at 16:46
feedback

Another important difference are the languages supported by default.

  • protobuf: Java, C++, Python
  • Thrift: Java, C++, Python, PHP, Ruby, Erlang, Perl, Haskell, C#, Cocoa, Smalltalk, OCaml

Both could be extended for other platforms, but these at the languages bindings available out-of-the-box.

link|improve this answer
6  
protobuf has excellent ruby support github.com/macks/ruby-protobuf and code.google.com/p/ruby-protobuf. I'm using protobuf from C# (3.5) and Ruby, C# serializing the data, and when required, Ruby deserializing and working on the task. – Bryan Bailliache Feb 24 '11 at 14:04
5  
There is a library for protobuf on .NET: code.google.com/p/protobuf-net – Jordan Mar 24 '11 at 5:31
3  
code.google.com/p/protobuf/wiki/ThirdPartyAddOns lists PHP, Ruby, Erlang, Perl, Haskell, C#, OCaml plus Actiona Script, Common Lisp, Go, Lua, Mathlab, Visual Basic, Scala. Thought these are all third-party implementations. – Gatis Dec 28 '11 at 23:23
feedback

RPC is another key difference. Thrift generates code to implement RPC clients and servers wheres Protocol Buffers seems mostly designed as a data-interchange format alone.

link|improve this answer
1  
That's not true. Protocol buffers define an RPC service api and there are some libraries available to implement the message passing. – Stephen May 8 '10 at 2:54
1  
I didn't say Protobuf does not have RPC defined, just that it doesn't seem to have been designed for that, at least not the external release everyone has access to. Read this Google engineer's comment here – saidimu May 8 '10 at 3:40
3  
More importantly, Thrift has RPC support built in. Protobuf currently relies on third-party libraries, meaning less eyes, less testing, less reliable code. – Alec Thomas May 17 '10 at 2:32
feedback
  • Protobuf serialized objects are about 30% smaller then Thrift.
  • Most actions you may want to do with protobuf objects (create, serialize, deserialize) are much slower than thrift unless you turn on option optimize_for = SPEED.
  • Thrift has richer data structures (Map, Set)
  • Protobuf API looks cleaner, though the generated classes are all packed as an inner classes which is not so nice.
  • Thrift enums are not real Java Enums, i.e. they are just ints. Protobuf has real java enums.

For a closer look at the differences, check out the source code diffs at this open source project.

link|improve this answer
15  
That's "much slower when not optimising for speed"... – Jon Skeet Nov 18 '08 at 9:17
Here's the re-test with optimizing on: eishay.blogspot.com/2008/11/… – Scott Bilas Feb 3 '09 at 2:20
1  
Quick suggestion: it'd be neat if there was another non-binary format (xml or json?) used as the baseline. There haven't been good tests that show general trends -- assumtpion is that PB and Thrift are more efficient, but if and by how much if so, is mostly an open question. – StaxMan Mar 11 '09 at 1:02
2  
0.02 seconds?! I don't have that kind of time spare – Chris S Sep 7 '09 at 17:01
1  
The optimize for speed option is now the default for protocol buffers (code.google.com/apis/protocolbuffers/docs/proto.html) – Willem Mar 24 at 10:24
show 1 more comment
feedback

And according to the wiki the Thrift runtime doesn't run on Windows.

link|improve this answer
1  
This is by far one of the most important things. It's sad actually, it should work on Windows, Thrift is already dependent on boost, but Thrift doesn't use Boost.Thread nor Boost.Asio, instead Thrift use pthread directly which isn't really good for portability. – dalle Mar 19 '11 at 13:19
1  
I run Thrift on Windows successfully. Use windows fork at github.com/aubonbeurre/thrift – Sergius Oct 3 '11 at 12:35
The official mainline branch now has Windows support as well. – Janus Troelsen Feb 20 at 16:48
feedback

One obvious thing not yet mentioned is that can be both a pro or con (and is same for both) is that they are binary protocols. This allows for more compact representation and possibly more performance (pros), but with reduced readability (or rather, debuggability), a con.

Also, both have bit less tool support than standard formats like xml (and maybe even json).

(EDIT) Here's an Interesting comparison that tackles both size & performance differences, and includes numbers for some other formats (xml, json) as well.

link|improve this answer
It's trivial to output a protocol buffer to a text representation that's much more human-readable than XML: my_proto.DebugString(). For an example, see code.google.com/apis/protocolbuffers/docs/overview.html – SuperElectric Oct 7 '11 at 22:46
Of course, ditto for all binary formats -- but that does not make them readable as is (debug on the wire). Worse, for protobuf, you really need the schema def to know field names. – StaxMan Oct 8 '11 at 5:00
feedback

Protocol Buffers seems to have a more compact representation, but that's only an impression I get from reading the Thrift whitepaper. In their own words:

We decided against some extreme storage optimizations (i.e. packing small integers into ASCII or using a 7-bit continuation format) for the sake of simplicity and clarity in the code. These alterations can easily be made if and when we encounter a performance-critical use case that demands them.

Also, it may just be my impression, but Protocol Buffers seems to have some thicker abstractions around struct versioning. Thrift does have some versioning support, but it takes a bit of effort to make it happen.

link|improve this answer
Why does the fact that Thrift admits to not being as compact as possible lead you to believe Protocol Buffers are? – Michael Mior Oct 14 '11 at 13:44
feedback

As I've said as "Thrift vs Protocol buffers" topic :

Referring to Thrift vs Protobuf vs JSON comparison :

Additionally, there are plenty of interesting additional tools available for those solutions, which might decide. Here are examples for Protobuf: Protobuf-wireshark , protobufeditor.

link|improve this answer
feedback

I was able to get better performance with a text based protocol as compared to protobuff on python. However, no type checking or other fancy utf8 conversion, etc... which protobuff offers.

So, if serialization/deserialization is all you need, then you can probably use something else.

http://dhruvbird.blogspot.com/2010/05/protocol-buffers-vs-http.html

link|improve this answer
feedback

Your Answer

 
or
required, but never shown