Steven Wang
09/15/2020, 8:39 PMVampire
09/16/2020, 9:19 PMFeather in its current form should be considered deprecated. Writing the Arrow file format from Java is already supportedSo as far as I have seen feather format is neither supported by Java nor Kotlin, but as Arrow format is supported by Java, you can use it from Kotlin too, like any other Java library. Generally I'd use
kotlinx.serialization
though to write and read data. It supports JSON, CBOR and ProtoBuf natively and that are also community support modules for other formats like XML or YAML.Steven Wang
09/16/2020, 11:46 PM