Am I reading this right that it's a binary format for real-time streaming data, similar to Avro, but can include arbitrarily deep nested structures unlike Avro?
Why do you single out avro & not any of the hundreds of other ser/de systems? Is that what you know best? Is there something specific about avro that makes it feel particularly similar? https://github.com/maximveksler/awesome-serialization
- Avro and Ion are the only two that are labeled Textual/Binary
- They are in the same Big Data grouping
- They both are schema-embedded, and support some rich nested datastructures, though they deviate on many of the specifics
So I think it's reasonable to pick out Avro as an especially similar point of comparison.