avro-fastserde is an alternative approach to Apache Avro serialization and deserialization. It generates dedicated code responsible for handling serialization and deserialization, which achieves better performance results than native implementation. Learn more here.
Current version is 1.0.3
You need Java 8 to use this library.
Releases are distributed on Maven central:
<dependency>
<groupId>com.rtbhouse</groupId>
<artifactId>avro-fastserde</artifactId>
<version>1.0.3</version>
</dependency>Just use avro-fastserde DatumReader and DatumWriter interface implementation:
import com.rtbhouse.utils.avro.FastGenericDatumReader;
import com.rtbhouse.utils.avro.FastGenericDatumWriter;
import com.rtbhouse.utils.avro.FastSpecificDatumReader;
import com.rtbhouse.utils.avro.FastSpecificDatumWriter;
...
FastGenericDatumReader<GenericData.Record> fastGenericDatumReader = new FastGenericDatumReader<>(writerSchema, readerSchema);
fastGenericDatumReader.read(null, binaryDecoder);
FastGenericDatumWriter<GenericData.Record> fastGenericDatumWriter = new FastGenericDatumWriter<>(schema);
fastGenericDatumWriter.read(data, binaryEncoder);
FastSpecificDatumReader<T> fastSpecificDatumReader = new FastSpecificDatumReader<>(writerSchema, readerSchema);
fastSpecificDatumReader.read(null, binaryDecoder);
FastSpecificDatumWriter<T> fastSpecificDatumWriter = new FastSpecificDatumWriter<>(schema);
fastSpecificDatumWriter.write(data, binaryEncoder);You can alter class generation behaviour via system properties:
// Set compilation classpath
System.setProperty(FastSerdeCache.CLASSPATH, compileClasspath);
// Set generated classes directory
System.setProperty(FastSerdeCache.GENERATED_CLASSES_DIR, generatedClassesDir);Or FastSerdeCache class:
import com.rtbhouse.utils.avro.FastGenericDatumReader;
import com.rtbhouse.utils.avro.FastSerdeCache;
...
FastSerdeCache cache = new FastSerdeCache(compileClassPath);
FastGenericDatumReader<GenericData.Record> fastGenericDatumReader = new FastGenericDatumReader<>(writerSchema, readerSchema, cache);- no support for
reuseparameter inDatumReaderinterface. - no support for
SchemaConstructablemarker interface for specific Avro records. FastSpecificDatumReaderwill not read data intoGenericRecordif the specific classes are not available but will result in compilation failure and fall back to defaultSpecificDatumReaderimplementation.