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

Fixes 4055: Upgrade hadoop to 3.4.0 #451

Closed
wants to merge 1 commit into from
Closed
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
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ subprojects {

ext {
// NB: due to version.json generation by parsing this file, the next line must not have any if/then/else logic
neo4jVersion = "5.20.0"
neo4jVersion = "5.19.0"
// instead we apply the override logic here
neo4jVersionEffective = project.hasProperty("neo4jVersionOverride") ? project.getProperty("neo4jVersionOverride") : neo4jVersion
testContainersVersion = '1.18.3'
Expand Down
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
Loading