spring-cloud-schema-registry
spring-cloud-schema-registry copied to clipboard
A schema registry implementation for Spring Cloud Stream
Addresses 3rd solution from #29 Looks up optional `Schema-Reference` header that is suppose to contain referenced subjects in the following format: 1) `Schema-Reference: ; ; // without version` 2) `Schema-Reference:...
@mraliagha commented on [Sun Apr 21 2019](https://github.com/spring-cloud/spring-cloud-stream/issues/1695) I am trying to use Spring Cloud Stream (which is based on Spring Boot) application with Confluent Schema Registry. The authentication method is...
The registry-client pom contains an invalid declared test dependency ``` com.fasterxml.jackson.dataformat jackson-dataformat-xml tests ``` mvn dependency:tree shows ``` [INFO] +- org.springframework.cloud:spring-cloud-schema-registry-client:jar:1.1.0:compile [INFO] | +- org.springframework:spring-messaging:jar:5.3.3:compile [INFO] | +- org.springframework:spring-web:jar:5.3.3:compile [INFO]...
We see an issue where producers of data are using version 1 of a schema when the registry has up to version 2 (backwards compatible). When the spring cloud client...
I was looking to stub `SchemaRegistryClient` and stumbled across [StubSchemaRegistryClient](https://github.com/spring-cloud/spring-cloud-schema-registry/blob/master/spring-cloud-schema-registry-client/src/test/java/org/springframework/cloud/schema/avro/StubSchemaRegistryClient.java). I think this would be nice to share with `spring-cloud-schema-registry` consumers for easier testing. Not sure if there are other...
Hi I am trying to run examples at [spring-cloud-stream-samples](https://github.com/spring-cloud/spring-cloud-stream-samples). Specifically the **schema-registry-samples/schema-registry-vanilla-kafka-binder** sub-project. But when I try to run the either of the 3 projects in it. It is not...
Most of the discussion was already done in a ticket against spring-cloud-stream, https://github.com/spring-cloud/spring-cloud-stream/issues/850. My team enjoys using spring cloud stream but we are also trying to use confluent so we...
I'm trying to read avro message from kafka where subject name is `user-intake`. I publish message with header: "contentType": "application/vnd.user-intake-value.v1+avro" (TopicNameStrategy) , but I'm getting `org.apache.avro.AvroRuntimeException: Malformed data. Length is...
Also, update the client versions to the latest.
There are cases when a lightweight SR server is a useful alternative to Confluent's SR. Example, local development, or CI IT/AT test runs.