Skip to content

Commit

Permalink
Fixes #4055: Upgrade hadoop to 3.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
vga91 committed May 14, 2024
1 parent 7532119 commit d2c2c59
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions extended/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -111,9 +111,9 @@ dependencies {

compileOnly group: 'org.apache.parquet', name: 'parquet-hadoop', version: '1.13.1', withoutServers
// testImplementation analogous is not needed since is bundled via `test-utils` submodule
compileOnly group: 'org.apache.hadoop', name: 'hadoop-common', version: '3.1.0', withoutServers
compileOnly group: 'org.apache.hadoop', name: 'hadoop-common', version: '3.4.0', withoutServers

compileOnly group: 'org.apache.hadoop', name: 'hadoop-aws', version: '3.3.5', {
compileOnly group: 'org.apache.hadoop', name: 'hadoop-aws', version: '3.4.0', {
exclude group: 'com.amazonaws'
}

Expand All @@ -125,7 +125,7 @@ dependencies {
testImplementation group: 'org.apache.arrow', name: 'arrow-vector', version: '13.0.0'
testImplementation group: 'org.apache.arrow', name: 'arrow-memory-netty', version: '13.0.0'

testImplementation group: 'org.apache.hadoop', name: 'hadoop-aws', version: '3.3.5', {
testImplementation group: 'org.apache.hadoop', name: 'hadoop-aws', version: '3.4.0', {
exclude group: 'com.amazonaws'
}

Expand Down
8 changes: 4 additions & 4 deletions extra-dependencies/hadoop/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,14 @@ shadowJar {
}

dependencies {
implementation group: 'org.apache.hadoop', name: 'hadoop-hdfs-client', version: '3.3.5', commonExclusions
implementation group: 'org.apache.hadoop', name: 'hadoop-common', version: '3.3.5', commonExclusions
implementation group: 'org.apache.hadoop', name: 'hadoop-hdfs-client', version: '3.4.0', commonExclusions
implementation group: 'org.apache.hadoop', name: 'hadoop-common', version: '3.4.0', commonExclusions
implementation group: 'com.google.protobuf', name: 'protobuf-java', version: '3.23.1', commonExclusions

implementation group: 'org.apache.parquet', name: 'parquet-hadoop', version: '1.13.1', commonExclusions
implementation group: 'org.apache.parquet', name: 'parquet-column', version: '1.13.1', commonExclusions
implementation group: 'org.apache.hadoop', name: 'hadoop-mapreduce-client-core', version: '3.3.5', commonExclusions
implementation group: 'org.apache.hadoop', name: 'hadoop-aws', version: '3.3.5', commonExclusions.andThen {
implementation group: 'org.apache.hadoop', name: 'hadoop-mapreduce-client-core', version: '3.4.0', commonExclusions
implementation group: 'org.apache.hadoop', name: 'hadoop-aws', version: '3.4.0', commonExclusions.andThen {
exclude group: 'com.amazonaws'
}
}
Expand Down

0 comments on commit d2c2c59

Please sign in to comment.