-
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
[Improve][Zeta] Split the classloader of task group #7580
Conversation
good job |
700f2ac
to
b041fc8
Compare
cfd221b
to
0be3497
Compare
a739f54
to
6928753
Compare
...e/seatunnel-engine-server/src/test/java/org/apache/seatunnel/engine/server/dag/TaskTest.java
Show resolved
Hide resolved
link #7646 |
@@ -81,7 +80,7 @@ public HiveSourceConfig(ReadonlyConfig readonlyConfig) { | |||
readonlyConfig | |||
.getOptional(HdfsSourceConfigOptions.READ_PARTITIONS) | |||
.ifPresent(this::validatePartitions); | |||
this.table = HiveTableUtils.getTableInfo(readonlyConfig); | |||
Table table = HiveTableUtils.getTableInfo(readonlyConfig); |
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.
Avoid conflicts in the logical dag phase of Hive
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
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.
+1
Purpose of this pull request
This PR split classloader of task group. Before this PR, the source and sink use same classloader. This will increase the risk of jar dependency conflicts.
Does this PR introduce any user-facing change?
no
How was this patch tested?
add new test.
Check list
New License Guide
release-note
.