-
Notifications
You must be signed in to change notification settings - Fork 3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(schema-registry): replace confluent schema registry #7930
feat(schema-registry): replace confluent schema registry #7930
Conversation
…to use kafka consumers, still WIP
…gistry fix typo
…nt-schema-registry
…-schema-registry # Conflicts: # docker/kafka-setup/kafka-setup.sh # docker/quickstart/docker-compose-without-neo4j.quickstart.yml # docker/quickstart/docker-compose.quickstart.yml # docker/quickstart/generate_docker_quickstart.sh # metadata-integration/java/datahub-client/build.gradle
} | ||
|
||
@Override | ||
@Operation(summary = "", description = "", tags = { "Schema Registry Base" }) |
Check warning
Code scanning / QDJVMC
Default annotation parameter value
} | ||
|
||
@Override | ||
@Operation(summary = "", description = "", tags = { "Schema Registry Base" }) |
Check warning
Code scanning / QDJVMC
Default annotation parameter value
|
||
private final HttpServletRequest request; | ||
|
||
@Qualifier("schemaRegistryService") |
Check warning
Code scanning / QDJVMC
@Qualifier not copyable by lombok
a02f1df
to
7ac77ad
Compare
7ac77ad
to
03df8e5
Compare
@@ -16,16 +17,17 @@ | |||
|
|||
|
|||
@SpringBootTest(classes = { | |||
MCLSpringTestConfiguration.class | |||
MCLSpringTestConfiguration.class, ConfigurationProvider.class |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Guessing this was the main change from the other PR?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Some additional test beans, and the selection of the schema registry implementation in the test.
For now, confluent schema registry can be disabled and GMS act as the schema registry, however quickstart continues to use it. The helm chart update will allow both configurations. Quickstart will eventually remove it.
Checklist