I am using Kafka Connect UI docker container based on the image (landoop/kafka-connect-ui).
There is also schema-registry available in the same network. I posted the Country schema there and it is accessible at http://localhost:8081/subjects/country/versions/1.
All the schemas (in .avsc files) reside in the same directory (accessible by the container)
but it is conceptually wrong to have two different enums Country1 and Country2. However, in the moment I make the names equal (e.g., Country, the error appears: "schema.string" : Unable to parse the provided schema
I would like to use the schema (provided via
schema.filename
orschema.string
or anyhow)which depends on the file
country.avsc
with the schemaHow can I do that?
landoop/kafka-connect-ui
).http://localhost:8081/subjects/country/versions/1
..avsc
files) reside in the same directory (accessible by the container)Additional notes:
This kind of works with the following schema:
but it is conceptually wrong to have two different enums
Country1
andCountry2
. However, in the moment I make the names equal (e.g.,Country
, the error appears:"schema.string" : Unable to parse the provided schema