-
Notifications
You must be signed in to change notification settings - Fork 1.9k
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
[Core][jdk17] Support jdk17 #7086
base: dev
Are you sure you want to change the base?
Conversation
final String datetime = "2023-12-22 00:00:00"; | ||
LocalDateTime parse = DateTimeUtils.parse(datetime, Formatter.YYYY_MM_DD_HH_MM_SS); |
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.
jdk17 optimizes timestamps and temporarily uses a fixed format
Thanks @liugddx for working on this. Can you please rebase your PR. |
Thanks for following this PR, I will finish it this week. |
# Conflicts: # .github/workflows/backend.yml # .github/workflows/schedule_backend.yml # docs/en/faq.md # docs/zh/faq.md # pom.xml # seatunnel-dist/pom.xml # seatunnel-dist/src/main/assembly/assembly-bin-ci.xml # seatunnel-dist/src/main/assembly/assembly-bin.xml # seatunnel-shade/seatunnel-hadoop3-3.3.4-uber/pom.xml # tools/dependencies/known-dependencies.txt
@@ -10,7 +10,7 @@ Read data from Hive. | |||
|
|||
In order to use this connector, You must ensure your spark/flink cluster already integrated hive. The tested hive version is 2.3.9 and 3.1.3 . | |||
|
|||
If you use SeaTunnel Engine, You need put seatunnel-hadoop3-3.1.4-uber.jar and hive-exec-3.1.3.jar and libfb303-0.9.3.jar in $SEATUNNEL_HOME/lib/ dir. | |||
If you use SeaTunnel Engine, You need put seatunnel-hadoop3-3.3.4-uber.jar and hive-exec-3.1.3.jar and libfb303-0.9.3.jar in $SEATUNNEL_HOME/lib/ dir. |
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.
Should we update hive-exec and libfb303 too?
@@ -17,7 +17,7 @@ | |||
|
|||
### For SeaTunnel Zeta Engine | |||
|
|||
1. You must ensure `seatunnel-hadoop3-3.1.4-uber.jar`, `aliyun-sdk-oss-3.4.1.jar`, `hadoop-aliyun-3.1.4.jar` and `jdom-1.1.jar` in `${SEATUNNEL_HOME}/lib/` dir. | |||
1. You must ensure `seatunnel-hadoop3-3.3.4-uber.jar`, `aliyun-sdk-oss-3.4.1.jar`, `hadoop-aliyun-3.1.4.jar` and `jdom-1.1.jar` in `${SEATUNNEL_HOME}/lib/` dir. |
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.
The hadoop version not match with hadoop-aliyun version
cc @hailin0 |
Purpose of this pull request
Refer to https://issues.apache.org/jira/browse/FLINK-15736
LocalFileIT
test on jdk 17Does this PR introduce any user-facing change?
How was this patch tested?
Check list
New License Guide
release-note
.