-
Notifications
You must be signed in to change notification settings - Fork 2.4k
[HUDI-9556] Migrate trino-hudi plugin to hudi repo #13493
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
Merged
yihua
merged 25 commits into
apache:master
from
voonhous:trino-master-hudi-fork-2025-04-28-voon1
Aug 6, 2025
Merged
Changes from all commits
Commits
Show all changes
25 commits
Select commit
Hold shift + click to select a range
cc023d3
Cherrypick trino-hudi from OSS trino at 1046d9a5410207bd7f79c12cf7494…
voonhous 9c7870c
Initial commit for adding trinohudi connector
codope 68bf1f6
Fix build error
yihua 23f62de
Exclude hudi-trino-plugin
voonhous d0a051f
Add stage to test trino individually
voonhous d1b8f36
Only build and install what is required
voonhous eec3ae0
Do not rebuild dependencies in stage 2
voonhous 2acd448
Exclude hudi-trino-plugin files for licensing checks
voonhous 504d24a
Exclude hudi-trino-plugin files for licensing checks
voonhous a92cb2b
Fix build error again
voonhous c5b21b1
Fix build error again
voonhous 3fdee8c
Fix build error again
voonhous dd3756b
Add modernizer configs
voonhous a9f681a
Separate build and test stage
voonhous 2ab15f3
Disable trino tests first
voonhous 4807753
Cherrypick trino-hudi from OHI trino at a56b8014a3fe2edeb00330522cf47…
voonhous b50c66e
Add hudi-trino-plugin to checkstyle-suppressions.xml
voonhous b6342d9
Fix checkstyle error
voonhous 96b8faf
Do not build hudi dependencies
voonhous 38aad8a
Remove trino dependencies
voonhous 71fd627
Use JDK 17
voonhous 3a2605b
Adhere to public API access level
voonhous d84b4fc
Remove unused step
yihua 2815101
Fix license check
yihua 0296584
Add new line
yihua File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
86 changes: 86 additions & 0 deletions
86
hudi-trino-plugin/.mvn/modernizer/violations-production-code-only.xml
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,86 @@ | ||
| <?xml version="1.0"?> | ||
| <!-- | ||
| ~ Licensed to the Apache Software Foundation (ASF) under one | ||
| ~ or more contributor license agreements. See the NOTICE file | ||
| ~ distributed with this work for additional information | ||
| ~ regarding copyright ownership. The ASF licenses this file | ||
| ~ to you under the Apache License, Version 2.0 (the | ||
| ~ "License"); you may not use this file except in compliance | ||
| ~ with the License. You may obtain a copy of the License at | ||
| ~ | ||
| ~ http://www.apache.org/licenses/LICENSE-2.0 | ||
| ~ | ||
| ~ Unless required by applicable law or agreed to in writing, | ||
| ~ software distributed under the License is distributed on an | ||
| ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
| ~ KIND, either express or implied. See the License for the | ||
| ~ specific language governing permissions and limitations | ||
| ~ under the License. | ||
| --> | ||
| <modernizer> | ||
| <violation> | ||
| <name>java/util/concurrent/ThreadPoolExecutor."<init>":(IIJLjava/util/concurrent/TimeUnit;Ljava/util/concurrent/BlockingQueue;)V</name> | ||
| <version>1.1</version> | ||
| <comment>Use constructor that takes ThreadFactory and name the threads</comment> | ||
| </violation> | ||
|
|
||
| <violation> | ||
| <name>java/util/concurrent/ThreadPoolExecutor."<init>":(IIJLjava/util/concurrent/TimeUnit;Ljava/util/concurrent/BlockingQueue;Ljava/util/concurrent/RejectedExecutionHandler;)V</name> | ||
| <version>1.1</version> | ||
| <comment>Use constructor that takes ThreadFactory and name the threads</comment> | ||
| </violation> | ||
|
|
||
| <violation> | ||
| <name>java/util/concurrent/ScheduledThreadPoolExecutor."<init>":(I)V</name> | ||
| <version>1.1</version> | ||
| <comment>Use constructor that takes ThreadFactory and name the threads</comment> | ||
| </violation> | ||
|
|
||
| <violation> | ||
| <name>java/util/concurrent/ScheduledThreadPoolExecutor."<init>":(ILjava/util/concurrent/RejectedExecutionHandler;)V</name> | ||
| <version>1.1</version> | ||
| <comment>Use constructor that takes ThreadFactory and name the threads</comment> | ||
| </violation> | ||
|
|
||
| <violation> | ||
| <name>java/util/concurrent/Executors.newFixedThreadPool:(I)Ljava/util/concurrent/ExecutorService;</name> | ||
| <version>1.1</version> | ||
| <comment>Use factory method that takes ThreadFactory and name the threads</comment> | ||
| </violation> | ||
|
|
||
| <violation> | ||
| <name>java/util/concurrent/Executors.newWorkStealingPool:()Ljava/util/concurrent/ExecutorService;</name> | ||
| <version>1.1</version> | ||
| <comment>Use factory method that takes ThreadFactory and name the threads</comment> | ||
| </violation> | ||
|
|
||
| <violation> | ||
| <name>java/util/concurrent/Executors.newWorkStealingPool:(I)Ljava/util/concurrent/ExecutorService;</name> | ||
| <version>1.1</version> | ||
| <comment>Use factory method that takes ThreadFactory and name the threads</comment> | ||
| </violation> | ||
|
|
||
| <violation> | ||
| <name>java/util/concurrent/Executors.newSingleThreadExecutor:()Ljava/util/concurrent/ExecutorService;</name> | ||
| <version>1.1</version> | ||
| <comment>Use factory method that takes ThreadFactory and name the threads</comment> | ||
| </violation> | ||
|
|
||
| <violation> | ||
| <name>java/util/concurrent/Executors.newCachedThreadPool:()Ljava/util/concurrent/ExecutorService;</name> | ||
| <version>1.1</version> | ||
| <comment>Use factory method that takes ThreadFactory and name the threads</comment> | ||
| </violation> | ||
|
|
||
| <violation> | ||
| <name>java/util/concurrent/Executors.newSingleThreadScheduledExecutor:()Ljava/util/concurrent/ScheduledExecutorService;</name> | ||
| <version>1.1</version> | ||
| <comment>Use factory method that takes ThreadFactory and name the threads</comment> | ||
| </violation> | ||
|
|
||
| <violation> | ||
| <name>java/util/concurrent/Executors.newScheduledThreadPool:(I)Ljava/util/concurrent/ScheduledExecutorService;</name> | ||
| <version>1.1</version> | ||
| <comment>Use factory method that takes ThreadFactory and name the threads</comment> | ||
| </violation> | ||
| </modernizer> | ||
Oops, something went wrong.
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.