Skip to content

Commit c44a81e

Browse files
committed
Add release notes for 0.290
1 parent 498784b commit c44a81e

File tree

2 files changed

+110
-0
lines changed

2 files changed

+110
-0
lines changed

presto-docs/src/main/sphinx/release.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ Release Notes
55
.. toctree::
66
:maxdepth: 1
77

8+
release/release-0.290
89
Release-0.289 [2024-08-23] <release/release-0.289>
910
Release-0.288.1 [2024-08-12] <release/release-0.288.1>
1011
Release-0.288 [2024-06-13] <release/release-0.288>
Lines changed: 109 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,109 @@
1+
=============
2+
Release 0.290
3+
=============
4+
5+
**Highlights**
6+
==============
7+
8+
**Details**
9+
===========
10+
11+
General Changes
12+
_______________
13+
* Fix array_intersect for single parameter array<array<T>> to be deterministic regardless of the order of null input:pr:`23890`.
14+
* Fix bug in local property calculation when spill is enabled :pr:`23922`.
15+
* Fix bug to unescape like pattern and validate escape string with no unresolved value :pr:`23456`.
16+
* Fix plan validation failures for some join queries running with spill enabled when using Presto C++.
17+
* Fix to query and filter using Iceberg metadata columns "$path" and "$data_sequence_number" :pr:`23472`.
18+
* Improve JoinPrefilter optimizer for wide join keys and multiple join keys :pr:`23858`.
19+
* Improve writer scaling in skewed conditions by setting optimized_scale_writer_producer_buffer to on by default :pr:`23774`.
20+
* Add UUID type support to the Parquet reader and writer. :pr:`23627`.
21+
* Add a configurable-sized cache for Iceberg table puffin files to improve query planning time controlled by the `iceberg.max-statistics-file-cache-size` configuration property. :pr:`23177`.
22+
* Add a flag to the Presto CLI which allows skipping SSL certificate verification `:pr:23780`.
23+
* Add a session property `native_max_extended_partial_aggregation_memory` which specifies presto native max partial aggregation memory when data reduction is optimal :pr:`23527`.
24+
* Add a session property `native_max_partial_aggregation_memory` which specifies presto native max partial aggregation memory when data reduction is not optimal :pr:`23527`.
25+
* Add a session property `native_max_spill_bytes ` which specifies presto native max allowed spill bytes :pr:`23527`.
26+
* Add function :func: `is_private_ip` that returns true when the input IP address is private or a reserved IP address ... :pr:`23520`.
27+
* Add function :func:`ip_prefix_subnets` that splits the input prefix into subnets the size of the new prefix length. ... :pr:`23656`.
28+
* Add incremental periodic cache persistence for Presto C++ worker. :pr:`23626`.
29+
* Add new property `eager-plan-validation-enabled` for eager building of validation of a logical plan before queuing. :pr:`23649`.
30+
* Add presto icon to .idea :pr:`23579`.
31+
* Add session property ``inline_projections_on_values`` and configuration property ``optimizer.inline-projections-on-values`` to evaluate project node on values node :pr:`23245`.
32+
* Add support in QueuedStatement protocol to accept pre-minted query id and slug :pr:`23407`.
33+
* Add support to proxy AuthorizedIdentity via JWT :pr:`23546`.
34+
* Added support for casting char datatype to various numeric datatypes. :pr:`23792`.
35+
* Adds a new NodeManager : 'PluginNodeManager' :pr:`23863`.
36+
* Replace configuration property `async-cache-full-persistence-interval` with `async-cache-persistence-interval`. :pr:`23626`.
37+
* Remove array_dupes and array_has_dupes alias names from functions :func:`array_duplicates` and :func:`array_has_duplicates`.
38+
* Avoid pushdown of negative position for element_at for array :pr:`23479`.
39+
* GET `/v1/info/state` to return INACTIVE state until the resource group configuration manager is fully initialized :pr:`23585`.
40+
* Make IcebergDistributedSmokeTestBase abstract :pr:`23580`.
41+
* Upgraded avro to version 1.11.4 :pr:`23868`.
42+
* Upgraded commons-codec to version 1.17.0 :pr:`23868`.
43+
* Upgraded commons-compress to version 1.26.2 :pr:`23868`.
44+
* Upgraded commons-io to version 2.16.0 :pr:`23794`.
45+
* Upgraded commons-io to version 2.16.1 :pr:`23868`.
46+
* Upgraded commons-lang3 to version 3.14.0 :pr:`23868`.
47+
* Upgraded protobuf-java to version 3.25.5 :pr:`23797`.
48+
* Upgraded protobuf-java-util to version 3.25.5 :pr:`23797`.
49+
50+
Security Changes
51+
________________
52+
* Upgrade Postgres JDBC Driver to 42.6.1 :pr:`23710`.
53+
54+
Hive Connector Changes
55+
______________________
56+
* Fix interpretation of ambiguous timestamps inside array, map, or row types for tables using TEXTFILE format to interpret the timestamps as the earliest possible unixtime for consistency with the rest of Presto.
57+
* Fix timestamps inside array, map, or row types for tables using TEXTFILE format to respect the ``hive.time-zone property``.
58+
59+
Iceberg Connector Changes
60+
_________________________
61+
* Fix time-type columns to return properly when ``iceberg.parquet-batch-read-optimization-enabled`` is set to ``TRUE``. :pr:`23542`.
62+
* Fix to reduce drop time for Iceberg tables with deleted metadata in S3 storage. :pr:`23510`.
63+
* Add Iceberg metadata table $ref :pr:`23503`.
64+
* Add configuration property ``iceberg.rest.auth.oauth2.scope`` for OAUTH2 authentication in Iceberg's REST catalog :pr:`23884`.
65+
* Add iceberg.rest.auth.oauth2.uri configurable property :pr:`23739`.
66+
* Add procedure `rollback_to_timestamp` to rollback an iceberg table to a given point in time. :pr:`23559`.
67+
* Add support of UUID-typed columns :pr:`23627`.
68+
* Add support to query Iceberg table by branch/tag name :pr:`23539`.
69+
* Add table property `metrics_max_inferred_column` to configure the max columns number for which metrics are collected, and support `metrics_max_inferred_column` for Iceberg table with `PARQUET` format :pr:`23468`.
70+
* Support procedure fast_forward for iceberg :pr:`23589`.
71+
* Support timestamp without timezone in time travel expressions :pr:`23714`.
72+
* Support using named arguments in procedure `register_table` and `unregister_table` :pr:`12345`.
73+
74+
MongoDB Connector Changes
75+
_________________________
76+
* Support varbinary data type in MongoDB (pr:`23386`).
77+
78+
Mongodb Connector Changes
79+
_________________________
80+
* Add support for MongoDB ``ALTER TABLE`` statement. :pr:`23266`.
81+
82+
SPI Changes
83+
___________
84+
* Add ``Partitioning``, ``PartitioningScheme``, ``PartitioningHandle``, ``PlanFragmentId``, ``StageExecutionDescriptor`` and ``SimplePlanFragment`` to the SPI . :pr:`23601`.
85+
86+
Elasticsearch Changes
87+
_____________________
88+
* Improve handling of exceptions for empty tables in Elasticsearch :pr:`23850`.
89+
90+
Orc/dwrf Changes
91+
________________
92+
* Fix a data corruption in uncompressed ORC/DWRF files with large values in string/binary columns :pr:`23760`.
93+
94+
Prestissimo (native Execution) Changes
95+
______________________________________
96+
* Add ``native_max_local_exchange_partition_count session`` property. :pr:`23910`.
97+
98+
Presto Iceberg Changes
99+
______________________
100+
* Add test for logical type storage in parquet files :pr:`23388`.
101+
102+
Presto Parquet Changes
103+
______________________
104+
* Fix bug so that proper logical type parameters are now read and written to Parquet files :pr:`23388`.
105+
106+
**Credits**
107+
===========
108+
109+
Abhisek Saikia, Amit Dutta, Anant Aneja, Ananthu-Nair, Andrii Rosa, Bikramjeet Vig, Bryan Cutler, Chen Yang, Christian Zentgraf, David Tolnay, Deepa-George, Deepak Majeti, Denodo Research Labs, Elbin Pallimalil, Elliotte Rusty Harold, Feilong Liu, Ge Gao, Hazmi, Jalpreet Singh Nanda (:imjalpreet), Jayaprakash Sivaprasad, Jialiang Tan, Jimmy Lu, Joe Abraham, Karnati-Naga-Vivek, Ke, Konjac Huang, Krishna Pai, Linsong Wang, Mahadevuni Naveen Kumar, Matt Calder, Naveen Nitturu, Nikhil Collooru, Pramod, Pratik Joseph Dabre, Rebecca Schlussel, Reetika Agrawal, Richard Barnes, Rohan Pal Sidhu, Sam Partington, Serge Druzkin, Sergey Pershin, Steve Burnett, SthuthiGhosh9400, Swapnil Tailor, Timothy Meehan, Xiaoxuan Meng, Yihong Wang, Ying, Zac Blanco, Zac Wen, Zuyu ZHANG, abhibongale, aditi-pandit, ajay-kharat, auden-woolfson, exxiang, jackychen718, jaystarshot, kiersten-stokes, lingbin, lithinpurushothaman, lukmanulhakkeem, misterjpapa, mohsaka, namya28, oyeliseiev-ua, pratyakshsharma, prithvip, wangd

0 commit comments

Comments
 (0)