-
Notifications
You must be signed in to change notification settings - Fork 102
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
Strange schema issue with Kafka Connect #125
Comments
According to README.md Providing Schema Name
Alternatively, a schema registry naming strategy implementation can be provided.
An example test implementation class is here. And link to CustomerProvidedSchemaNamingStrategy.java is broken |
Fixed with creation of naming strategy which uses connect.name as Glue Schema name:
and setting
Is it possible to ad this naming strategy implementation to code baseline? |
Closing since duplicate of #126 |
In my Kafka Connect connector I have 2 different schemas for key and value data with different names:
SourceRecord is created using both schemas:
My connect standalone.properties contains:
This produces very strange schemas, two versions with same name in Glue Schema Registry (Kafka Connect schema names are different). Under version 1 - key schema:
version 2 is ... Value schema:
Schemas have different connect.name and different name. Only namespace is same.
Why did schemas with different connect.name and name become one schema with different versions?
Could you please help me with resolving.
The text was updated successfully, but these errors were encountered: