From 94ed80c35bf49e3feecb2977c7fd1e2170845357 Mon Sep 17 00:00:00 2001 From: Manfred Moser Date: Wed, 18 Sep 2024 10:56:05 -0700 Subject: [PATCH 1/2] Add Trino 459 release notes --- docs/src/main/sphinx/release.md | 1 + docs/src/main/sphinx/release/release-459.md | 89 +++++++++++++++++++++ 2 files changed, 90 insertions(+) create mode 100644 docs/src/main/sphinx/release/release-459.md diff --git a/docs/src/main/sphinx/release.md b/docs/src/main/sphinx/release.md index e97c3336d330d..921e233dc58e0 100644 --- a/docs/src/main/sphinx/release.md +++ b/docs/src/main/sphinx/release.md @@ -6,6 +6,7 @@ ```{toctree} :maxdepth: 1 +release/release-459 release/release-458 release/release-457 release/release-456 diff --git a/docs/src/main/sphinx/release/release-459.md b/docs/src/main/sphinx/release/release-459.md new file mode 100644 index 0000000000000..c48a0d156c20e --- /dev/null +++ b/docs/src/main/sphinx/release/release-459.md @@ -0,0 +1,89 @@ +# Release 459 (25 Sep 2024) + +## General + +* Fix possible query failure when `retry_policy` is set to `TASK` and when + adaptive join reordering is enabled. ({issue}`23407`) + +## Docker image + +* Update Java runtime to Java 23. ({issue}`23482`) + +## CLI + +* Display data sizes and rates with binary (1024-based) abbreviations such as + `KiB` and `MiB`. Add flag `--decimal-data-size` to use decimal (1000-based) + values and abbreviations such as `KB` and `MB`. (#13054) + +## BigQuery connector + +* Improve performance of queries that access only a subset of fields from nested + data. ({issue}`23443`) +* Fix query failure when the `bigquery.service-cache-ttl` property isn't `0ms` + and case insensitive name matching is enabled. ({issue}`23481`) + +## ClickHouse connector + +* Improve performance for queries involving conditions with `varchar` data. ({issue}`23516`) + +## Delta Lake connector + +* Allow configuring maximum concurrent HTTP requests to Azure on every node in + [](/object-storage/file-system-azure) with `azure.max-http-requests`. + ({issue}`22915`) +* Add support for WASB to [](/object-storage/file-system-azure). ({issue}`23511`) +* Allow disabling caching of Delta Lake transaction logs when file system caching + is enabled with the `delta.fs.cache.disable-transaction-log-caching` property. ({issue}`21451`) +* Improve cache hit ratio for the [](/object-storage/file-system-cache). ({issue}`23172`) +* Fix incorrect results when writing [deletion + vectors](https://docs.delta.io/latest/delta-deletion-vectors.html). ({issue}`23229`) +* Fix failures for queries with containing aggregations with a `DISTINCT` + clause on metadata tables. ({issue}`23529`) + +## Elasticsearch connector + +* Fix failures for `count(*)` queries with predicates containing non-ASCII + strings. ({issue}`23425`) + +## Hive connector + +* Allow configuring maximum concurrent HTTP requests to Azure on every node in + [](/object-storage/file-system-azure) with `azure.max-http-requests`. + ({issue}`22915`) +* Add support for WASB to [](/object-storage/file-system-azure). ({issue}`23511`) +* Improve cache hit ratio for the [](/object-storage/file-system-cache). ({issue}`23172`) +* Fix failures for queries with containing aggregations with a `DISTINCT` + clause on metadata tables. ({issue}`23529`) + +## Hudi connector + +* Allow configuring maximum concurrent HTTP requests to Azure on every node in + [](/object-storage/file-system-azure) with `azure.max-http-requests`. + ({issue}`22915`) +* Add support for WASB to [](/object-storage/file-system-azure). ({issue}`23511`) +* Fix failures for queries with containing aggregations with a `DISTINCT` + clause on metadata tables. ({issue}`23529`) + +## Iceberg connector + +* Allow configuring maximum concurrent HTTP requests to Azure on every node in + [](/object-storage/file-system-azure) with `azure.max-http-requests`. + ({issue}`22915`) +* Add support for WASB to [](/object-storage/file-system-azure). ({issue}`23511`) +* Improve cache hit ratio for the [](/object-storage/file-system-cache). ({issue}`23172`) +* Fix failures for queries with containing aggregations with a `DISTINCT` + clause on metadata tables. ({issue}`23529`) + +## Local file connector + +* {{breaking}} Remove the local file connector. ({issue}`23556`) + +## OpenSearch connector + +* Fix failures for `count(*)` queries with predicates containing non-ASCII + strings. ({issue}`23425`) + +## SPI + +* Add `ConnectorAccessControl` argument to the + `ConnectorMetadata.getTableHandleForExecute` method. ({issue}`23524`) \ No newline at end of file From bee29753f6dd5acc339a4cce5e463f17cee5239c Mon Sep 17 00:00:00 2001 From: Manfred Moser Date: Wed, 25 Sep 2024 15:25:51 -0700 Subject: [PATCH 2/2] Correct docs for azure.max-http-requests --- docs/src/main/sphinx/object-storage/file-system-azure.md | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/docs/src/main/sphinx/object-storage/file-system-azure.md b/docs/src/main/sphinx/object-storage/file-system-azure.md index 5ab9716b03c47..8b67731575145 100644 --- a/docs/src/main/sphinx/object-storage/file-system-azure.md +++ b/docs/src/main/sphinx/object-storage/file-system-azure.md @@ -44,11 +44,9 @@ system support: - [Data size](prop-type-data-size) Defaults to `4MB`. * - `azure.max-http-requests` - Maximum [integer](prop-type-integer) number of concurrent HTTP requests to - Azure on every node. Defaults to double the number of processors on the - node. Minimum `1`. Use this property to reduce the number of connections - when you observe too many connections from your Trino cluster nodes to - Azure Storage and encounter rate limiting issues. - + Azure from every node. Defaults to double the number of processors on the + node. Minimum `1`. Use this property to reduce the number of requests when + you encounter rate limiting issues. ::: (azure-access-key-authentication)=