Skip to content

Commit

Permalink
[fixes apache#22744] Update hadoop library patch versions to 2.10.2 a…
Browse files Browse the repository at this point in the history
…nd 3.2.4 (apache#22745)
  • Loading branch information
lukecwik authored Aug 16, 2022
1 parent 4947059 commit 8c81d46
Show file tree
Hide file tree
Showing 9 changed files with 17 additions and 17 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -474,7 +474,7 @@ class BeamModulePlugin implements Plugin<Project> {
// Try to keep grpc_version consistent with gRPC version in google_cloud_platform_libraries_bom
def grpc_version = "1.45.1"
def guava_version = "31.1-jre"
def hadoop_version = "2.10.1"
def hadoop_version = "2.10.2"
def hamcrest_version = "2.1"
def influxdb_version = "2.19"
def httpclient_version = "4.5.13"
Expand Down
4 changes: 2 additions & 2 deletions runners/spark/spark_runner.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ def sparkTestProperties(overrides = [:]) {
def hadoopVersions = [
"285" : "2.8.5",
"292" : "2.9.2",
"2101": "2.10.1",
"321" : "3.2.1",
"2102": "2.10.2",
"324" : "3.2.4",
]

hadoopVersions.each { kv -> configurations.create("hadoopVersion$kv.key") }
Expand Down
4 changes: 2 additions & 2 deletions sdks/java/extensions/sorter/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ description = "Apache Beam :: SDKs :: Java :: Extensions :: Sorter"
def hadoopVersions = [
"285": "2.8.5",
"292": "2.9.2",
"2101": "2.10.1",
"321": "3.2.1",
"2102": "2.10.2",
"324": "3.2.4",
]

hadoopVersions.each {kv -> configurations.create("hadoopVersion$kv.key")}
Expand Down
4 changes: 2 additions & 2 deletions sdks/java/extensions/sql/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ configurations {
def hadoopVersions = [
"285": "2.8.5",
"292": "2.9.2",
"2101": "2.10.1",
"321": "3.2.1",
"2102": "2.10.2",
"324": "3.2.4",
]

hadoopVersions.each {kv -> configurations.create("hadoopVersion$kv.key")}
Expand Down
4 changes: 2 additions & 2 deletions sdks/java/io/hadoop-common/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ ext.summary = "Library to add shared Hadoop classes among Beam IOs."
def hadoopVersions = [
"285": "2.8.5",
"292": "2.9.2",
"2101": "2.10.1",
"321": "3.2.1",
"2102": "2.10.2",
"324": "3.2.4",
]

hadoopVersions.each {kv -> configurations.create("hadoopVersion$kv.key")}
Expand Down
4 changes: 2 additions & 2 deletions sdks/java/io/hadoop-file-system/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ ext.summary = "Library to read and write Hadoop/HDFS file formats from Beam."
def hadoopVersions = [
"285": "2.8.5",
"292": "2.9.2",
"2101": "2.10.1",
"321": "3.2.1",
"2102": "2.10.2",
"324": "3.2.4",
]

hadoopVersions.each {kv -> configurations.create("hadoopVersion$kv.key")}
Expand Down
4 changes: 2 additions & 2 deletions sdks/java/io/hadoop-format/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ ext.summary = "IO to read data from sources and to write data to sinks that impl
def hadoopVersions = [
"285": "2.8.5",
"292": "2.9.2",
"2101": "2.10.1",
"321": "3.2.1",
"2102": "2.10.2",
"324": "3.2.4",
]

hadoopVersions.each {kv -> configurations.create("hadoopVersion$kv.key")}
Expand Down
4 changes: 2 additions & 2 deletions sdks/java/io/hcatalog/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ ext.summary = "IO to read and write for HCatalog source."
def hadoopVersions = [
"285": "2.8.5",
"292": "2.9.2",
"2101": "2.10.1",
"2102": "2.10.2",
]

hadoopVersions.each {kv -> configurations.create("hadoopVersion$kv.key")}
Expand Down Expand Up @@ -104,4 +104,4 @@ hadoopVersions.each { kv ->
classpath = configurations."hadoopVersion$kv.key" + sourceSets.test.runtimeClasspath
include '**/*Test.class'
}
}
}
4 changes: 2 additions & 2 deletions sdks/java/io/parquet/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ ext.summary = "IO to read and write on Parquet storage format."
def hadoopVersions = [
"285": "2.8.5",
"292": "2.9.2",
"2101": "2.10.1",
"321": "3.2.1",
"2102": "2.10.2",
"324": "3.2.4",
]

hadoopVersions.each {kv -> configurations.create("hadoopVersion$kv.key")}
Expand Down

0 comments on commit 8c81d46

Please sign in to comment.