Tagged Questions

Apache Avro is a serialization system like Google Protocol Buffers and Apache Thrift.

learn more… | top users | synonyms

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 ...
3
votes
5answers
209 views

JSON decode issue

I'm trying to decode JSON output of a Java program (jackson) and having some issues. The cause of the problem is the following snippet: { "description": "... lives\uMOVE™ OFFERS ", } Which ...
3
votes
1answer
721 views

Getting Started with Avro

I want to get started with using Avro with Map Reduce. Can Someone suggest a good tutorial / example to get started with. I couldnt find much through the internet search. Thanks sri
2
votes
0answers
167 views

In Java, how can I create an equivalent of an Apache Avro container file without being forced to use a File as a medium?

This is somewhat of a shot in the dark in case anyone savvy with the Java implementation of Apache Avro is reading this. My high-level objective is to have some way to transmit some series of avro ...
2
votes
1answer
309 views

Python implementation of avro slow?

I'm reading some data from avro file using the avro library. It takes about a minute to load 33K objects from the file. This seem very slow to me, specially with the Java version reading the same file ...
2
votes
2answers
231 views

Idiomatic Client Libraries with Cassandra + PHP?

On this video (at 29:00), Eric Evans from Rackspace tells an audience that using Thrift and Avro is a bad idea. Instead, he advocates using the Idiomatic Client Libraries. ...
1
vote
1answer
63 views

MultipleInputs with DBInputFormat in Hadoop

In my database I have multiple tables where each table is a different entity type. I have an Avro schema that I use in hadoop which is a union of all the fields of these different entity types plus ...
1
vote
0answers
56 views

how compile files contain apache avro in c++

I wrote two program "sender" and "receiver" in c++.I want to send an object from sender to receiver.I want to use Avro apache. I read the documentation on apache site.I copy one sample from it. But i ...
1
vote
1answer
273 views

How do I use Avro to process a stream that I cannot seek?

I am using Avro 1.4.0 to read some data out of S3 via the Python avro bindings and the boto S3 library. When I open an avro.datafile.DataFileReader on the file like objects returned by boto it ...
0
votes
0answers
13 views

How to: Async Callbacks using Netty with Avro

I'm trying to implement Asynchronous Avro calls by using its NettyServer implementation. After digging the source code, I found an example on how to use NettyServer from ...
0
votes
1answer
13 views

Compiling avro schemas (python) when the message contains more than one message

I use import avro and etc. for compiling avro schemas in python. Sometimes, my avro schema will look like: { name: "Message1" ..... } { name: "Message2", "fields": [ { "type": "Message1", "name": ...
0
votes
0answers
22 views

Comma separated list with AvroStorage in Pig

I tried to load several files with AvroStorage in Pig by using a comma separated list. The statement I used is: test_data= LOAD 'repo_1/part-r-00000.avro,repo_2/part-r-00000.avro' USING ...
0
votes
1answer
13 views

Can you append data to an existing Avro data file?

It seems like there isn't any way to append data to an existing Avro serialized file. I'd like to have multiple processes writing to a single avro file, but it looks like each time I open it, I start ...
0
votes
1answer
39 views

Deprecated code when using avro-maven-plugin version 1.6.1

I'm running a java code using Apache Avro. Some code gets deprecated in the java file and I'm not sure why. I'm using Maven to run my Java program. This is the java file public class ...
0
votes
0answers
16 views

Is there a cat utility for Apache's avro?

I'd like to know if there is a 'cat' utility for Apache's binary avro file format? Something along the lines of zcat, or bzcat for gzip and bzip2 respectively. Thanks for your help!
0
votes
0answers
42 views

Avro json decoder : ignore namespace

i tried to use Apache Avro on project... and i've met some difficulties avro serialization/ deserialization work like a charm ... but i get decoder exceptions.. like unknown union branch ...
0
votes
1answer
75 views

How to use Kafka and Avro

I'm trying to use use Avro for messages being read from/written to Kafka. However, I'm not sure if I'm encoding the data correctly. Does anyone have an example of using the Avro binary encoder to ...
0
votes
1answer
29 views

Backward compatibility of Hadoop Streaming

AFAK, Hadoop Streaming only support text input, which means the data is organized by lines. but the mapper code will become messy if we want backward compatibility, supporting different versions of ...
0
votes
1answer
143 views

How to generate a C++ header with Apache Avro (python script)

I am interested in generating a C++ header using Apache Avro's code generation tool (i.e. the python script). According to the documentation it should be fairly easy to do, but I don't usually use ...
0
votes
0answers
321 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 ...
0
votes
1answer
1k views

Writing to Avro Data file

The following code simply writes data into avro format and reads and displays the same from the avro file written too. I was just trying out the example in the Hadoop definitive guide book. I was able ...
0
votes
1answer
222 views

Question populating nested records in Avro using a GenericRecord

Suppose I’ve got the following schema: { "name" : "Profile", "type" : "record", "fields" : [ { "name" : "firstName", "type" : "string" }, { "name" : "address" , "type" : { "type" : ...