From 453a81de0b237b7238f6976dd15312a0adacea64 Mon Sep 17 00:00:00 2001 From: Jake Morrison Date: Mon, 22 Jul 2024 16:55:57 -0500 Subject: [PATCH] Doc --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index e65115f..b36d5dc 100644 --- a/README.md +++ b/README.md @@ -54,7 +54,7 @@ def start(_type, _args) do {AvroSchema, [cache_dir: cache_dir]}, ] - opts = [strategy: :one_for_one, name: LogElasticsearch.Supervisor] + opts = [strategy: :one_for_one, name: Example.Supervisor] Supervisor.start_link(children, opts) end ``` @@ -108,11 +108,11 @@ Consumers look up the id to get the schema. The Schema Registry also does validation on new schemas to ensure that they meet a backwards compatibility policy for the organization. -This helps you to [evolve schemas](https://docs.confluent.io/current/schema-registry/avro.html) +This helps to [evolve schemas](https://docs.confluent.io/current/schema-registry/avro.html) over time and deploy them without breaking running applications. The disadvantage of the Schema Registry is that it can be a single point -of failure. Different schema registries will in general assign a different +of failure. Different schema registries will, in general, assign a different numeric id to the same schema. This library provides functions to register schemas with the Schema Registry