Skip to content

Commit ffbb6ea

Browse files
committed
Re-arrange sections
1 parent 34f5d73 commit ffbb6ea

File tree

1 file changed

+22
-27
lines changed

1 file changed

+22
-27
lines changed

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

Lines changed: 22 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,25 @@ _______________
4545
* Improve metrics creation by refactoring local variables to a dedicated class. `#24414 <https://github.com/prestodb/presto/pull/24414>`_
4646
* Improve efficiency of coordinator when running a large number of tasks, controlled by ``task.enable-event-loop``. `#24668 <https://github.com/prestodb/presto/pull/24668>`_
4747

48-
48+
Prestissimo (Native Execution) Changes
49+
______________________________________
50+
* Add a native type manager. `#24179 <https://github.com/prestodb/presto/pull/24179>`_
51+
* Add support for Apache Arrow Flight connectors `#24504 <https://github.com/prestodb/presto/pull/24504>`_
52+
* Add Presto native shared arbitrator configuration properties:
53+
* ``shared-arbitrator.global-arbitration-abort-time-ratio``.
54+
* ``shared-arbitrator.global-arbitration-memory-reclaim-pct``.
55+
* ``shared-arbitrator.global-arbitration-without-spill``.
56+
* ``shared-arbitrator.memory-pool-abort-capacity-limit``.
57+
* ``shared-arbitrator.memory-pool-min-reclaim-bytes``.
58+
* ``shared-arbitrator.memory-reclaim-threads-hw-multiplier``.
59+
`#24720 <https://github.com/prestodb/presto/pull/24720>`_
60+
* Add a type parameter for ``ConnectorDeleteTableHandle`` implementations to ``ConnectorProtocolTemplate``, along with support for (de)serialization of connector-specific types. Existing native connector implementations defining ``ConnectorProtocolTemplate`` specializations must update their definitions to supply their specific type or use ``NotImplemented``. `#24721 <https://github.com/prestodb/presto/pull/24721>`_
61+
* Add ``exchange.http-client.request-data-sizes-max-wait-sec`` to native system configs. `#24774 <https://github.com/prestodb/presto/pull/24774>`_
62+
* Add ``spill-enabled``, ``join-spill-enabled``, ``aggregation-spill-enabled``, and ``order-by-spill-enabled`` to native system configs. `#24726 <https://github.com/prestodb/presto/pull/24726>`_
63+
* Add new error code name ``MEMORY_ARBITRATION_FAILURE`` under error code ``INSUFFICIENT_RESOURCE``. `#24773 <https://github.com/prestodb/presto/pull/24773>`_
64+
* Add a native function namespace manager. `#23358 <https://github.com/prestodb/presto/pull/23358>`_
65+
* Add support for ORC reader. `#23037 <https://github.com/prestodb/presto/pull/23037>`_
66+
* Improve ``task.max-drivers-per-task`` by setting the default value to use thread concurrency of the host. `#24642 <https://github.com/prestodb/presto/pull/24642>`_
4967

5068
Security Changes
5169
________________
@@ -69,7 +87,9 @@ ________________
6987
* Remove reload4j dependency in response to `WS-2022-0467 <https://www.mend.io/vulnerability-database/WS-2022-0467>`_. `#24606 <https://github.com/prestodb/presto/pull/24606>`_
7088
* Replace deprecated ``dagre-d3`` with ``dagre-d3-es`` in response to a high severity vulnerability `WS-2022-0322 <https://github.com/opensearch-project/OpenSearch-Dashboards/issues/2482>`_. `#24167 <https://github.com/prestodb/presto/pull/24167>`_
7189

72-
90+
Elasticsearch Connector Changes
91+
_______________________________
92+
* Improve cryptographic protocol in response to `Weak SSL/TLS protocols should not be used <https://sonarqube.ow2.org/coding_rules?open=java%3AS4423&rule_key=java%3AS4423>`_. `#24474 <https://github.com/prestodb/presto/pull/24474>`_
7393

7494
Hive Connector Changes
7595
______________________
@@ -118,31 +138,6 @@ ___________
118138
* Move IndexSourceNode to the SPI. `#24678 <https://github.com/prestodb/presto/pull/24678>`_
119139
* Fix query failures by setting ``REMOTE_BUFFER_CLOSE_FAILED`` as a retriable error. `#24808 <https://github.com/prestodb/presto/pull/24808>`_
120140

121-
122-
Elasticsearch Connector Changes
123-
_______________________________
124-
* Improve cryptographic protocol in response to `Weak SSL/TLS protocols should not be used <https://sonarqube.ow2.org/coding_rules?open=java%3AS4423&rule_key=java%3AS4423>`_. `#24474 <https://github.com/prestodb/presto/pull/24474>`_
125-
126-
Prestissimo (Native Execution) Changes
127-
______________________________________
128-
* Add a native type manager. `#24179 <https://github.com/prestodb/presto/pull/24179>`_
129-
* Add support for Apache Arrow Flight connectors `#24504 <https://github.com/prestodb/presto/pull/24504>`_
130-
* Add Presto native shared arbitrator configuration properties:
131-
* ``shared-arbitrator.global-arbitration-abort-time-ratio``.
132-
* ``shared-arbitrator.global-arbitration-memory-reclaim-pct``.
133-
* ``shared-arbitrator.global-arbitration-without-spill``.
134-
* ``shared-arbitrator.memory-pool-abort-capacity-limit``.
135-
* ``shared-arbitrator.memory-pool-min-reclaim-bytes``.
136-
* ``shared-arbitrator.memory-reclaim-threads-hw-multiplier``.
137-
`#24720 <https://github.com/prestodb/presto/pull/24720>`_
138-
* Add a type parameter for ``ConnectorDeleteTableHandle`` implementations to ``ConnectorProtocolTemplate``, along with support for (de)serialization of connector-specific types. Existing native connector implementations defining ``ConnectorProtocolTemplate`` specializations must update their definitions to supply their specific type or use ``NotImplemented``. `#24721 <https://github.com/prestodb/presto/pull/24721>`_
139-
* Add ``exchange.http-client.request-data-sizes-max-wait-sec`` to native system configs. `#24774 <https://github.com/prestodb/presto/pull/24774>`_
140-
* Add ``spill-enabled``, ``join-spill-enabled``, ``aggregation-spill-enabled``, and ``order-by-spill-enabled`` to native system configs. `#24726 <https://github.com/prestodb/presto/pull/24726>`_
141-
* Add new error code name ``MEMORY_ARBITRATION_FAILURE`` under error code ``INSUFFICIENT_RESOURCE``. `#24773 <https://github.com/prestodb/presto/pull/24773>`_
142-
* Add a native function namespace manager. `#23358 <https://github.com/prestodb/presto/pull/23358>`_
143-
* Add support for ORC reader. `#23037 <https://github.com/prestodb/presto/pull/23037>`_
144-
* Improve ``task.max-drivers-per-task`` by setting the default value to use thread concurrency of the host. `#24642 <https://github.com/prestodb/presto/pull/24642>`_
145-
146141
**Credits**
147142
===========
148143

0 commit comments

Comments
 (0)