Tagged Questions
1
vote
1answer
105 views
How can I read JSON data from C++ through Java using a piqi definition
We use a 3rd party REST web service which defines their json API using piqi schemas. Our current architecture needs this data to be read through a java client and transferred to a c++ binary. ...
2
votes
1answer
83 views
Does thrift persist unknown fields/bytes when it deserializes and serializes back again?
So the example case for this is:
I have the type Message. It is passed between server A -> B -> C
Now let's say version 2.0 of the Message is created that has a couple of new fields/ids.
Servers A ...
1
vote
2answers
89 views
Store a set of protobufs on disk
I am using protobuf as a serializer to format data on disk. I may have a large set of protobuf object, say, millions of them. what is the best choice to layout them on disk? the protobuf objects will ...
4
votes
0answers
389 views
Protocol Buffers vs Thrift: which is quicker to build server / client with? [closed]
So we want to build a server/client system in C++, and I am unclear whether Google protocol buffers or thrift will get us a working prototype more quickly. We want to use TCP sockets as the ...
1
vote
2answers
106 views
serialize/deserialize user defined class variable?
Suppose I have two classes:
class1 {
int m_i;
std::string m_s;
};
class2 {
int m_i2;
class1 *m_ptr;
};
Now, I want to send a class2 variable over network, and want to use any of the ...
2
votes
2answers
381 views
what is the best way to do bidirectional IPC between a long-running c process and python?
I have an existing C process that can take one text input and produce a single image file.
This C process has a high setup/teardown cost due to it's interface with an external system.
Once the ...
0
votes
0answers
83 views
Converting Between Protocol Buffers and Thrift
Are there any popular open-source solutions for creating Protocol Buffers from Thrift definitions and vice versa?
0
votes
0answers
281 views
Technology for database access system
I am currently designing system which should allow access to database. Assumptions are as follows:
Database should has access layer. The access layer should provide objects that represents database ...
1
vote
2answers
640 views
Thrift/Proto How to?
I need to serialize a large array of object of 100000 to a file, but during de-serialization I would like to read chuck of 1000 objects per read.
Currently I don't find any good examples of either ...
4
votes
0answers
153 views
Converting Protobuf definitions to Thrift
Are there any tools that exist to generate a Thrift interface definition from a Protobuf definition?
2
votes
3answers
336 views
High performance object serialization library supporting sum types
I wonder if any of the high performance serialization libraries (like Google protocol buffers) support sum types.
Sum types are tagged unions, basically the ability to say that something is either A, ...
1
vote
1answer
531 views
What is the most efficient way of encoding binary data over HTTP POST
I'm working on a project where I'll be sending lots of binary data (several images in one message) over HTTP POST to a RESTful interface.
I've looked into alternatives such as JSON, protobuff, thrift ...
8
votes
1answer
847 views
What are Apache Thrift and Google Protocol Buffers used for?
I see Thrift and Protocol Buffers mentioned a lot, but I don't really understand what they're used for. From my limited understanding, they're basically used when you want to do cross-language ...
2
votes
1answer
506 views
Fastest way to serialize relatively simple Java POJOs?
I need to write millions of Java POJOs to disk, and read them from disk, and I need to do it fast.
I would prefer to avoid having to define a separate template file as I believe is required with ...
2
votes
1answer
576 views
Hadoop Basics: What do I do with the output?
(I'm sure a similar question exists, but I haven't found the answer I'm looking for yet.)
I'm using Hadoop and Hive (for our developers with SQL familiarity) to batch process multiple terabytes of ...
2
votes
3answers
948 views
advice on choosing different binary xml tools
My requirement is to compress xml file into a binary format, transmit it and decompress it (lightening fast) before i start parsing it.
There are quite a few binary xml protocols and tools available. ...
0
votes
2answers
206 views
Writing a MYSQL backed Java Back end Service for Dummies
So I want to do the simplest possible thing.
Assume I have a MYSQL enabled hosting service.
In it, I have a database storyland and a table story-->(id, title, text)
I only know how to write Java ...
0
votes
0answers
564 views
Use of thrift/avro for a hadoop job to communicate between Java and C++
Right now we have a hadoop job in Java that is working with some C++ binaries. We write files to NFS and C++ and Java read them and thats our form of communication, which prevents us from scaling. I ...
3
votes
1answer
2k views
Google protocol buffers and stl vectors, maps and boost shared pointers
Does google protocol buffers support stl vectors, maps and boost shared pointers? I have some objects that make heavy use of stl containers like maps, vectors and also boost::shared_ptr. I want to use ...
0
votes
1answer
173 views
Is there a Thrift text representation?
Is there a "standard" text representation for Thrift like there is for protobuf? (http://code.google.com/apis/protocolbuffers/docs/reference/cpp/google.protobuf.text_format.html).
This is just for ...
5
votes
1answer
406 views
map and shared_ptr serialization between C# and C++ applications? [duplicate]
Possible Duplicate:
Binary serialization/de-serialization in C++ and C#
I am working on a project where server is written in C++ (boost is extensively used) and the client application is ...
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 ...
7
votes
2answers
1k 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?
7
votes
3answers
610 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 ...
1
vote
1answer
444 views
Apache thrift, struct contain itself
I am looking into thrift for serialization of data. But Document says
cyclic structs - Structs can only contain structs that have been declared before it. A struct also cannot contain itself
One ...
0
votes
1answer
594 views
RPC for java/python with rest support, HTML monitoring and goodies
Here's my set of requirements: I'm looking for an RPC framework such as thrift, avro, protobuf (when adding services to it) which supports:
Easy and intuitive IDL. No serial numbers, no manual ...
1
vote
3answers
1k views
Thrift / Google Protocol Buffers on Windows
Looking at Thrift and Google Protocol Buffers to implement some quick RPC code. Thrift would be perfect if the generated C++ code compiled on windows (which is what I need). And of course, GPB creates ...
1
vote
1answer
865 views
XStream <-> Alternative binary formats (e.g. protocol buffers)
We currently use XStream for encoding our web service inputs/outputs in XML. However we are considering switching to a binary format with code generator for multiple languages (protobuf, Thrift, ...
1
vote
1answer
1k views
scribe with protocol buffer and advanced thrift?
I have two questions here:
Question 1:
-- can thrift provide an inner-class functionality? (see my example next)
-- if it can, can thrift use such functionality easily?
Here is the scribe ...
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?
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 ...
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?

