Comparison
A comparison article between Schemaverse, Confluent Schema Registry, and AWS Glue
Last updated
A comparison article between Schemaverse, Confluent Schema Registry, and AWS Glue
Last updated
All rights reserved to Memphis.dev 2023
Before delving into the different supporting technologies, let's establish a baseline understanding of schemas and their role in message brokers or async server-server communication.
Schema = Structure.
A schema defines the structure of a "message" and follows a specific format to ensure effective communication between different applications/services/electronic entities.
Schemas can be found in both SQL & NoSQL databases, providing the structure the database expects to receive data. For example, first\_name:string
or first.name
etc. An unfamiliar or noncompliant schema will result in data being dropped, and the database will not save the record.
Likewise, schemas are critical in communication between two logical entities, such as two microservices. Consider a scenario where Service A writes a message to Service B, which expects a specific format like Protobuf, and its logic or code depends on specific keys and value types. Even a simple typo in a column name or an unexpected schema or format can cause issues for the consumer.
Schemas serve as a manual or automatic contract that ensures stable communication and dictates how two entities should interact.
The following comparison of technologies will help you establish and enforce schemas between services as data flows from one service to another.
AWS Glue is a serverless data integration service that makes it easier to discover, prepare, move, and integrate data from multiple sources for analytics, machine learning (ML), and application development.
Data integration engine
Event-driven ETL
No-code ETL jobs
Data preparation
The main components of AWS Glue are the Data Catalog, which stores metadata, and an ETL engine that can automatically generate Scala or Python code. Typical data sources would be Amazon S3, RDS, and Aurora.
Confluent Schema Registry provides a serving layer for your metadata.
It provides a RESTful interface for storing and retrieving your Avro®, JSON Schema, and Protobuf schemas.
It stores a versioned history of all schemas based on a specified subject name strategy, provides multiple compatibility settings, and allows the evolution of schemas according to the configured compatibility settings and expanded support for these schema types.
It provides serializers that plug into Apache Kafka® clients that handle schema storage and retrieval for Kafka messages sent in any supported formats.
Schema Registry lives outside of and separately from your Kafka brokers.
Your producers and consumers still talk to Kafka to publish and read data (messages) to topics.
Concurrently, they can also talk to Schema Registry to send and retrieve schemas that describe the data models for the messages.
Memphis Schemaverse provides a robust schema store and schema management layer on top of Memphis broker without a standalone compute unit or dedicated resources. With a unique & modern UI and programmatic approach, technical and non-technical users can create and define different schemas, attach the schema to multiple stations, and choose if the schema should be enforced or not.
Memphis' low-code approach removes the serialization part as it is embedded within the producer library. Schemaverse supports versioning, GitOps methodologies, and schema evolution.
Schemaverse's primary purpose is to act as an automatic gatekeeper, ensure the format and structure of ingested messages to a Memphis station, and reduce consumer crashes, as often happens if certain producers produce an event with an unfamiliar schema.
Schema enforcement between micrMemphis's
Data contracts
Convert events' format
Create an organizational standard around the different consumers and producers.
Parameter | AWS Glue | Schema Registry | Schemaverse |
---|---|---|---|
Data formats | JSON Schema, Avro, Protobuf | Avro, JSON Schema, Protobuf | JSON Schema, Protobuf, GraphQL |
Validation and Enforcement | Yes | Yes | Yes |
Serialisation | Requires implementation | Requires implementation | Transparent |
Deserialization | Requires implementation | Requires implementation | Transparent |
Management interface | GUI, CLI, SDK | REST, SDK, GUI | SDK, GUI, CLI |
Supported languages | Scala | Java, .NET, Python | Go, Node.js, Python, REST, TypeScript, NestJS, Java, .NET, Kotlin |
Compatibility mode | backward or forward | backward or forward | backward or forward |
Schema creation | Manual / Auto | Manual / Auto | Manual |
Pricing | $1.00 per 100,000 objects stored above 1M, per month + $1.00 per million requests above 1M in a month | Confluent Community License / Confluent Enterprise licence | Open-source / Free |
When data streamiSchemaverse'sns are integrated with schema management, schemas used for production are validated against schemas within a central registry, allowing you to control data quality centrally.
AWS Glue offers enforcement and validation using the Glue schema registry for Java-based applications using Apache Kafka, AWS MSK, Amazon Kinesis Data Streams, Apache Flink, Amazon Kinesis Data Analytics for Apache Flink, and AWS Lambda.
https://docs.aws.amazon.com/glue/latest/dg/schema-registry-gs.html
Schema registry validates and enforces message schemas at both the client and server side. Validation will take place on the client side by performing a serialization over the about-to-be-produced data by retrieving the schema from the schema registry. Confluent provides read-to-use serialization functions that can be used. Schema updates and evolution will require to boot of the client and fetching the updates to change the schema at the registry level. It first needed to be switched into a particular mode (forward/backward), performed the change, and then returned to default.
Schemaverse also validates and enforces the schema at the client level without the need for manual schema fetch and supports runtime evolution, meaning clients don't need a reboot to apply new schema changes, including different data formats.
Schemaverse also makes the serialization/deserialization transparent to the client and embeds it within the SDK based on the required data format.
When sending data over the network, it must be encoded into bytes.
AWS Glue and Schema Registry works similarly. Each created schema has an ID. When the application producing data has registered its schema, the Schema Registry serializer validates that the record produced by the application is structured with the fields and data types matching a registered schema.
Deserialization will take place by a similar process by fetching the needed schema based on the given ID within the message.
In AWS Glue and Schema Registry, It is the client's responsibility to implement and deal with the serialization, while in Schemaverse, it is fully transparent. All that is needed by the client is to produce a message that complies with the required structure.