Tagged Questions
Protocol Buffers are a way of encoding structured data in an efficient yet extensible format. Google uses Protocol Buffers for almost all of its internal RPC protocols and file formats.
56
votes
9answers
19k views
Biggest differences of Thrift vs Protocol Buffers?
What are the biggest pros and cons of Apache Thrift vs Google's Protocol Buffers?
27
votes
8answers
6k views
boost serialization vs google protocol buffers?
Does anyone with experience with these libraries have any comment on which one they preferred? Were there any performance differences or difficulties in using?
25
votes
4answers
7k views
Protocol Buffers versus JSON or BSON
Does anyone have any information on the performance characteristics of Protocol Buffers versus BSON (binary JSON) or versus JSON in general?
Wire size
Serialization speed
Deserialization speed
...
24
votes
1answer
1k views
How does protobuf-net achieve respectable performance?
I want to understand why the protocol buffers solution for .NET developed by Marc Gravell is as fast as it is.
I can understand how the original Google solution achieved its performance: it ...
23
votes
7answers
20k views
Performance comparison of Thrift, Protocol Buffers, JSON, EJB, other?
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 ...
22
votes
4answers
2k views
Thrift vs Protocol buffers
I've been using PB for quite a while now, but, Thrift has constantly been at the back of my mind.
The primary advantages of thrift, as I see it are:
Native collections (i.e, vector, set etc) vs PBs ...
20
votes
2answers
3k views
What are the key differences between Apache Thrift, Google Protocol Buffers, MessagePack, ASN.1 and Apache Avro?
All of these provide binary serialization, RPC frameworks and IDL. I'm interested in key differences between them and characteristics (performance, easy of use, programming language support).
If you ...
19
votes
2answers
11k views
How fast or lightweight Is Protocol Buffer?
Is Protocol Buffer for .NET gonna be lightweight/faster than Remoting(the SerializationFormat.Binary)? Will there be a first class support for it in language/framework terms? i.e. is it handled ...
16
votes
1answer
1k views
Is anyone using Google protocol buffers in large scale production applications?
Is anyone using Google's protocol buffers in large scale applications in production. What is the experience that people have had?
15
votes
6answers
14k views
High performance serialization: Java vs Google Protocol Buffers vs …?
For some caching I'm thinking of doing for an upcoming project, I've been thinking about Java serialization. Namely, should it be used?
Now I've previously written custom serialization and ...
14
votes
4answers
2k views
Are there C++ equivalents for the Protocol Buffers delimited I/O functions in Java?
I'm trying to read / write multiple Protocol Buffers messages from files, in both C++ and Java. Google suggests writing length prefixes before the messages, but there's no way to do that by default ...
14
votes
7answers
7k views
Integrate Protocol Buffers into Maven2 build
I'm experimenting with Protocol Buffers in an existing, fairly vanilla Maven 2 project. Currently, I invoke a shell script every time I need to update my generated sources. This is obviously a hassle, ...
14
votes
4answers
6k views
What's the best serialization method for objects in memcached?
My Python application currently uses the python-memcached API to set and get objects in memcached. This API uses Python's native pickle module to serialize and de-serialize Python objects. This API ...
12
votes
5answers
402 views
How to convert a double to a C# decimal in C++?
Given the reprensentation of decimal I have --you can find it here for instance--, I tried to convert a double this way:
explicit Decimal(double n)
{
DoubleAsQWord doubleAsQWord;
...
12
votes
4answers
7k views
Google Protocol Buffers and HTTP
I'm refactoring legacy C++ system to SOA using gSoap. We have some performance issues (very big XMLs) so my lead asked me to take a look at protocol buffers. I did, and it looks very cool (We need C++ ...
11
votes
2answers
281 views
How cross-platform is Google's Protocol Buffer's handling of floating-point types in practice?
Google's Protocol Buffers allows you to store floats and doubles in messages. I looked through the implementation source code wondering how they managed to do this in a cross-platform manner, and ...
11
votes
1answer
264 views
Google protocol buffers huge in python
I started using the protocol buffer library, but noticed that it was using huge amounts of memory. pympler.asizeof shows that a single one of my objects is about 76k! Basically, it contains a few ...
11
votes
3answers
372 views
Generate Protobuf documentation?
Does anyone know of a good tool to generate Google Protobuf documentation using the .proto source files?
Markus
11
votes
8answers
4k views
C++ Serialization Performance
I'm building a distributed C++ application that needs to do lots of serialization and deserialization of simple data structures that's being passed between different processes and computers.
I'm not ...
10
votes
4answers
993 views
Delphi Protocol Buffers?
Does anyone know of a project to do a Google Protocol Buffers implementation in Delphi?
10
votes
10answers
3k views
Available Game network protocol definition languages and code generation
I've been looking for a good general purpose binary network protocol definition framework to provide a way to write real-time game servers and clients (think World Of Warcraft or Quake III) in ...
9
votes
2answers
453 views
Generate C# from proto files and vice versa interpreting custom options
I'm using protobuf-net, and I'm trying to:
Generate a C# class from a .proto file
Generate a .proto file from a C# class
That's pretty easy using respectively:
protogen.exe tool
...
8
votes
2answers
365 views
Is it possible to mock a Java protocol buffer message?
Protocol buffer classes are marked final, presumably for efficiency; however, this makes them quite difficult to test with -- Mockito can't mock/spy on final classes. I've tried using PowerMockito ...
8
votes
2answers
1k views
Using Protocol buffer as general Data object?
We're introducing protocol buffers as the new transport for some back end RPC services. Because there's resistance to manually shuttling data between different forms of similar objects, I can forsee ...
8
votes
4answers
3k views
Using Protocol Buffers with Objective-C
Has anyone used Google's Protocol Buffers when developing applications in Objective-C?
Are there any current projects for compiling .proto files into Objective-C, all the Google docs simply refer to ...
8
votes
2answers
5k views
Deserialize unknown type with protobuf-net
I have 2 networked apps that should send serialized protobuf-net messages to each other. I can serialize the objects and send them, however, I cannot figure out how to deserialize the received bytes.
...
7
votes
3answers
449 views
Using C++ for backend calculations in a web app
I'm running a PHP front end to an application that does a lot of work with data and uses Cassandra as a data store.
However I know PHP will not give me the performance I need for some of the ...
7
votes
4answers
1k views
Scala protocol buffers compiler
I was thinking about writing a code generator to generate scala from google protobuf definitions file. The reason I see it valuable is the java bindings are too Java-ish and one could do much better ...
7
votes
4answers
776 views
Zig Zag Decoding
In the google protocol buffers encoding overview, they introduce something called "Zig Zag Encoding", this takes signed numbers, which have a small magnitude, and creates a series of unsigned numbers ...
7
votes
5answers
3k views
How do I get Eclipse to resolve classes generated with Maven 2?
I'm using Google Protocol Buffers to generate some Java classes for my project. Using Maven 2 and its "antrun" plugin, these classes are freshly generated before compile, output to ...
7
votes
2answers
1k views
C++ Serialization Performance
I'm building a distributed C++ application that needs to do lots of serialization and deserialization of data stored in std containers.
Currently Boost.serialization is adopted. However, it performs ...
7
votes
7answers
2k views
Would you recommend Google Protocol Buffers or Caucho Hessian for a cross-language over-the-wire binary format?
Would you recommend Google Protocol Buffers or Caucho Hessian for a cross-language over-the-wire binary format? Or anything else, for that matter - Facebook Thrift for example?
7
votes
4answers
9k views
Protocol buffers in C# projects using protobuf-net - best practices for code generation
I'm trying to use protobuf in a C# project, using protobuf-net, and am wondering what is the best way to organise this into a Visual Studio project structure.
When manually using the protogen tool to ...
6
votes
1answer
353 views
How to write a high performance Netty Client
I want an extremely efficient TCP client to send google protocol buffer messages. I have been using the Netty library to develop a server/client.
In tests the server seems to be able to handle up to ...
6
votes
1answer
243 views
Boost.Asio with google protocol buffers
I've currently investigating ways of improving our current c++ network hand-made serialization mechanism maintaining our existing binary protocol.
The first approach taken was to code it using ...
6
votes
1answer
164 views
protobuf-net v2 and Monotouch : How does it mix?
I have been trying to use protobuf-net with MonoTouch but I have no idea how, and despite having heard that it is possible, I haven't been able to find any tutorial or any example that actually work.
...
6
votes
3answers
190 views
using swig to bind google protocol buffers
I'm writing python program that needs to process a lot of small but complex protobuf-encoded messages. I tried to use the Python implementation of protocol buffers, which is written in pure python, ...
6
votes
1answer
269 views
Difference in .NET Protocol Buffer libraries
At the moment, there are two proto buf libraries for .NET:
http://code.google.com/p/protobuf-csharp-port/ With Jon Skeet as the owner
http://code.google.com/p/protobuf-net/ with Marc Gravell as the ...
6
votes
2answers
410 views
Dictionary in protocol buffers
Is there any way to serialize a dictionary using protocol buffers, or I'll have to use Thrift if I need that?
6
votes
2answers
908 views
Using protocol buffers for binary logging
We're thinking of using Protocol Buffers for binary logging because:
It's how we're encoding our objects anyway
It is relatively compact, fast to read / write etc.
That said, it isn't obvious how ...
6
votes
2answers
2k views
How to use Python and Google's Protocol Buffers to deserialize data sent over TCP
I'm trying to write an application which uses Google's protocol buffers to deserialize data (sent from another application using protocol buffers) over a TCP connection. The problem is that it looks ...
6
votes
3answers
3k views
Android and Protocol Buffers
I am writing an Android application that would both store data and communicate with a server using protocol buffers. However, the stock implementation of protocol buffers compiled with the LITE flag ...
6
votes
1answer
2k views
What does the ProtoInclude attribute mean (in protobuf-net)
In the ProtoBuf-Net implementation, what does the ProtoInclude attribute mean, and what does it do?
An example would be appreciated.
I saw it in this post and I'm not sure what it does. The example ...
6
votes
2answers
1k views
How does Google Protocol Buffers compare to ASN.1
What are the most noticable differences between Google Protocol Buffers and ASN.1 (with PER-encoding)? For my project the most imporant issue is the size of the serialized data. Has anyone done any ...
6
votes
4answers
1k views
Any experiences with Protocol Buffers?
I was just looking through some information about Google's protocol buffers data interchange format. Has anyone played around with the code or even created a project around it?
I'm currently using ...
5
votes
1answer
125 views
Calling Java functions from R using RProtoBuf (Protocol Buffers)
It is not entirely obvious how to go about using RProtoBuf for communicating between R and other languages (Java, in my case).
The RprotoBuf Developers developed something that is still here - ...
5
votes
2answers
167 views
Convert XSDs to Protos
I have a set of services coupled with whole bunch of XSDs. Clients that use my service use XML and in the future will use protobufs. Is there a tool out there that will convert my XSDs into proto ...
5
votes
2answers
327 views
Google Protocol Buffers Serialization hangs writing 1GB+ data
I am serializing a large data set using protocol buffer serialization. When my data set contains 400000 custom objects of combined size around 1 GB, serialization returns in 3~4 seconds. But when my ...
5
votes
1answer
302 views
protobuf-net serializing object graph
If I have object A and B both contain some field serialized field F, and both point to the same serializable object C. Does protobuf-net serialize by reference or serialize by value? When the object ...
5
votes
3answers
684 views
Where can I find a RPC which implemented with: boost + protobuf
Are there any RPC framework implemented with: boost + protobuf? And it has a protobuf plugin can be used to generate RPC code for the framework.
Or there are some open source implementations I can ...