Skip to content
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

Update Hadoop to version 3.3.6 #425

Merged
merged 2 commits into from
Oct 20, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion benchmarks/apache-spark/src/main/resources/log4j2.xml
Original file line number Diff line number Diff line change
Expand Up @@ -61,12 +61,18 @@
-->
<Logger name="org.apache.hadoop.util.NativeCodeLoader" level="error"/>

<!--
<!--
Note that spark.local.dir will be overridden by the value set by the cluster manager
(via SPARK_LOCAL_DIRS in mesos/standalone/kubernetes and LOCAL_DIRS in YARN).
-->
<Logger name="org.apache.spark.SparkConf" level="error"/>

<!--
To enable non-built-in garbage collector(s) List(...), users should configure it(them) to
spark.eventLog.gcMetrics.youngGenerationGarbageCollectors or spark.eventLog.gcMetrics.oldGenerationGarbageCollectors
-->
<Logger name="org.apache.spark.metrics.GarbageCollectionMetrics" level="error"/>

<!--
URL.setURLStreamHandlerFactory failed to set FsUrlStreamHandlerFactory
-->
Expand Down
2 changes: 2 additions & 0 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -268,6 +268,8 @@ lazy val apacheSparkBenchmarks = (project in file("benchmarks/apache-spark"))
),
// Override versions pulled in by dependencies.
dependencyOverrides ++= Seq(
// Force newer version of Hadoop (compatibility with IBM Semeru JDK builds).
"org.apache.hadoop" % "hadoop-client-runtime" % "3.3.6",
// Force common (newer) version of Netty packages.
"io.netty" % "netty-all" % nettyVersion,
// Force common (newer) version of Jackson packages.
Expand Down