| clear query|facets|time |
Search criteria: .
Results from 21 to 30 from
431 (0.383s).
|
|
|
Loading phrases to help you refine your search...
|
|
Re: issue with writing an array of records - Avro - [mail # user]
|
|
...On 1/7/13 8:35 AM, "Alan Miller" wrote: First thought: Why the union of null and the array? It may be easier to simply have an empty list when there are ...
|
|
|
Author: Scott Carey,
2013-01-08, 10:36
|
|
|
Re: Serializing json against a schema - Avro - [mail # user]
|
|
...You could use the ReflectDatumWriter to write a simple java data class to Avro, and you can create instances of such classes from JSON using a library like Jackson. There is a J...
|
|
|
Author: Scott Carey,
2013-01-08, 10:33
|
|
|
Re: Sync() between records? How do we recover from a bad record, using DataFileReader? - Avro - [mail # user]
|
|
...For the corruption test, try corrupting the records, not the sync marker. The features added to DataFileReader for corruption recovery were for the case when decoding a record fails (corrupt...
|
|
|
Author: Scott Carey,
2013-01-08, 10:31
|
|
|
Re: Setters and getters - Avro - [mail # user]
|
|
...No. However each API (Specific, Reflect, Generic in Java) has different limitations and use cases. You'll have to provide more information about your use cases and expectations ...
|
|
|
Author: Scott Carey,
2013-01-08, 09:42
|
|
|
Re: Embedding schema with binary encoding - Avro - [mail # user]
|
|
...Calling toJson() on a Schema will print it in json fom. However you most likely do not want to invent your own file format for Avro data. DataFileWriter which will manage the sch...
|
|
|
Author: Scott Carey,
2013-01-08, 09:26
|
|
|
Re: Appending to .avro log files - Avro - [mail # user]
|
|
...A sync marker delimits each block in the avro file. If you want to start reading data from the middle of a 100GB file, DataFileReader will seek to the middle and find the next sync mar...
|
|
|
Author: Scott Carey,
2013-01-08, 09:14
|
|
|
Re: Support for char[] and short[] - Java - Avro - [mail # user]
|
|
...You can cast both short and char safely to int and back, and use Avro's int type. These will be variable length integer encoded and take 1 to 3 bytes in binary form per short/char. Thi...
|
|
|
Author: Scott Carey,
2013-01-08, 09:08
|
|
|
Re: Deadlock using Avro 1.5.0 - Avro - [mail # user]
|
|
...Please file a JIRA ticket. Thanks! On 12/11/12 2:56 AM, "slandelle" wrote: ...
|
|
|
Author: Scott Carey,
2012-12-13, 21:04
|
|
|
[AVRO-988] Java: Add public, private, and public-deprecated options for SpecificCompiler output - Avro - [issue]
|
|
...The specific compiler produces deprecation warnings in both client code and the specific generated classes themselves. The field visibility should be configurable by the user. I ...
|
|
|
http://issues.apache.org/jira/browse/AVRO-988
Author: Scott Carey,
2012-11-29, 22:08
|
|
|
Re: Mapping MySQL schema to Avro - Avro - [mail # user]
|
|
...On a quick look pass, this looks sane, and nests many-to-one sets of data within the parent record. A few things to think about: * A double in mySQL will be a double in Avro, not a lon...
|
|
|
Author: Scott Carey,
2012-11-27, 21:06
|
|
|
|