vote up 6 vote down star
6

We're looking into transport/protocol solutions and were about to do various performance tests, so I thought I'd check with the community if they've already done this:

Has anyone done server performance tests for simple echo services as well as serialization/deserialization for various messages sizes comparing EJB3, Thrift, and Protocol Buffers on Linux?

Primarily languages will be Java, C/C++, Python, and PHP.

Update: I'm still very interested in this, if anyone has done any further benchmarks please let me know. Also, very interesting benchmark showing compressed JSON performing similar / better than Thrift / Protocol Buffers, so I'm throwing JSON into this question as well.

flag

63% accept rate

6 Answers

vote up 3 vote down check

Latest comparison available here at the thrift-protobuf-compare project wiki. It includes many other serialization libraries.

link|flag
vote up 1 vote down

I did test performance of PB with number of other data formats (xml, json, default object serialization, hessian, one proprietary one) and libraries (jaxb, fast infoset, hand-written) for data binding task (both reading and writing), but thrift's format(s) was not included. Performance for formats with multiple converters (like xml) had very high variance, from very slow to pretty-darn-fast. Correlation between claims of authors and perceived performance was rather weak. Especially so for packages that made wildest claims.

For what it is worth, I found PB performance to be over-hyped. With default settings it did not even beat fastest textual xml alternative. With "optimized" mode, it was bit faster, but no faster than fastest Json package. Hessian was rather fast, textual json also. Properietary binary format (no name here, it was company internal) was the slowest. Java object serialization was fast for larger messages, less so for small objects (i.e. high fixed per-operation noverhead). With PB message size was compact, but given all trade-offs you have to do (data is not self-descriptive: if you lose the schema, you lose data; there are indexes of course, and value types, but from what you have reverse-engineer back to field names if you want), I personally would not consider it a compelling choice for about any task. Maybe Thrift performs better here.

My opinion in this is that (a) implementation often matters more than specification (of data format), (b) end-to-end, differences between best-of-breed (for different formats) are usually not big enough to dictate the choice. That is, you may be better off choosing format+API/lib/framework you like using most (or has best tool support), find best implementation, and see if that works fast enough. If (and only if!) not, consider next best alternative.

ps. Not sure what EJB3 here would be. Maybe just plain of Java serialization?

link|flag
Perhaps you could post the results in a blog post? I'd certainly be interested in seeing the details, particularly around the XML testing. – Parand Mar 10 at 1:12
Ok. Core of the thing lives under "StaxBind" module with Woodstox (woodstox.codehaus.org) repository at Codehaus; this just for convenience. Nothing woodstox - specific. I will try to get results published -- it's frustrating if no one can reproduce them. – StaxMan Mar 11 at 22:54
vote up 2 vote down

I'm in the process of writing some code in an open source project named thrift-protobuf-compare comparing between protobuf and thrift. For now it covers few serialization aspects, but I intend to cover more. The results (for Thrift and Protobuf) are discussed in my blog, I'll add more when I'll get to it. You may look at the code to compare API, description language and generated code. I'll be happy to have contributions to achieve a more rounded comparison.

link|flag
I've just added an issue to that - you're using the default options for protocol buffers, which mean "optimise for small code size". This has a huge impact on performance (but does lead to much smaller code). You should do a comparison with optimize_for = SPEED turned on. – Jon Skeet Nov 18 '08 at 9:15
vote up 1 vote down

If the raw net performance is the target, then nothing beats IIOP (see RMI/IIOP). Smallest possible footprint -- only binary data, no markup at all. Serialization/deserialization is very fast too.

Since it's IIOP (that is CORBA), almost all languages have bindings.

But I presume the performance is not the only requirement, right?

link|flag
Performance is definitely not the only requirement. The other requirements we have a handle on or can evaluate fairly easily; performance is the one I was looking for feedback on. – Parand Nov 17 '08 at 23:12
"Only binary data" doesn't mean it's necessarily the smallest possible footprint. For instance, you can transmit an Int32 as either "just 4 bytes" or with an encoding which reduces the transmission size of small values at the cost of using more data for large values. – Jon Skeet Nov 18 '08 at 9:11
1  
In my experience, it's cheaper to not worry about tight bit-packing protocols and just zlib-stream your data. Those 0's from bits you don't need compress great (assuming you zero-init the bufs). This usually beats manual bit-packing and is a ton easier to debug. Assuming zlib is an option, anyway. – Scott Bilas Feb 3 at 2:25
vote up 0 vote down

One of the things near the top of my "to-do" list for PBs is to port Google's internal Protocol Buffer performance benchmark - it's mostly a case of taking confidential message formats and turning them into entirely bland ones, and then doing the same for the data.

When that's been done, I'd imagine you could build the same messages in Thrift and then compare the performance.

In other words, I don't have the data for you yet - but hopefully in the next couple of weeks...

link|flag
The Thrift-protobuf-comparison project (code.google.com/p/thrift-protobuf-compare/…) would be a good home for this, if you have done something? It'd be great to see different use cases -- the current one deals with very samll messages, which is just one area. – StaxMan Apr 24 at 18:30
I have a benchmarking framework now, but it's mostly aimed at benchmarking different implementations of Protocol Buffers and different messages. See code.google.com/p/protobuf-csharp-port/… – Jon Skeet Apr 24 at 19:01
vote up 4 vote down

You may be interested in this question: "Biggest differences of Thrift vs Protocol Buffers?"

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.