You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 30, 2023. It is now read-only.
Now, protobuf converter can read the data for Test.proto but if you try to write the this data in avro, sink, you will get an exception similar to follows org.apache.avro.SchemaParseException: Can't redefine: nested
In the original schema, there are two fields with same name but different type. However, when building connect schema in ProtobufData, we lose the type scope and hence it results in conflicts in Avro sinks.
The text was updated successfully, but these errors were encountered:
If we can include the type name in the field, the conflict can be avoided. I can fix this if this solution sounds alright. Other suggestions are welcome as well.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Assume a following simple protobuf schema
Now, protobuf converter can read the data for Test.proto but if you try to write the this data in avro, sink, you will get an exception similar to follows
org.apache.avro.SchemaParseException: Can't redefine: nested
In the original schema, there are two fields with same name but different type. However, when building connect schema in ProtobufData, we lose the type scope and hence it results in conflicts in Avro sinks.
The text was updated successfully, but these errors were encountered: