Skip to content

Commit 5de8d79

Browse files
feat: Add support for Trino 451 (#609)
* feat: Add support for Trino 451 * changelog * fix: JVM config * fix tests * increase keycloak resources * fix truncate test * fix hive examples db user credentials * fix linter --------- Co-authored-by: Malte Sander <malte.sander.it@gmail.com>
1 parent 986f217 commit 5de8d79

30 files changed

+182
-191
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ All notable changes to this project will be documented in this file.
77
### Added
88

99
- Support row filters and column masks in Rego rules ([#559]).
10+
- Support for version `451` ([#609]).
1011

1112
### Changed
1213

@@ -18,9 +19,14 @@ All notable changes to this project will be documented in this file.
1819
- Processing of corrupted log events fixed; If errors occur, the error
1920
messages are added to the log event ([#598]).
2021

22+
### Removed
23+
24+
- Support for version `428` ([#609]).
25+
2126
[#559]: https://github.com/stackabletech/trino-operator/pull/559
2227
[#573]: https://github.com/stackabletech/trino-operator/pull/573
2328
[#598]: https://github.com/stackabletech/trino-operator/pull/598
29+
[#609]: https://github.com/stackabletech/trino-operator/pull/609
2430

2531
## [24.3.0] - 2024-03-20
2632

docs/modules/trino/examples/getting_started/code/trino.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
name: simple-trino
66
spec:
77
image:
8-
productVersion: "442"
8+
productVersion: "451"
99
clusterConfig:
1010
catalogLabelSelector:
1111
matchLabels:

docs/modules/trino/examples/getting_started/code/trino.yaml.j2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
name: simple-trino
66
spec:
77
image:
8-
productVersion: "442"
8+
productVersion: "451"
99
clusterConfig:
1010
catalogLabelSelector:
1111
matchLabels:

docs/modules/trino/examples/usage-guide/opa-bundle-trino-cm-428.yaml

Lines changed: 0 additions & 37 deletions
This file was deleted.

docs/modules/trino/examples/usage-guide/trino-insecure.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ metadata:
1717
name: simple-trino
1818
spec:
1919
image:
20-
productVersion: "442"
20+
productVersion: "451"
2121
clusterConfig:
2222
catalogLabelSelector:
2323
matchLabels:

docs/modules/trino/examples/usage-guide/trino-secure-internal-tls.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ metadata:
1717
name: simple-trino
1818
spec:
1919
image:
20-
productVersion: "442"
20+
productVersion: "451"
2121
clusterConfig:
2222
tls:
2323
internalSecretClass: trino-internal-tls # <1>

docs/modules/trino/examples/usage-guide/trino-secure-tls-only.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ metadata:
1717
name: simple-trino
1818
spec:
1919
image:
20-
productVersion: "442"
20+
productVersion: "451"
2121
clusterConfig:
2222
tls:
2323
serverSecretClass: trino-tls # <1>

docs/modules/trino/examples/usage-guide/trino-secure-tls.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ metadata:
1717
name: simple-trino
1818
spec:
1919
image:
20-
productVersion: "442"
20+
productVersion: "451"
2121
clusterConfig:
2222
tls:
2323
serverSecretClass: trino-tls # <1>

docs/modules/trino/pages/usage-guide/catalogs/index.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ metadata:
7272
name: simple-trino
7373
spec:
7474
image:
75-
productVersion: "442"
75+
productVersion: "451"
7676
clusterConfig:
7777
catalogLabelSelector:
7878
matchLabels:

docs/modules/trino/pages/usage-guide/operations/graceful-shutdown.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ The coordinator process will receive a `SIGTERM` signal when Kubernetes wants to
1515
After the graceful shutdown timeout runs out, and the process still didn't exit, Kubernetes will issue a `SIGKILL` signal.
1616

1717
When a coordinator gets restarted, all currently running queries will fail and cannot be recovered after the restart process is finished.
18-
As of Trino version `442` this can not be prevented (e.g. by using multiple coordinators).
18+
As of Trino version `451` this can not be prevented (e.g. by using multiple coordinators).
1919

2020
== Workers
2121

0 commit comments

Comments
 (0)