-
Notifications
You must be signed in to change notification settings - Fork 383
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
[#2079] feat(relation-entity-store): Add the relation entity store interface #1930
Conversation
@jerryshao @yuqi1129 @coolderli Please take a look when you have time, thanks! |
d3ce370
to
a3e18a1
Compare
core/src/main/java/com/datastrato/gravitino/storage/relation/RelationBackend.java
Outdated
Show resolved
Hide resolved
core/src/main/java/com/datastrato/gravitino/storage/relation/mysql/MysqlBackend.java
Outdated
Show resolved
Hide resolved
core/src/main/java/com/datastrato/gravitino/storage/relation/RelationEntityStore.java
Outdated
Show resolved
Hide resolved
0ddbc53
to
82e18e0
Compare
@jerryshao @yuqi1129 Fixed as per comments, please take a look again when you have time, thanks! |
core/src/main/java/com/datastrato/gravitino/storage/relation/RelationEntityStore.java
Outdated
Show resolved
Hide resolved
core/src/main/java/com/datastrato/gravitino/storage/relation/RelationBackend.java
Outdated
Show resolved
Hide resolved
core/src/main/java/com/datastrato/gravitino/storage/relation/RelationBackend.java
Outdated
Show resolved
Hide resolved
core/src/main/java/com/datastrato/gravitino/storage/relation/RelationBackend.java
Outdated
Show resolved
Hide resolved
core/src/main/java/com/datastrato/gravitino/storage/relation/RelationEntityStore.java
Outdated
Show resolved
Hide resolved
76243d4
to
3f46e1b
Compare
core/src/main/java/com/datastrato/gravitino/storage/relational/RelationalEntityStore.java
Outdated
Show resolved
Hide resolved
3f46e1b
to
23945b7
Compare
@jerryshao @qqqttt123 @yuqi1129 @coolderli The comments have been fixed. Please help to review again when you have time, thanks |
LGTM, @yuqi1129 @jerryshao Could you give further suggestion? |
core/src/main/java/com/datastrato/gravitino/storage/relational/RelationalEntityStore.java
Show resolved
Hide resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, @xloya thanks for your contribution.
### What changes were proposed in this pull request? The purpose of this PR is to implement JDBC backend operation Metalake metadata which use MySQL as the database. Depend on #1930. Metadata operations of Catalog, Schema, Table and Fileset will be supported in the remaining PRs. ### Why are the changes needed? Fix: #2080 ### How was this patch tested? Add unit tests to test the metalake metadata ops. --------- Co-authored-by: xiaojiebao <[email protected]>
What changes were proposed in this pull request?
The purpose of this PR is to add the interface of relational entity store, and the Mysql backend will be implemented in the next PR.
Why are the changes needed?
Fix: #2079