This repository was archived by the owner on Jan 18, 2026. It is now read-only.
Replies: 2 comments 15 replies
-
|
It seems the issue is the redeclaration of |
Beta Was this translation helpful? Give feedback.
15 replies
-
|
I'm simply apply DFS to resolve this problem, thanks |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Here is the problem
I have 2 schemas mapped with 2 events in my application:
{ "type": "record", "namespace": "org.sample.avro.objects", "name": "AccountCreated", "doc": "An account is created", "fields": [ { "name": "id", "type": "string", "doc": "The account id" }, { "name": "fullName", "type": "string", "doc": "The account's full name" }, { "name": "address", "type": { "type": "record", "name": "address", "fields": [ { "name": "city", "type": "string" } ] } } ] }and
{ "type": "record", "namespace": "org.sample.avro.objects", "name": "AccountUpdated", "doc": "An account is updated", "fields": [ { "name": "id", "type": "string", "doc": "The account id" }, { "name": "fullName", "type": "string", "doc": "The account's full name" }, { "name": "address", "type": { "type": "record", "name": "address", "fields": [ { "name": "city", "type": "string" } ] } } ] }and when I register a new union schema like this
It's return error:
anyone can help me or any solution for register a UnionSchema, just let me know. Thanks a lot
Beta Was this translation helpful? Give feedback.
All reactions