From 05dab412cb731b87e641d4c9389d0163f7aafb71 Mon Sep 17 00:00:00 2001 From: unknown Date: Sat, 18 Nov 2023 13:43:12 +0530 Subject: [PATCH] added background context --- .../tutorials/kafka/managing-schemas-using-schema-registry.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pages/docs/tutorials/kafka/managing-schemas-using-schema-registry.md b/pages/docs/tutorials/kafka/managing-schemas-using-schema-registry.md index 991af1a8f2e1..13aaa5ef3471 100644 --- a/pages/docs/tutorials/kafka/managing-schemas-using-schema-registry.md +++ b/pages/docs/tutorials/kafka/managing-schemas-using-schema-registry.md @@ -8,6 +8,9 @@ weight: 50 This tutorial will teach you how to manage schemas with Schema Registry. This will enable us to ensure a consistent exchange of data across distributed systems, thus minimizing any errors. ## Background context +To handle the evolving complexity of modern Event-Driven Architecture, the need for schema management has become increasingly prevalent. Data validation helps in maintaining data consistency and compatibility. Schema Registry can be used to validate data being exchanged by producers and consumers. + +In this tutorial, we’ve used the Apicurio Registry, which is a popular Schema Registry implementation, in combination with Avro which is a language-neutral data serialization system. ## Prerequisites