Skip to content

Commit

Permalink
bump spark and hadoop
Browse files Browse the repository at this point in the history
  • Loading branch information
modithah committed Oct 31, 2024
1 parent f18db1c commit 06d9814
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ def jacksonVersion = '2.13.4'
def pulsarGroup = 'org.apache.pulsar'
def pulsarVersion = '2.10.3'
def alpnAgentVersion = '2.0.10'
def hadoopVersion = '2.10.2'
def apacheSparkVersion = '3.3.3'
def hadoopVersion = '3.4.0'
def apacheSparkVersion = '3.4.3'
def antlrVersion = '4.8'

ext.libraries = [
Expand Down
8 changes: 4 additions & 4 deletions clients/venice-push-job/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@ dependencies {
exclude group: 'javax.servlet'
}

implementation (libraries.hadoopCommon) {
compileOnly (libraries.hadoopCommon) {
// Exclude transitive dependency
exclude group: 'org.apache.avro'
exclude group: 'javax.servlet'
}

implementation (libraries.hadoopHdfs) {
compileOnly (libraries.hadoopHdfs) {
// Exclude transitive dependency
exclude group: 'org.apache.avro'
exclude group: 'javax.servlet'
Expand All @@ -49,7 +49,7 @@ dependencies {
// Spark 3.3 depends on log4j 2.17.2 which has a performance regression (LOG4J2-3487)
exclude group: 'org.apache.logging.log4j'
}
implementation (libraries.apacheSparkCore) {
compileOnly (libraries.apacheSparkCore) {
// Spark 3.1 depends on Avro 1.8.2 - which uses avro-mapred with the hadoop2 classifier. Starting from Avro 1.9
// onwards, avro-mapred is no longer published with a hadoop2 classifier, but Gradle still looks for one.
exclude group: 'org.apache.avro', module: 'avro-mapred'
Expand All @@ -64,7 +64,7 @@ dependencies {
// Spark 3.3 depends on log4j 2.17.2 which has a performance regression (LOG4J2-3487)
exclude group: 'org.apache.logging.log4j'
}
implementation (libraries.apacheSparkSql) {
compileOnly (libraries.apacheSparkSql) {
// Spark 3.1 depends on Avro 1.8.2 - which uses avro-mapred with the hadoop2 classifier. Starting from Avro 1.9
// onwards, avro-mapred is no longer published with a hadoop2 classifier, but Gradle still looks for one.
exclude group: 'org.apache.avro', module: 'avro-mapred'
Expand Down

0 comments on commit 06d9814

Please sign in to comment.