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
Currently, schema in pulsar is tightly coupled with a topic (one-to-one association). As part of this enhancement, we want to make it a many-to-many association, This would allow for:
A topic to have multiple different versioned schemas.
One versioned schema list (schemaGroup?) could map to different topics.
To do this, we need to change the way schema and topic association works today. Schema (keyed by schemaId) should NOT be stored under a topic key. Schema and topic should be stored in different zookeeper directories. The association should be stored separately to allow many to many associations between topic and schema.
type/featureThe PR added a new feature or issue requested a new feature
2 participants
Converted from issue
This discussion was converted from issue #8301 on December 09, 2022 14:21.
Heading
Bold
Italic
Quote
Code
Link
Numbered list
Unordered list
Task list
Attach files
Mention
Reference
Menu
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Currently, schema in pulsar is tightly coupled with a topic (one-to-one association). As part of this enhancement, we want to make it a many-to-many association, This would allow for:
To do this, we need to change the way schema and topic association works today. Schema (keyed by schemaId) should NOT be stored under a topic key. Schema and topic should be stored in different zookeeper directories. The association should be stored separately to allow many to many associations between topic and schema.
Here is a proposed solution for the same
All reactions