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.

learn more… | top users | synonyms (1)

95
votes
9answers
33k views

Biggest differences of Thrift vs Protocol Buffers?

What are the biggest pros and cons of Apache Thrift vs Google's Protocol Buffers?
46
votes
4answers
20k 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 ...
41
votes
8answers
10k 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?
37
votes
3answers
9k 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 ...
35
votes
4answers
6k 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 ...
32
votes
7answers
28k 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 ...
28
votes
2answers
15k 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 ...
28
votes
1answer
2k 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 ...
24
votes
8answers
14k 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, ...
20
votes
2answers
5k views

google protocol buffers vs json vs XML [closed]

I would like to know the merits & de-merits of 1) Google Protocol Buffers 2) JSON 3) XML I want to implement one common framework for two application, one in Perl and second in Java. So, would ...
20
votes
2answers
1k views

How to dynamically build a new protobuf from a set of already defined descriptors?

At my server, we receive Self Described Messages (as defined here... which btw wasn't all that easy as there aren't any 'good' examples of this in c++). At this point I am having no issue creating ...
18
votes
8answers
24k 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 ...
18
votes
4answers
13k 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++ ...
18
votes
5answers
1k views

Generate Protobuf documentation?

Does anyone know of a good tool to generate Google Protobuf documentation using the .proto source files? Markus
17
votes
6answers
4k 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 ...
17
votes
6answers
10k 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 ...
16
votes
8answers
5k 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 ...
16
votes
3answers
9k views

Google Protocol Buffers - javascript

Is it a good choice to use google protocol buffers in javascript. Or is it better to do it with JSON. Also if someone can give me a simple example about protocol buffers implementation in javascript. ...
16
votes
1answer
1k views

Is Google's Protocol Buffers used in large scale production applications?

Is Google's Protocol Buffers used in large scale production applications in production? What is the experience using it?
14
votes
2answers
1k 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 ...
13
votes
4answers
2k views

Delphi Protocol Buffers?

Does anyone know of a project to do a Google Protocol Buffers implementation in Delphi?
12
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 ...
12
votes
6answers
6k 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 ...
12
votes
4answers
3k views

Protocol buffers for JavaScript?

when it comes to integrating with JavaScript, does it make sense to use protocol buffers? I had a hunch that JavaScript would not be good at playing with binary... so perhaps the advantage of pushing ...
12
votes
4answers
3k 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 ...
12
votes
5answers
703 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; ...
11
votes
6answers
9k 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 ...
11
votes
9answers
4k 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 ...
11
votes
5answers
2k 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 ...
11
votes
2answers
2k 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 ...
11
votes
3answers
9k 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. ...
11
votes
1answer
1k 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
1answer
1k views

Are there any databases that support protocol buffers?

Are there any databases, in either the SQL or NoSQL worlds, that support protocol buffers? (Support could mean various things, but hopefully would include being able to index on fields in protocol ...
10
votes
2answers
4k 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 ...
10
votes
1answer
1k 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 ...
10
votes
2answers
5k views

Are there any Tutorials for Protobuf-net? [closed]

I have been reading about protobuf-net and it is amazing! Are there any tutorials that I could use? (More specifically for Dictionary<TKey,TValue> and contracts for generics) Are there any ...
10
votes
3answers
890 views

Working with Protocol Buffers and internal data models

I have an existing internal data model for a Picture, as follows: package test.model; public class Picture { private int height, width; private Format format; public enum Format { JPEG, ...
10
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 ...
9
votes
5answers
12k 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 ...
9
votes
1answer
4k 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 ...
9
votes
2answers
5k 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 ...
9
votes
1answer
2k views

Google's Protocol Buffers in c#

We are looking at using Google's Protocol Buffers to handle serialization between a c++ application and a c# application via networking. My question is, I've found a couple of different verisions for ...
9
votes
3answers
4k views

Is there a standard mapping between JSON and Protocol Buffers?

From a comment on the announcement blog post: Regarding JSON: JSON is structured similarly to Protocol Buffers, but protocol buffer binary format is still smaller and faster to encode. JSON ...
9
votes
2answers
2k 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 ...
9
votes
2answers
473 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
7k views

What are SO_SNDBUF and SO_RECVBUF

Can you explain me what exactly are SO_SNDBUF and SO_RECVBUF? OK, for some reason the OS buffers the outgoing/incomming data but I'd like to clarify this subject. Whats their role (generally)? Are ...
8
votes
5answers
4k views

Why isn't Hadoop implemented using MPI?

Correct me if I'm wrong, but my understanding is that Hadoop does not use MPI for communication between different nodes. What are the technical reasons for this? I could hazard a few guesses, but I ...
8
votes
1answer
1k views

Google Protocol Buffers: ZigZag Encoding

From "Signed Types" on Encoding - Protocol Buffers - Google Code: ZigZag encoding maps signed integers to unsigned integers so that numbers with a small absolute value (for instance, -1) have a ...
8
votes
8answers
4k 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?
8
votes
1answer
2k views

Which protobuf optimization?

Using google's protocol buffer compiler for c++ its not clear which is faster: optimize for speed: option optimize_for = SPEED; or optimize for light runtime: option optimize_for = LITE_RUNTIME; ...

1 2 3 4 5 20