Skip to content
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

Is it possible to consume a topic with multiple schemas ? #1680

Open
houdheyfa opened this issue Apr 30, 2024 · 1 comment
Open

Is it possible to consume a topic with multiple schemas ? #1680

houdheyfa opened this issue Apr 30, 2024 · 1 comment

Comments

@houdheyfa
Copy link

Is your feature request related to a problem? Please describe.
A clear and concise description of what the problem is.

Describe the solution you'd like
A clear and concise description of what you want to happen. Please include links to other clients' solutions and/or KIPs for Kafka features if applicable.

Additional context
Add any other context or screenshots about the feature request here.

@MohitVachhani
Copy link

Multiple schema as in ?

Let us assume 2 schemas


interface User {
  id: string
  name: string
}

interface Employee {
 id: string
 userId: string
 companyId: string
}


Now you can receive the message of the above both types in the same topic and no issues will be faced. Kafka is just a message broker and nothing more so schema usually doesn't matter....

Do let me know if anything more is here for discussion.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants