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

Transactional Graph #106

Open
thedodd opened this issue Oct 15, 2021 · 0 comments
Open

Transactional Graph #106

thedodd opened this issue Oct 15, 2021 · 0 comments
Projects

Comments

@thedodd
Copy link
Collaborator

thedodd commented Oct 15, 2021

Catalog can use simple u64 IDs for relations, types, edges &c. Data will be encoded using a simple multi-byte key for efficient storage and scanning.

Edges will be stored as three entries:

  • Edge object itself, keyed with typeID and edgeID. Value is the object with its properties.
  • Outbound edge, keyed as typeID, from object's ID, to object's ID and edgeID. Value is empty.
  • Inbound edge, keyed as typeID, to object's ID, from object's ID and edgeID. Value is empty.

Need to pin down distributed transactional integration with Stream for full end to end transactional processing and actually idempotent event production (never a dup due to retry).

@thedodd thedodd added this to Backlog in Main Nov 17, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
Main
Backlog
Development

No branches or pull requests

1 participant