-
Notifications
You must be signed in to change notification settings - Fork 141
feat(proposal): in-memory database without mlmd service #724
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
base: main
Are you sure you want to change the base?
feat(proposal): in-memory database without mlmd service #724
Conversation
Signed-off-by: Alessio Pragliola <[email protected]>
Signed-off-by: Alessio Pragliola <[email protected]>
Signed-off-by: Alessio Pragliola <[email protected]>
|
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: The full list of commands accepted by this bot can be found here.
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
|
@Al-Pragliola can you extract the non-in-memory changes into a separate PR? Then we can do either in-memory or one using the sqllite version on top. |
@rareddy the abstraction is already there #425 , it's planned to be merged after kubeflow 1.10 release https://github.com/kubeflow/model-registry/milestone/2 |
|
This pull request has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
|
This pull request has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
Description
Builds on top of #425
In this proposal, I have added a new datastore as an alternative to mlmd for testing/development/static scenarios. This datastore acts as an in-memory database, it supports all actions possible on mlmd and specified in the openapi spec, and a seeding mechanism to have a common baseline in case of process exit/disturbance.
How Has This Been Tested?
expected output:
{ "items": [ { "description": "loreum ipsum", "id": "1", "name": "test" }, { "description": "loreum ipsum", "id": "2", "name": "test2" }, { "description": "Iris scikit-learn model", "id": "3", "name": "iris", "state": "LIVE" } ], "nextPageToken": "", "pageSize": 1, "size": 3 }Merge criteria:
DCOcheck)