tree: fe9cab0efeb05bd22eb8ad01ef48417079045db9
  1. src/
  2. pom.xml
  3. README.md
java/fury-format/README.md

Fury Row Format

Fury row format is heavily inspired by spark tungsten row format, but with changes:

  • Use arrow schema to describe meta.
  • The implementation support java/C++/python/etc..
  • String support latin/utf16/utf8 encoding.
  • Decimal use arrow decimal format.
  • Variable-size field can be inline in fixed-size region if small enough.
  • Allow skip padding by generate Row using aot to put offsets in generated code.
  • Support adding fields without breaking compatibility.

The initial fury java row data structure implementation is modified from spark unsafe row/writer.