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
Hi guys!
Could you please tell can kafka-connect-datagen generate protobuf schema with oneof type using io.confluent.connect.protobuf.ProtobufConverter?
Currently union avro type like ["string","int"] is translated to message type with multiple fields:
message Union { string string = 1; int32 int = 2; }
while desired schema is:
message Union { oneof value { string string = 1; int32 int = 2; } }
Explicit oneof schema setting on schema registry will produce to incompatible schema exception.
The text was updated successfully, but these errors were encountered:
Hi guys!
Could you please tell can kafka-connect-datagen generate protobuf schema with oneof type using io.confluent.connect.protobuf.ProtobufConverter?
Currently union avro type like
["string","int"]
is translated to message type with multiple fields:while desired schema is:
Explicit oneof schema setting on schema registry will produce to incompatible schema exception.
The text was updated successfully, but these errors were encountered: