Skip to content

Commit df810ba

Browse files
authored
chore: Hadoop - bump to 3.4.2 (#717)
1 parent 6662975 commit df810ba

File tree

8 files changed

+24
-23
lines changed

8 files changed

+24
-23
lines changed

docs/modules/hdfs/examples/getting_started/hdfs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
name: simple-hdfs
66
spec:
77
image:
8-
productVersion: 3.4.1
8+
productVersion: 3.4.2
99
clusterConfig:
1010
zookeeperConfigMapName: simple-hdfs-znode
1111
dfsReplication: 1

docs/modules/hdfs/examples/getting_started/hdfs.yaml.j2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
name: simple-hdfs
66
spec:
77
image:
8-
productVersion: 3.4.1
8+
productVersion: 3.4.2
99
clusterConfig:
1010
zookeeperConfigMapName: simple-hdfs-znode
1111
dfsReplication: 1

docs/modules/hdfs/pages/usage-guide/upgrading.adoc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44
IMPORTANT: HDFS upgrades are experimental, and details may change at any time.
55

66
HDFS currently requires a manual process to upgrade.
7-
This guide takes you through an example case, upgrading an example cluster (from our xref:getting_started/index.adoc[Getting Started] guide) from HDFS 3.3.6 to 3.4.1.
7+
This guide takes you through an example case, upgrading an example cluster (from our xref:getting_started/index.adoc[Getting Started] guide) from HDFS 3.3.6 to 3.4.2.
88

99
== Preparing for the worst
1010

1111
Upgrades can fail, and it is important to prepare for when that happens.
12-
Apache HDFS supports https://hadoop.apache.org/docs/r3.4.1/hadoop-project-dist/hadoop-hdfs/HdfsRollingUpgrade.html#Downgrade_and_Rollback[two ways to revert an upgrade]:
12+
Apache HDFS supports https://hadoop.apache.org/docs/r3.4.2/hadoop-project-dist/hadoop-hdfs/HdfsRollingUpgrade.html#Downgrade_and_Rollback[two ways to revert an upgrade]:
1313

1414
Rollback:: Reverts all user data to the pre-upgrade state. Requires taking the cluster offline.
1515
Downgrade:: Downgrades the HDFS software but preserves all changes made by users. Can be performed as a rolling change, keeping the cluster online.
@@ -69,7 +69,7 @@ Once HDFS is ready to upgrade, the HdfsCluster can be updated with the new produ
6969

7070
[source,shell]
7171
----
72-
$ kubectl patch hdfs/simple-hdfs --patch '{"spec": {"image": {"productVersion": "3.4.1"}}}' --type=merge
72+
$ kubectl patch hdfs/simple-hdfs --patch '{"spec": {"image": {"productVersion": "3.4.2"}}}' --type=merge
7373
hdfscluster.hdfs.stackable.tech/simple-hdfs patched
7474
----
7575

@@ -103,7 +103,7 @@ Finally, mark the cluster as upgraded:
103103

104104
[source,shell]
105105
----
106-
$ kubectl patch hdfs/simple-hdfs --subresource=status --patch '{"status": {"deployedProductVersion": "3.4.1"}}' --type=merge
106+
$ kubectl patch hdfs/simple-hdfs --subresource=status --patch '{"status": {"deployedProductVersion": "3.4.2"}}' --type=merge
107107
hdfscluster.hdfs.stackable.tech/simple-hdfs patched
108108
----
109109

docs/modules/hdfs/partials/supported-versions.adoc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@
22
// This is a separate file, since it is used by both the direct HDFS-Operator documentation, and the overarching
33
// Stackable Platform documentation.
44

5-
- 3.4.1 (LTS)
5+
- 3.4.2 (LTS)
6+
- 3.4.1 (Deprecated)

rust/operator-binary/src/config/jvm.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ mod tests {
121121
name: hdfs
122122
spec:
123123
image:
124-
productVersion: 3.4.1
124+
productVersion: 3.4.2
125125
clusterConfig:
126126
zookeeperConfigMapName: hdfs-zk
127127
nameNodes:
@@ -149,7 +149,7 @@ mod tests {
149149
name: hdfs
150150
spec:
151151
image:
152-
productVersion: 3.4.1
152+
productVersion: 3.4.2
153153
clusterConfig:
154154
zookeeperConfigMapName: hdfs-zk
155155
nameNodes:

rust/operator-binary/src/crd/affinity.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ metadata:
5555
name: simple-hdfs
5656
spec:
5757
image:
58-
productVersion: 3.4.1
58+
productVersion: 3.4.2
5959
clusterConfig:
6060
zookeeperConfigMapName: hdfs-zk
6161
journalNodes:

rust/operator-binary/src/crd/mod.rs

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1523,7 +1523,7 @@ metadata:
15231523
name: hdfs
15241524
spec:
15251525
image:
1526-
productVersion: 3.4.1
1526+
productVersion: 3.4.2
15271527
clusterConfig:
15281528
zookeeperConfigMapName: hdfs-zk
15291529
dataNodes:
@@ -1558,7 +1558,7 @@ metadata:
15581558
name: hdfs
15591559
spec:
15601560
image:
1561-
productVersion: 3.4.1
1561+
productVersion: 3.4.2
15621562
clusterConfig:
15631563
zookeeperConfigMapName: hdfs-zk
15641564
dataNodes:
@@ -1593,7 +1593,7 @@ metadata:
15931593
name: hdfs
15941594
spec:
15951595
image:
1596-
productVersion: 3.4.1
1596+
productVersion: 3.4.2
15971597
clusterConfig:
15981598
zookeeperConfigMapName: hdfs-zk
15991599
dataNodes:
@@ -1623,7 +1623,7 @@ metadata:
16231623
name: hdfs
16241624
spec:
16251625
image:
1626-
productVersion: 3.4.1
1626+
productVersion: 3.4.2
16271627
clusterConfig:
16281628
zookeeperConfigMapName: hdfs-zk
16291629
rackAwareness:
@@ -1688,7 +1688,7 @@ metadata:
16881688
name: hdfs
16891689
spec:
16901690
image:
1691-
productVersion: 3.4.1
1691+
productVersion: 3.4.2
16921692
clusterConfig:
16931693
zookeeperConfigMapName: hdfs-zk
16941694
dataNodes:
@@ -1744,7 +1744,7 @@ metadata:
17441744
name: hdfs
17451745
spec:
17461746
image:
1747-
productVersion: 3.4.1
1747+
productVersion: 3.4.2
17481748
clusterConfig:
17491749
zookeeperConfigMapName: hdfs-zk
17501750
dataNodes:
@@ -1800,7 +1800,7 @@ metadata:
18001800
name: hdfs
18011801
spec:
18021802
image:
1803-
productVersion: 3.4.1
1803+
productVersion: 3.4.2
18041804
clusterConfig:
18051805
zookeeperConfigMapName: hdfs-zk
18061806
dataNodes:
@@ -1827,7 +1827,7 @@ metadata:
18271827
name: hdfs
18281828
spec:
18291829
image:
1830-
productVersion: 3.4.1
1830+
productVersion: 3.4.2
18311831
clusterConfig:
18321832
zookeeperConfigMapName: hdfs-zk
18331833
rackAwareness:

tests/test-definition.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,17 @@
22
dimensions:
33
- name: hadoop
44
values:
5-
- 3.4.1
5+
- 3.4.2
66
# To use a custom image, add a comma and the full name after the product version
7-
# - 3.4.1,oci.stackable.tech/sandbox/hadoop:3.4.1-stackable0.0.0-dev
7+
# - 3.4.2,oci.stackable.tech/sandbox/hadoop:3.4.2-stackable0.0.0-dev
88
- name: hadoop-latest
99
values:
10-
- 3.4.1
10+
- 3.4.2
1111
# To use a custom image, add a comma and the full name after the product version
12-
# - 3.4.1,oci.stackable.tech/sandbox/hadoop:3.4.1-stackable0.0.0-dev
12+
# - 3.4.2,oci.stackable.tech/sandbox/hadoop:3.4.2-stackable0.0.0-dev
1313
- name: hadoop-external-client-docker-image
1414
values:
15-
- 3.4.1
15+
- 3.4.2
1616
- name: zookeeper
1717
values:
1818
- 3.9.3

0 commit comments

Comments
 (0)