Daily Archives: December 13, 2022

2 posts

AVRO Essentials

From Avro Apache Documentation source: https://avro.apache.org/docs/ Apache Avro™ is a data serialization system. Avro provides: Schemas Avro relies on schemas. When Avro data is read, the schema used when writing it is always present. This permits each datum to be written with no per-value overheads, making serialization both fast and […]

JSON Schema essentials

Quick Q-A (source – Goog directly) What is a JSON Schema used for? Primarily, JSON Schema is used to validate data. The sorts of data JSON Schema can validate is data encoded in JSON. JSON stands for JavaScript Object Notation and is a subset of Javascript. JSON is both human […]