Reputation: 1727
We are using confluent schema registry to validate our avro schemas before publishing. I've two questions here,
Upvotes: 1
Views: 561
Reputation: 461
There is CACHE storage that producers and consumers have. This cache stores the registered schema.
If you are sending multiple data and your cache has that schema so it makes no calls. Only at the time of registering the schema, it makes calls to the Schema Registry to get the schema and add it to the Cache.
Upvotes: 1
Reputation: 191854
It makes one call per schema, then caches it in memory while the application runs
The protocol depends on the URL you've configured, but it is HTTP by default
Upvotes: 2