Uploaded image for project: 'Apache Arrow'
  1. Apache Arrow
  2. ARROW-264

Create an Arrow File format

    XMLWordPrintableJSON

Details

    • Improvement
    • Status: Resolved
    • Major
    • Resolution: Fixed
    • None
    • 0.1.0
    • Format
    • None

    Description

      File layout:
      (DictionaryBatch, RecordBatch, Schema as defined in Message.fbs)

      MAGIC:   ARROW1
      (
      DictionaryBatch:  DictionaryBatch Header (FlatBuffer)
      DictionaryBatch: DictionaryBatch Body (buffers concatenated)
      )*
      (
      RecordBacth: RecordBatch Header (FlatBuffer)
      RecordBacth: RecordBatch Body (buffers concatenated)
      )+
      Footer: Flatbuffer
      Footer length: int (4 bytes unsigned LE)
      MAGIC: ARROW1
      

      Footer definition:

      table Footer {
        schema: org.apache.arrow.flatbuf.Schema;
        dictionaries: [ Block ];
        recordBatches: [ Block ];
      }
      struct Block {
        offset: long;
        metaDataLength: int;
        bodyLength: long;
      }
      

      Attachments

        Issue Links

          Activity

            People

              julienledem Julien Le Dem
              julienledem Julien Le Dem
              Votes:
              0 Vote for this issue
              Watchers:
              4 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved: