Performance comparison of Thrift, Protocol Buffers, JSON, EJB, other? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T14:48:06Z http://stackoverflow.com/feeds/question/296650 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/296650/performance-comparison-of-thrift-protocol-buffers-json-ejb-other 7 Performance comparison of Thrift, Protocol Buffers, JSON, EJB, other? Parand 2008-11-17T19:48:44Z 2009-08-17T23:41:49Z <p>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:</p> <p>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?</p> <p>Primarily languages will be Java, C/C++, Python, and PHP.</p> <p>Update: I'm still very interested in this, if anyone has done any further benchmarks please let me know. Also, very interesting benchmark showing <a href="http://bouncybouncy.net/ramblings/posts/more%5Fon%5Fjson%5Fvs%5Fthrift%5Fand%5Fprotocol%5Fbuffers/" rel="nofollow">compressed JSON performing similar / better than Thrift / Protocol Buffers</a>, so I'm throwing JSON into this question as well.</p> http://stackoverflow.com/questions/296650/performance-comparison-of-thrift-protocol-buffers-json-ejb-other/296663#296663 5 Answer by oleksiy.t for Performance comparison of Thrift, Protocol Buffers, JSON, EJB, other? oleksiy.t 2008-11-17T19:52:38Z 2008-11-17T19:52:38Z <p>You may be interested in this question: <a href="http://stackoverflow.com/questions/69316/biggest-differences-of-thrift-vs-protocol-buffers">"Biggest differences of Thrift vs Protocol Buffers?"</a></p> http://stackoverflow.com/questions/296650/performance-comparison-of-thrift-protocol-buffers-json-ejb-other/296677#296677 1 Answer by Jon Skeet for Performance comparison of Thrift, Protocol Buffers, JSON, EJB, other? Jon Skeet 2008-11-17T19:56:14Z 2008-11-17T19:56:14Z <p>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.</p> <p>When that's been done, I'd imagine you could build the same messages in Thrift and then compare the performance.</p> <p>In other words, I don't have the data for you yet - but hopefully in the next couple of weeks...</p> http://stackoverflow.com/questions/296650/performance-comparison-of-thrift-protocol-buffers-json-ejb-other/297193#297193 1 Answer by Vladimir Dyuzhev for Performance comparison of Thrift, Protocol Buffers, JSON, EJB, other? Vladimir Dyuzhev 2008-11-17T22:25:23Z 2008-11-17T22:25:23Z <p>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.</p> <p>Since it's IIOP (that is CORBA), almost all languages have bindings.</p> <p>But I presume the performance is not the <strong>only</strong> requirement, right?</p> http://stackoverflow.com/questions/296650/performance-comparison-of-thrift-protocol-buffers-json-ejb-other/297448#297448 5 Answer by eishay for Performance comparison of Thrift, Protocol Buffers, JSON, EJB, other? eishay 2008-11-18T00:13:01Z 2008-11-18T00:13:01Z <p>I'm in the process of writing some code in an <a href="http://code.google.com/p/thrift-protobuf-compare/" rel="nofollow">open source project named thrift-protobuf-compare</a> comparing between protobuf and thrift. For now it covers few serialization aspects, but I intend to cover more. The results (for <a href="http://eishay.blogspot.com/search/label/Thrift" rel="nofollow">Thrift</a> and <a href="http://eishay.blogspot.com/search/label/protobuf" rel="nofollow">Protobuf</a>) 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. </p> http://stackoverflow.com/questions/296650/performance-comparison-of-thrift-protocol-buffers-json-ejb-other/628329#628329 1 Answer by StaxMan for Performance comparison of Thrift, Protocol Buffers, JSON, EJB, other? StaxMan 2009-03-09T22:46:07Z 2009-03-09T22:46:07Z <p>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.</p> <p>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.</p> <p>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.</p> <p>ps. Not sure what EJB3 here would be. Maybe just plain of Java serialization?</p> http://stackoverflow.com/questions/296650/performance-comparison-of-thrift-protocol-buffers-json-ejb-other/675527#675527 6 Answer by www.eishay.com for Performance comparison of Thrift, Protocol Buffers, JSON, EJB, other? www.eishay.com 2009-03-23T22:48:30Z 2009-03-23T22:48:30Z <p>Latest comparison available here at the <a href="http://code.google.com/p/thrift-protobuf-compare/wiki/Benchmarking" rel="nofollow">thrift-protobuf-compare</a> project wiki. It includes many other serialization libraries.</p>