Skip to content

Support data import via Avro #20

@kenwenzel

Description

@kenwenzel

The Avro file format is a compact binary format for transferring data:
https://avro.apache.org/

We should consider adding Avro support als alternative to JSON and CSV at least for importing of data.
In its simplest case a scheme with a flat structured record of scalar values could be used:

{"namespace": "lf.avro",
 "type": "record",
 "name": "data",
 "fields": [
     {"name": "time", "type": "long"},
     {"name": "colum1",  "type": ["string", "null"]},
     {"name": "colum2", "type": "double"}
 ]
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    enhancementNew feature or request

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions