-
Notifications
You must be signed in to change notification settings - Fork 299
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
[AMORO-3118][Improvement]: Move iceberg codes from amoro-core to a new module amoro-iceberg #3108
Merged
zhoujinsong
merged 3 commits into
apache:master
from
baiyangtx:amoro-core-without-iceberg
Aug 23, 2024
Merged
[AMORO-3118][Improvement]: Move iceberg codes from amoro-core to a new module amoro-iceberg #3108
zhoujinsong
merged 3 commits into
apache:master
from
baiyangtx:amoro-core-without-iceberg
Aug 23, 2024
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
github-actions
bot
added
module:mixed-flink
Flink moduel for Mixed Format
module:core
Core module
module:ams-server
Ams server module
module:mixed-hive
Hive moduel for Mixed Format
type:build
labels
Aug 16, 2024
baiyangtx
force-pushed
the
amoro-core-without-iceberg
branch
3 times, most recently
from
August 17, 2024 07:29
a4bd588
to
e2bee39
Compare
baiyangtx
force-pushed
the
amoro-core-without-iceberg
branch
from
August 19, 2024 08:39
a7b7224
to
faebed7
Compare
baiyangtx
changed the title
[DRAFT][Improvement]: Move mixed-format codes from core to a new module amoro-mixed-format-core
[Improvement]: Move mixed-format codes from core to a new module amoro-mixed-format-core
Aug 19, 2024
baiyangtx
changed the title
[Improvement]: Move mixed-format codes from core to a new module amoro-mixed-format-core
[AMORO-3118][Improvement]: Move mixed-format codes from core to a new module amoro-mixed-format-core
Aug 19, 2024
baiyangtx
force-pushed
the
amoro-core-without-iceberg
branch
2 times, most recently
from
August 20, 2024 02:34
dc73e22
to
0c13876
Compare
baiyangtx
force-pushed
the
amoro-core-without-iceberg
branch
2 times, most recently
from
August 21, 2024 12:16
b1c81b0
to
acb6f38
Compare
baiyangtx
changed the title
[AMORO-3118][Improvement]: Move mixed-format codes from core to a new module amoro-mixed-format-core
[AMORO-3118][Improvement]: Move iceberg codes from amoro-core to a new module amoro-iceberg
Aug 21, 2024
baiyangtx
force-pushed
the
amoro-core-without-iceberg
branch
from
August 22, 2024 02:28
acb6f38
to
bff5939
Compare
zhoujinsong
reviewed
Aug 22, 2024
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.
I left some minor suggestions, PTAL. @baiyangtx
amoro-ams/amoro-ams-api/src/main/java/org/apache/amoro/api/config/DataExpirationConfig.java
Outdated
Show resolved
Hide resolved
amoro-core/src/main/java/org/apache/amoro/utils/MixedCatalogUtil.java
Outdated
Show resolved
Hide resolved
zhoujinsong
approved these changes
Aug 23, 2024
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.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
module:ams-server
Ams server module
module:core
Core module
module:mixed-flink
Flink moduel for Mixed Format
module:mixed-hive
Hive moduel for Mixed Format
module:mixed-spark
Spark module for Mixed Format
module:mixed-trino
trino module for Mixed Format
type:build
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Why are the changes needed?
Currently, there are too many logics related to mixed-format in our amoro-core module.
In order to make amoro to support multiple formats better, amoro needs to have the ability to run without Iceberg.
Therefore, I moved the codes related to mixed-format in
amoro-core
to themixed-format
module.In the future, the
amoro-core
module should focus on the interface definitions across formats.close #3118
Brief change log
I moved all the codes related to mixed-format in
amoro-core
to a new moduleamoro-mixed-format/amoro-mixed-format-core
, and only retained some common codes in core, such as those related to Client and UnifiedCatalog.How was this patch tested?
Add some test cases that check the changes thoroughly including negative and positive cases if possible
Add screenshots for manual tests if appropriate
Run test locally before making a pull request
Documentation