Skip to content

Commit

Permalink
[Improve][Zeta] Make the default value of classloader-cache-mode is true
Browse files Browse the repository at this point in the history
  • Loading branch information
dailai committed Oct 29, 2024
1 parent a8d0d4c commit 8dbf796
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions config/seatunnel.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@

seatunnel:
engine:
classloader-cache-mode: true
history-job-expire-minutes: 1440
backup-count: 1
queue-type: blockingqueue
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ public class ServerConfigOptions {
public static final Option<Boolean> CLASSLOADER_CACHE_MODE =
Options.key("classloader-cache-mode")
.booleanType()
.defaultValue(false)
.defaultValue(true)
.withDescription(
"Whether to use classloader cache mode. With cache mode, all jobs share the same classloader if the jars are the same");

Expand Down

0 comments on commit 8dbf796

Please sign in to comment.