Skip to content

Commit 341a33c

Browse files
authored
chore: add Hive 4.1.0 (#643)
* chore: add Hive 4.1.0 * chore: lint fix * fix: updated version in thrift error note
1 parent 25566fd commit 341a33c

File tree

11 files changed

+23
-21
lines changed

11 files changed

+23
-21
lines changed

docs/modules/hive/examples/getting_started/hive-postgres-s3.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
name: hive-postgres-s3
66
spec:
77
image:
8-
productVersion: 4.0.1
8+
productVersion: 4.1.0
99
clusterConfig:
1010
database:
1111
connString: jdbc:postgresql://postgresql:5432/hive

docs/modules/hive/examples/getting_started/hive-postgres-s3.yaml.j2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
name: hive-postgres-s3
66
spec:
77
image:
8-
productVersion: 4.0.1
8+
productVersion: 4.1.0
99
clusterConfig:
1010
database:
1111
connString: jdbc:postgresql://postgresql:5432/hive

docs/modules/hive/pages/troubleshooting/index.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
== Probe error 'Thrift Error' while using Kerberos authentication
44

5-
In Hive 4.0.1 with Kerberos enabled, health checks cause excessive error logs:
5+
In Hive 4.x with Kerberos enabled, health checks cause excessive error logs:
66

77
[source]
88
----

docs/modules/hive/pages/usage-guide/database-driver.adoc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ metadata:
147147
name: hive-with-drivers
148148
spec:
149149
image:
150-
productVersion: 4.0.1
150+
productVersion: 4.1.0
151151
clusterConfig:
152152
database:
153153
connString: jdbc:mysql://mysql:3306/hive # <1>
@@ -200,15 +200,15 @@ If you have access to a registry to store custom images, another approach is to
200200
.Copy the driver
201201
[source]
202202
----
203-
FROM oci.stackable.tech/sdp/hive:4.0.1-stackable0.0.0-dev
203+
FROM oci.stackable.tech/sdp/hive:4.1.0-stackable0.0.0-dev
204204
205205
RUN curl --fail -L https://repo1.maven.org/maven2/com/mysql/mysql-connector-j/8.0.31/mysql-connector-j-8.0.31.jar -o /stackable/mysql-connector-j-8.0.31.jar
206206
----
207207

208208
.Build and tag the image
209209
[source]
210210
----
211-
docker build -f ./Dockerfile -t oci.stackable.tech/sdp/hive:4.0.1-stackable0.0.0-dev-mysql .
211+
docker build -f ./Dockerfile -t oci.stackable.tech/sdp/hive:4.1.0-stackable0.0.0-dev-mysql .
212212
----
213213

214214
.Reference the new path to the driver without the need for using a volume mounted from a PVC
@@ -221,8 +221,8 @@ metadata:
221221
name: hive
222222
spec:
223223
image:
224-
custom: oci.stackable.tech/sdp/hive:4.0.1-stackable0.0.0-dev-mysql # <1>
225-
productVersion: 4.0.1
224+
custom: oci.stackable.tech/sdp/hive:4.1.0-stackable0.0.0-dev-mysql # <1>
225+
productVersion: 4.1.0
226226
clusterConfig:
227227
database:
228228
...

docs/modules/hive/pages/usage-guide/derby-example.adoc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ metadata:
1616
name: simple-hive-derby
1717
spec:
1818
image:
19-
productVersion: 4.0.1
19+
productVersion: 4.1.0
2020
clusterConfig:
2121
database:
2222
connString: jdbc:derby:;databaseName=/tmp/metastore_db;create=true
@@ -39,7 +39,7 @@ stringData:
3939
4040
WARNING: You should not use the `Derby` database in production. Derby stores data locally which does not work in high availability setups (multiple replicas) and all data is lost after Pod restarts.
4141
42-
To create a single node Apache Hive Metastore (v4.0.1) cluster with derby and S3 access, deploy a minio (or use any available S3 bucket):
42+
To create a single node Apache Hive Metastore (v4.1.0) cluster with derby and S3 access, deploy a minio (or use any available S3 bucket):
4343
[source,bash]
4444
----
4545
helm install minio \
@@ -71,7 +71,7 @@ metadata:
7171
name: simple-hive-derby
7272
spec:
7373
image:
74-
productVersion: 4.0.1
74+
productVersion: 4.1.0
7575
clusterConfig:
7676
database:
7777
connString: jdbc:derby:;databaseName=/stackable/metastore_db;create=true
@@ -152,7 +152,7 @@ metadata:
152152
name: simple-hive-postgres
153153
spec:
154154
image:
155-
productVersion: 4.0.1
155+
productVersion: 4.1.0
156156
clusterConfig:
157157
database:
158158
connString: jdbc:postgresql://hive-postgresql.default.svc.cluster.local:5432/hive

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// This is a separate file, since it is used by both the direct Hive-Operator documentation, and the overarching
33
// Stackable Platform documentation.
44

5+
- 4.1.0 (experimental)
56
- 4.0.1 (LTS)
67
- 4.0.0 (deprecated)
78
- 3.1.3 (deprecated)

examples/simple-hive-cluster-postgres-s3.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ metadata:
2525
name: simple-hive-postgres
2626
spec:
2727
image:
28-
productVersion: 4.0.1
28+
productVersion: 4.1.0
2929
stackableVersion: 0.0.0-dev
3030
clusterConfig:
3131
database:

examples/simple-hive-cluster.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
name: simple-hive-derby
66
spec:
77
image:
8-
productVersion: 4.0.1
8+
productVersion: 4.1.0
99
stackableVersion: 0.0.0-dev
1010
clusterConfig:
1111
database:

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ mod tests {
107107
name: simple-hive
108108
spec:
109109
image:
110-
productVersion: 4.0.1
110+
productVersion: 4.1.0
111111
clusterConfig:
112112
database:
113113
connString: jdbc:derby:;databaseName=/tmp/hive;create=true
@@ -142,7 +142,7 @@ mod tests {
142142
name: simple-hive
143143
spec:
144144
image:
145-
productVersion: 4.0.1
145+
productVersion: 4.1.0
146146
clusterConfig:
147147
database:
148148
connString: jdbc:derby:;databaseName=/tmp/hive;create=true

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ mod tests {
4545
name: simple-hive
4646
spec:
4747
image:
48-
productVersion: 4.0.1
48+
productVersion: 4.1.0
4949
clusterConfig:
5050
database:
5151
connString: jdbc:derby:;databaseName=/tmp/hive;create=true

0 commit comments

Comments
 (0)