Skip to content

Commit db8cd8a

Browse files
authored
Merge pull request #98 from stackabletech/chore/hdfs-version-for-24.11
chore: bump hdfs version to 3.4.0
2 parents e5b02d7 + af5654b commit db8cd8a

File tree

9 files changed

+17
-9
lines changed

9 files changed

+17
-9
lines changed

demos/hbase-hdfs-load-cycling-data/distcp-cycling-data.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,15 @@ spec:
1111
# We use 24.3.0 here which contains the distcp MapReduce components
1212
# This is not included in the 24.7 images and will fail.
1313
# See: https://github.com/stackabletech/docker-images/issues/793
14-
image: docker.stackable.tech/stackable/hadoop:3.3.4-stackable24.3.0
14+
image: docker.stackable.tech/stackable/hadoop:3.4.0-stackable24.11.0
1515
env:
1616
- name: HADOOP_USER_NAME
1717
value: stackable
1818
- name: HADOOP_CONF_DIR
1919
value: "/stackable/conf/hdfs"
2020
- name: HADOOP_CLASSPATH
2121
value: "/stackable/hadoop/share/hadoop/tools/lib/*.jar"
22+
# yamllint disable-line rule:line-length
2223
command: ["bash", "-c", "bin/hdfs dfs -mkdir -p /data/raw && bin/hadoop distcp -D fs.s3a.aws.credentials.provider=org.apache.hadoop.fs.s3a.AnonymousAWSCredentialsProvider s3a://public-backup-nyc-tlc/cycling-tripdata/demo-cycling-tripdata.csv.gz hdfs://hdfs/data/raw"]
2324
volumeMounts:
2425
- name: config-volume-hdfs

demos/jupyterhub-pyspark-hdfs-anomaly-detection-taxi-data/load-test-data.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,15 @@ spec:
88
spec:
99
containers:
1010
- name: load-ny-taxi-data
11-
image: docker.stackable.tech/stackable/hadoop:3.3.4-stackable24.7.0
11+
image: docker.stackable.tech/stackable/hadoop:3.4.0-stackable24.11.0
12+
# yamllint disable rule:line-length
1213
command: ["bash", "-c", "/stackable/hadoop/bin/hdfs dfs -mkdir -p /ny-taxi-data/raw \
1314
&& cd /tmp \
1415
&& for month in 2020-09; do \
1516
curl -O https://repo.stackable.tech/repository/misc/ny-taxi-data/fhvhv_tripdata_$month.parquet \
1617
&& /stackable/hadoop/bin/hdfs dfs -put fhvhv_tripdata_$month.parquet /ny-taxi-data/raw/; \
1718
done"]
19+
# yamllint enable rule:line-length
1820
volumeMounts:
1921
- name: hdfs-discovery-configmap
2022
mountPath: /hdfs

demos/spark-k8s-anomaly-detection-taxi-data/load-test-data.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ spec:
99
containers:
1010
- name: load-ny-taxi-data
1111
image: "bitnami/minio:2022-debian-10"
12+
# yamllint disable-line rule:line-length
1213
command: ["bash", "-c", "cd /tmp && for month in 2020-09 2020-10 2020-11 2020-12; do curl -O https://repo.stackable.tech/repository/misc/ny-taxi-data/fhvhv_tripdata_$month.parquet && mc --insecure alias set minio http://minio:9000/ $(cat /minio-s3-credentials/accessKey) $(cat /minio-s3-credentials/secretKey) && mc cp fhvhv_tripdata_$month.parquet minio/demo/ny-taxi-data/raw/ && mc mb --ignore-existing minio/prediction; done"]
1314
volumeMounts:
1415
- name: minio-s3-credentials

demos/trino-taxi-data/load-test-data.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ spec:
99
containers:
1010
- name: load-ny-taxi-data
1111
image: "bitnami/minio:2024-debian-12"
12+
# yamllint disable-line rule:line-length
1213
command: ["bash", "-c", "cd /tmp && for month in 2020-01 2020-02 2020-03 2020-04 2020-05 2020-06 2020-07 2020-08 2020-09 2020-10 2020-11 2020-12 2021-01 2021-02 2021-03 2021-04 2021-05 2021-06 2021-07 2021-08 2021-09 2021-10 2021-11 2021-12 2022-01 2022-02 2022-03 2022-04; do curl -O https://repo.stackable.tech/repository/misc/ny-taxi-data/yellow_tripdata_$month.parquet && mc --insecure alias set minio http://minio:9000/ $(cat /minio-s3-credentials/accessKey) $(cat /minio-s3-credentials/secretKey) && mc cp yellow_tripdata_$month.parquet minio/demo/ny-taxi-data/raw/; done"]
1314
volumeMounts:
1415
- name: minio-s3-credentials

stacks/dual-hive-hdfs-s3/hdfs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ metadata:
2525
name: hdfs
2626
spec:
2727
image:
28-
productVersion: 3.3.4
28+
productVersion: 3.4.0
2929
clusterConfig:
3030
listenerClass: external-unstable
3131
dfsReplication: 1

stacks/end-to-end-security/hdfs.yaml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
1+
---
12
apiVersion: hdfs.stackable.tech/v1alpha1
23
kind: HdfsCluster
34
metadata:
45
name: hdfs
56
spec:
67
image:
7-
productVersion: 3.3.4
8+
productVersion: 3.4.0
89
clusterConfig:
910
zookeeperConfigMapName: hdfs-znode
1011
authentication:
@@ -29,8 +30,9 @@ spec:
2930
level: DEBUG
3031
configOverrides: &configOverrides
3132
core-site.xml:
32-
# The idea is that the user "hive" can't do anything in hdfs, *but* it can impersonate other users
33-
# (such as trino), that have the needed permissions
33+
# The idea is that the user "hive" can't do anything in hdfs,
34+
# *but* it can impersonate other users (such as trino),
35+
# that have the needed permissions
3436
hadoop.proxyuser.hive.users: "*"
3537
hadoop.proxyuser.hive.hosts: "*"
3638
roleGroups:

stacks/hdfs-hbase/hdfs.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
1+
---
12
apiVersion: hdfs.stackable.tech/v1alpha1
23
kind: HdfsCluster
34
metadata:
45
name: hdfs
56
spec:
67
image:
7-
productVersion: 3.3.4
8+
productVersion: 3.4.0
89
clusterConfig:
910
dfsReplication: 1
1011
zookeeperConfigMapName: hdfs-znode

stacks/jupyterhub-pyspark-hdfs/hdfs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ metadata:
1313
name: hdfs
1414
spec:
1515
image:
16-
productVersion: 3.3.4
16+
productVersion: 3.4.0
1717
clusterConfig:
1818
dfsReplication: 1
1919
zookeeperConfigMapName: hdfs-znode

stacks/keycloak-opa-poc/hdfs.yaml

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

0 commit comments

Comments
 (0)