ZIO Schema is a ZIO-based library for modeling the schema of data structures as first-class values.
ZIO Schema helps us to solve some of the most common problems in distributed computing, such as serialization, deserialization, and data migration.
It turns a compiled-time construct (the type of a data structure) into a runtime construct (a value that can be read, manipulated, and composed at runtime). A schema is a structure of a data type. ZIO Schema reifies the concept of structure for data types. It makes a high-level description of any data type and makes them first-class values.
Creating a schema for a data type helps us to write codecs for that data type. So this library can be a host of functionalities useful for writing codecs and protocols like JSON, Protobuf, CSV, and so forth.
With schema descriptions that can be automatically derived for case classes and sealed traits, ZIO Schema will be going to provide powerful features for free:
- Metaprogramming without macros, reflection, or complicated implicit derivations.
- Creating serialization and deserialization codecs for any supported protocol (JSON, Protobuf, etc.)
- Deriving standard type classes (
Eq
,Show
,Ordering
, etc.) from the structure of the data - Default values for data types
- Automate ETL (Extract, Transform, Load) pipelines
- Diffing: diffing between two values of the same type
- Patching: applying a diff to a value to update it
- Migration: migrating values from one type to another
- Computations as data: Not only we can turn types into values, but we can also turn computations into values. This opens up a whole new world of possibilities concerning distributed computing.
When our data structures need to be serialized, deserialized, persisted, or transported across the wire, then ZIO Schema lets us focus on data modeling and automatically tackle all the low-level, messy details for us.
ZIO Schema is used by a growing number of ZIO libraries, including ZIO Flow, ZIO Redis, ZIO SQL and ZIO DynamoDB.
In order to use this library, we need to add the following lines in our build.sbt
file:
libraryDependencies += "dev.zio" %% "zio-schema" % "1.0.1"
libraryDependencies += "dev.zio" %% "zio-schema-avro" % "1.0.1"
libraryDependencies += "dev.zio" %% "zio-schema-bson" % "1.0.1"
libraryDependencies += "dev.zio" %% "zio-schema-json" % "1.0.1"
libraryDependencies += "dev.zio" %% "zio-schema-msg-pack" % "1.0.1"
libraryDependencies += "dev.zio" %% "zio-schema-protobuf" % "1.0.1"
libraryDependencies += "dev.zio" %% "zio-schema-thrift" % "1.0.1"
libraryDependencies += "dev.zio" %% "zio-schema-zio-test" % "1.0.1"
// Required for the automatic generic derivation of schemas
libraryDependencies += "dev.zio" %% "zio-schema-derivation" % "1.0.1"
libraryDependencies += "org.scala-lang" % "scala-reflect" % scalaVersion.value % "provided"
In this simple example first, we create a schema for Person
and then run the diff operation on two instances of the Person
data type, and finally, we encode a Person instance using Protobuf protocol:
import zio._
import zio.stream._
import zio.schema.codec.{BinaryCodec, ProtobufCodec}
import zio.schema.{DeriveSchema, Schema}
import java.io.IOException
final case class Person(name: String, age: Int)
object Person {
implicit val schema: Schema[Person] = DeriveSchema.gen
val protobufCodec: BinaryCodec[Person] = ProtobufCodec.protobufCodec
}
object Main extends ZIOAppDefault {
def run: ZIO[Any, IOException, Unit] =
ZStream
.succeed(Person("John", 43))
.via(Person.protobufCodec.streamEncoder)
.runCollect
.flatMap(x =>
Console.printLine(s"Encoded data with protobuf codec: ${toHex(x)}")
)
def toHex(chunk: Chunk[Byte]): String =
chunk.map("%02X".format(_)).mkString
}
Here is the output of running the above program:
Encoded data with protobuf codec: 0A044A6F686E102B
- Zymposium - ZIO Schema by John A. De Goes, Adam Fraser, and Kit Langton (May 2021)
- ZIO SCHEMA: A Toolkit For Functional Distributed Computing by Dan Harris (Functional Scala 2021)
- Creating Declarative Query Plans With ZIO Schema by Dan Harris (ZIO World 2022)
- Describing Data...with free applicative functors (and more) by Kris Nuttycombe (Scala World) on the idea behind the xenomorph library
Learn more on the ZIO Schema homepage!
For the general guidelines, see ZIO contributor's guide.
Before you submit a PR, make sure your tests are passing, and that the code is properly formatted
sbt prepare
sbt test
See the Code of Conduct