rdblue commented on a change in pull request #2986:
URL: https://github.com/apache/iceberg/pull/2986#discussion_r690744460



##########
File path: site/docs/releases.md
##########
@@ -64,28 +64,36 @@ High-level features:
 
 * **Core**
   * Allow Iceberg schemas to specify one or more columns as row identifers 
[[\#2465](https://github.com/apache/iceberg/pull/2465)]. Note that this is a 
prerequisite for supporting upserts in Flink.
-  * Added JDBC [[\#1870](https://github.com/apache/iceberg/pull/1870)] and 
DynamoDB [[\#2688](https://github.com/apache/iceberg/pull/2688)] Iceberg 
catalog implementations.
+  * Added JDBC [[\#1870](https://github.com/apache/iceberg/pull/1870)] and 
DynamoDB [[\#2688](https://github.com/apache/iceberg/pull/2688)] catalog 
implementations.
   * Added predicate pushdown for partitions and files metadata tables 
[[\#2358](https://github.com/apache/iceberg/pull/2358), 
[\#2926](https://github.com/apache/iceberg/pull/2926)].
   * Added a new, more flexible compaction action for Spark that can support 
different strategies such as bin packing and sorting. 
[[\#2501](https://github.com/apache/iceberg/pull/2501), 
[\#2609](https://github.com/apache/iceberg/pull/2609)].
   * Added the ability to upgrade to v2 or create a v2 table using the table 
property format-version=2  
[[\#2887](https://github.com/apache/iceberg/pull/2887)].

Review comment:
       Yeah, that's another one I flagged. The original commit is #2328 where 
we introduced a new exception to signal that commit state was uncertain and 
status checks. There were a few follow-ups to that as well, including this one 
that adds configuration for the checks, and support for the exception in Glue 
(#2402) and Nessie (#2515).
   
   I think this deserves a high-level callout because it is a big fix that a 
lot of people are waiting on. I think Shopify was waiting for it, for example.

##########
File path: site/docs/releases.md
##########
@@ -64,28 +64,36 @@ High-level features:
 
 * **Core**
   * Allow Iceberg schemas to specify one or more columns as row identifers 
[[\#2465](https://github.com/apache/iceberg/pull/2465)]. Note that this is a 
prerequisite for supporting upserts in Flink.
-  * Added JDBC [[\#1870](https://github.com/apache/iceberg/pull/1870)] and 
DynamoDB [[\#2688](https://github.com/apache/iceberg/pull/2688)] Iceberg 
catalog implementations.
+  * Added JDBC [[\#1870](https://github.com/apache/iceberg/pull/1870)] and 
DynamoDB [[\#2688](https://github.com/apache/iceberg/pull/2688)] catalog 
implementations.
   * Added predicate pushdown for partitions and files metadata tables 
[[\#2358](https://github.com/apache/iceberg/pull/2358), 
[\#2926](https://github.com/apache/iceberg/pull/2926)].
   * Added a new, more flexible compaction action for Spark that can support 
different strategies such as bin packing and sorting. 
[[\#2501](https://github.com/apache/iceberg/pull/2501), 
[\#2609](https://github.com/apache/iceberg/pull/2609)].
   * Added the ability to upgrade to v2 or create a v2 table using the table 
property format-version=2  
[[\#2887](https://github.com/apache/iceberg/pull/2887)].

Review comment:
       I'm not sure I'd include #2929 since that was extending an internal 
class for another use rather than fixing a user-facing problem. Up to you 
though.

##########
File path: site/docs/releases.md
##########
@@ -64,28 +64,36 @@ High-level features:
 
 * **Core**
   * Allow Iceberg schemas to specify one or more columns as row identifers 
[[\#2465](https://github.com/apache/iceberg/pull/2465)]. Note that this is a 
prerequisite for supporting upserts in Flink.
-  * Added JDBC [[\#1870](https://github.com/apache/iceberg/pull/1870)] and 
DynamoDB [[\#2688](https://github.com/apache/iceberg/pull/2688)] Iceberg 
catalog implementations.
+  * Added JDBC [[\#1870](https://github.com/apache/iceberg/pull/1870)] and 
DynamoDB [[\#2688](https://github.com/apache/iceberg/pull/2688)] catalog 
implementations.
   * Added predicate pushdown for partitions and files metadata tables 
[[\#2358](https://github.com/apache/iceberg/pull/2358), 
[\#2926](https://github.com/apache/iceberg/pull/2926)].
   * Added a new, more flexible compaction action for Spark that can support 
different strategies such as bin packing and sorting. 
[[\#2501](https://github.com/apache/iceberg/pull/2501), 
[\#2609](https://github.com/apache/iceberg/pull/2609)].
   * Added the ability to upgrade to v2 or create a v2 table using the table 
property format-version=2  
[[\#2887](https://github.com/apache/iceberg/pull/2887)].
+* **Flink**
+  * Added support for SQL primary keys 
[[\#2410](https://github.com/apache/iceberg/pull/2410)].
+* **Hive**
+  * Added the ability to set the catalog at the table level in the Hive 
Metastore. This makes it possible to write queries that reference tables from 
multiple catalogs [[\#2129](https://github.com/apache/iceberg/pull/2129)].
+  * Deprecated the configuration property `iceberg.mr.catalog` which was 
previously used to configure the Iceberg catalog in MapReduce and Hive 
[[\#2565](https://github.com/apache/iceberg/pull/2565)].
+  * Enabled dropping HMS tables despite metadata problems 
[[\#2583](https://github.com/apache/iceberg/pull/2583)].
+  * Added table-level JVM lock on 
commits[[\#2547](https://github.com/apache/iceberg/pull/2547)].
+  * Use Hive's vectorized ORC reader 
[[\#2613](https://github.com/apache/iceberg/pull/2613)].
 * **Spark**
-  * [[\#2560](https://github.com/apache/iceberg/pull/2560)] added extensions 
DDL to set identifier fields.
-  * [[\#2365](https://github.com/apache/iceberg/pull/2365)] added support for 
`ALTER TABLE table CHANGE PARTITION FIELD transform TO transform` DDL.
-  * [[\#2660](https://github.com/apache/iceberg/pull/2660)] added support for 
micro-batch streaming reads for structured streaming in Spark3.
-  * [[\#2777](https://github.com/apache/iceberg/pull/2777)] improves the 
performance of importing a Hive table by not loading all partitions from Hive 
and instead pushing the partition filter to the Metastore.
-  * [[\#2193](https://github.com/apache/iceberg/pull/2193), 
[\#2206](https://github.com/apache/iceberg/pull/2206)] added support for UPDATE 
statements in Spark.
-* **Flink** now support SQL primary keys 
[[\#2410](https://github.com/apache/iceberg/pull/2410)].
+  * Added extensions DDL to set identifier fields 
[[\#2560](https://github.com/apache/iceberg/pull/2560)].
+  * Added support for `ALTER TABLE REPLACE PARTITION FIELD` DDL 
[[\#2365](https://github.com/apache/iceberg/pull/2365)].
+  * Added support for micro-batch streaming reads for structured streaming in 
Spark3 [[\#2660](https://github.com/apache/iceberg/pull/2660)].
+  * Improved the performance of importing a Hive table by not loading all 
partitions from Hive and instead pushing the partition filter to the Metastore 
[[\#2777](https://github.com/apache/iceberg/pull/2777)].
+  * Added support for UPDATE statements in Spark 
[[\#2193](https://github.com/apache/iceberg/pull/2193), 
[\#2206](https://github.com/apache/iceberg/pull/2206)].
+
 
 Important bug fixes:
 
 * **Core**
-  * [\#2849](https://github.com/apache/iceberg/pull/2849) fixes string 
bucketing with non-BMP characters
-  * [\#2551](https://github.com/apache/iceberg/pull/2551) fixes Parquet 
dictionary filter not handling fixed length byte arrays.
-  * [\#2550](https://github.com/apache/iceberg/pull/2550) fixes a problem with 
the configuration of HiveCatalog.
+  * Fixed string bucketing with non-BMP characters 
[[\#2849](https://github.com/apache/iceberg/pull/2849)].
+  * Fixed Parquet dictionary filter not handling fixed length byte arrays 
[[\#2551](https://github.com/apache/iceberg/pull/2551)].
+  * Fixed a problem with the configuration of HiveCatalog 
[[\#2550](https://github.com/apache/iceberg/pull/2550)].
 * **Spark**
-  * [\#2584](https://github.com/apache/iceberg/pull/2584) fixes MERGE INTO in 
Spark when used with SinglePartition partitioning.
-  * [\#2877](https://github.com/apache/iceberg/pull/2877) fixes nested struct 
pruning in Spark
-  * [\#2757](https://github.com/apache/iceberg/pull/2757) fixes Timestamp 
without Timezone type support in Spark
+  * Fixed `MERGE INTO` in Spark when used with SinglePartition partitioning 
[[\#2584](https://github.com/apache/iceberg/pull/2584)].
+  * Fixed nested struct pruning in Spar 
[[\#2877](https://github.com/apache/iceberg/pull/2877)].
+  * Fixed Timestamp without Timezone type support in Spark 
[[\#2757](https://github.com/apache/iceberg/pull/2757)].

Review comment:
       Isn't this a new feature? I would list it in improvements, not bug fixes.

##########
File path: site/docs/releases.md
##########
@@ -64,28 +64,36 @@ High-level features:
 
 * **Core**
   * Allow Iceberg schemas to specify one or more columns as row identifers 
[[\#2465](https://github.com/apache/iceberg/pull/2465)]. Note that this is a 
prerequisite for supporting upserts in Flink.
-  * Added JDBC [[\#1870](https://github.com/apache/iceberg/pull/1870)] and 
DynamoDB [[\#2688](https://github.com/apache/iceberg/pull/2688)] Iceberg 
catalog implementations.
+  * Added JDBC [[\#1870](https://github.com/apache/iceberg/pull/1870)] and 
DynamoDB [[\#2688](https://github.com/apache/iceberg/pull/2688)] catalog 
implementations.
   * Added predicate pushdown for partitions and files metadata tables 
[[\#2358](https://github.com/apache/iceberg/pull/2358), 
[\#2926](https://github.com/apache/iceberg/pull/2926)].
   * Added a new, more flexible compaction action for Spark that can support 
different strategies such as bin packing and sorting. 
[[\#2501](https://github.com/apache/iceberg/pull/2501), 
[\#2609](https://github.com/apache/iceberg/pull/2609)].
   * Added the ability to upgrade to v2 or create a v2 table using the table 
property format-version=2  
[[\#2887](https://github.com/apache/iceberg/pull/2887)].
+* **Flink**
+  * Added support for SQL primary keys 
[[\#2410](https://github.com/apache/iceberg/pull/2410)].
+* **Hive**
+  * Added the ability to set the catalog at the table level in the Hive 
Metastore. This makes it possible to write queries that reference tables from 
multiple catalogs [[\#2129](https://github.com/apache/iceberg/pull/2129)].
+  * Deprecated the configuration property `iceberg.mr.catalog` which was 
previously used to configure the Iceberg catalog in MapReduce and Hive 
[[\#2565](https://github.com/apache/iceberg/pull/2565)].
+  * Enabled dropping HMS tables despite metadata problems 
[[\#2583](https://github.com/apache/iceberg/pull/2583)].
+  * Added table-level JVM lock on 
commits[[\#2547](https://github.com/apache/iceberg/pull/2547)].
+  * Use Hive's vectorized ORC reader 
[[\#2613](https://github.com/apache/iceberg/pull/2613)].
 * **Spark**
-  * [[\#2560](https://github.com/apache/iceberg/pull/2560)] added extensions 
DDL to set identifier fields.
-  * [[\#2365](https://github.com/apache/iceberg/pull/2365)] added support for 
`ALTER TABLE table CHANGE PARTITION FIELD transform TO transform` DDL.
-  * [[\#2660](https://github.com/apache/iceberg/pull/2660)] added support for 
micro-batch streaming reads for structured streaming in Spark3.
-  * [[\#2777](https://github.com/apache/iceberg/pull/2777)] improves the 
performance of importing a Hive table by not loading all partitions from Hive 
and instead pushing the partition filter to the Metastore.
-  * [[\#2193](https://github.com/apache/iceberg/pull/2193), 
[\#2206](https://github.com/apache/iceberg/pull/2206)] added support for UPDATE 
statements in Spark.
-* **Flink** now support SQL primary keys 
[[\#2410](https://github.com/apache/iceberg/pull/2410)].
+  * Added extensions DDL to set identifier fields 
[[\#2560](https://github.com/apache/iceberg/pull/2560)].
+  * Added support for `ALTER TABLE REPLACE PARTITION FIELD` DDL 
[[\#2365](https://github.com/apache/iceberg/pull/2365)].
+  * Added support for micro-batch streaming reads for structured streaming in 
Spark3 [[\#2660](https://github.com/apache/iceberg/pull/2660)].
+  * Improved the performance of importing a Hive table by not loading all 
partitions from Hive and instead pushing the partition filter to the Metastore 
[[\#2777](https://github.com/apache/iceberg/pull/2777)].
+  * Added support for UPDATE statements in Spark 
[[\#2193](https://github.com/apache/iceberg/pull/2193), 
[\#2206](https://github.com/apache/iceberg/pull/2206)].
+
 
 Important bug fixes:
 
 * **Core**
-  * [\#2849](https://github.com/apache/iceberg/pull/2849) fixes string 
bucketing with non-BMP characters
-  * [\#2551](https://github.com/apache/iceberg/pull/2551) fixes Parquet 
dictionary filter not handling fixed length byte arrays.
-  * [\#2550](https://github.com/apache/iceberg/pull/2550) fixes a problem with 
the configuration of HiveCatalog.
+  * Fixed string bucketing with non-BMP characters 
[[\#2849](https://github.com/apache/iceberg/pull/2849)].
+  * Fixed Parquet dictionary filter not handling fixed length byte arrays 
[[\#2551](https://github.com/apache/iceberg/pull/2551)].
+  * Fixed a problem with the configuration of HiveCatalog 
[[\#2550](https://github.com/apache/iceberg/pull/2550)].

Review comment:
       I don't think this is notable. This just passes defaults.

##########
File path: site/docs/releases.md
##########
@@ -64,28 +64,36 @@ High-level features:
 
 * **Core**
   * Allow Iceberg schemas to specify one or more columns as row identifers 
[[\#2465](https://github.com/apache/iceberg/pull/2465)]. Note that this is a 
prerequisite for supporting upserts in Flink.
-  * Added JDBC [[\#1870](https://github.com/apache/iceberg/pull/1870)] and 
DynamoDB [[\#2688](https://github.com/apache/iceberg/pull/2688)] Iceberg 
catalog implementations.
+  * Added JDBC [[\#1870](https://github.com/apache/iceberg/pull/1870)] and 
DynamoDB [[\#2688](https://github.com/apache/iceberg/pull/2688)] catalog 
implementations.
   * Added predicate pushdown for partitions and files metadata tables 
[[\#2358](https://github.com/apache/iceberg/pull/2358), 
[\#2926](https://github.com/apache/iceberg/pull/2926)].
   * Added a new, more flexible compaction action for Spark that can support 
different strategies such as bin packing and sorting. 
[[\#2501](https://github.com/apache/iceberg/pull/2501), 
[\#2609](https://github.com/apache/iceberg/pull/2609)].
   * Added the ability to upgrade to v2 or create a v2 table using the table 
property format-version=2  
[[\#2887](https://github.com/apache/iceberg/pull/2887)].
+* **Flink**
+  * Added support for SQL primary keys 
[[\#2410](https://github.com/apache/iceberg/pull/2410)].
+* **Hive**
+  * Added the ability to set the catalog at the table level in the Hive 
Metastore. This makes it possible to write queries that reference tables from 
multiple catalogs [[\#2129](https://github.com/apache/iceberg/pull/2129)].
+  * Deprecated the configuration property `iceberg.mr.catalog` which was 
previously used to configure the Iceberg catalog in MapReduce and Hive 
[[\#2565](https://github.com/apache/iceberg/pull/2565)].
+  * Enabled dropping HMS tables despite metadata problems 
[[\#2583](https://github.com/apache/iceberg/pull/2583)].
+  * Added table-level JVM lock on 
commits[[\#2547](https://github.com/apache/iceberg/pull/2547)].
+  * Use Hive's vectorized ORC reader 
[[\#2613](https://github.com/apache/iceberg/pull/2613)].
 * **Spark**
-  * [[\#2560](https://github.com/apache/iceberg/pull/2560)] added extensions 
DDL to set identifier fields.
-  * [[\#2365](https://github.com/apache/iceberg/pull/2365)] added support for 
`ALTER TABLE table CHANGE PARTITION FIELD transform TO transform` DDL.
-  * [[\#2660](https://github.com/apache/iceberg/pull/2660)] added support for 
micro-batch streaming reads for structured streaming in Spark3.
-  * [[\#2777](https://github.com/apache/iceberg/pull/2777)] improves the 
performance of importing a Hive table by not loading all partitions from Hive 
and instead pushing the partition filter to the Metastore.
-  * [[\#2193](https://github.com/apache/iceberg/pull/2193), 
[\#2206](https://github.com/apache/iceberg/pull/2206)] added support for UPDATE 
statements in Spark.
-* **Flink** now support SQL primary keys 
[[\#2410](https://github.com/apache/iceberg/pull/2410)].
+  * Added extensions DDL to set identifier fields 
[[\#2560](https://github.com/apache/iceberg/pull/2560)].
+  * Added support for `ALTER TABLE REPLACE PARTITION FIELD` DDL 
[[\#2365](https://github.com/apache/iceberg/pull/2365)].
+  * Added support for micro-batch streaming reads for structured streaming in 
Spark3 [[\#2660](https://github.com/apache/iceberg/pull/2660)].
+  * Improved the performance of importing a Hive table by not loading all 
partitions from Hive and instead pushing the partition filter to the Metastore 
[[\#2777](https://github.com/apache/iceberg/pull/2777)].
+  * Added support for UPDATE statements in Spark 
[[\#2193](https://github.com/apache/iceberg/pull/2193), 
[\#2206](https://github.com/apache/iceberg/pull/2206)].
+
 
 Important bug fixes:
 
 * **Core**
-  * [\#2849](https://github.com/apache/iceberg/pull/2849) fixes string 
bucketing with non-BMP characters
-  * [\#2551](https://github.com/apache/iceberg/pull/2551) fixes Parquet 
dictionary filter not handling fixed length byte arrays.
-  * [\#2550](https://github.com/apache/iceberg/pull/2550) fixes a problem with 
the configuration of HiveCatalog.
+  * Fixed string bucketing with non-BMP characters 
[[\#2849](https://github.com/apache/iceberg/pull/2849)].
+  * Fixed Parquet dictionary filter not handling fixed length byte arrays 
[[\#2551](https://github.com/apache/iceberg/pull/2551)].

Review comment:
       I think a better description would be "Fixed Parquet dictionary 
filtering with fixed-length byte arrays and decimals".

##########
File path: site/docs/releases.md
##########
@@ -64,28 +64,36 @@ High-level features:
 
 * **Core**
   * Allow Iceberg schemas to specify one or more columns as row identifers 
[[\#2465](https://github.com/apache/iceberg/pull/2465)]. Note that this is a 
prerequisite for supporting upserts in Flink.
-  * Added JDBC [[\#1870](https://github.com/apache/iceberg/pull/1870)] and 
DynamoDB [[\#2688](https://github.com/apache/iceberg/pull/2688)] Iceberg 
catalog implementations.
+  * Added JDBC [[\#1870](https://github.com/apache/iceberg/pull/1870)] and 
DynamoDB [[\#2688](https://github.com/apache/iceberg/pull/2688)] catalog 
implementations.
   * Added predicate pushdown for partitions and files metadata tables 
[[\#2358](https://github.com/apache/iceberg/pull/2358), 
[\#2926](https://github.com/apache/iceberg/pull/2926)].
   * Added a new, more flexible compaction action for Spark that can support 
different strategies such as bin packing and sorting. 
[[\#2501](https://github.com/apache/iceberg/pull/2501), 
[\#2609](https://github.com/apache/iceberg/pull/2609)].
   * Added the ability to upgrade to v2 or create a v2 table using the table 
property format-version=2  
[[\#2887](https://github.com/apache/iceberg/pull/2887)].
+* **Flink**
+  * Added support for SQL primary keys 
[[\#2410](https://github.com/apache/iceberg/pull/2410)].
+* **Hive**
+  * Added the ability to set the catalog at the table level in the Hive 
Metastore. This makes it possible to write queries that reference tables from 
multiple catalogs [[\#2129](https://github.com/apache/iceberg/pull/2129)].
+  * Deprecated the configuration property `iceberg.mr.catalog` which was 
previously used to configure the Iceberg catalog in MapReduce and Hive 
[[\#2565](https://github.com/apache/iceberg/pull/2565)].
+  * Enabled dropping HMS tables despite metadata problems 
[[\#2583](https://github.com/apache/iceberg/pull/2583)].
+  * Added table-level JVM lock on 
commits[[\#2547](https://github.com/apache/iceberg/pull/2547)].
+  * Use Hive's vectorized ORC reader 
[[\#2613](https://github.com/apache/iceberg/pull/2613)].

Review comment:
       "Added support for"?

##########
File path: site/docs/releases.md
##########
@@ -64,28 +64,36 @@ High-level features:
 
 * **Core**
   * Allow Iceberg schemas to specify one or more columns as row identifers 
[[\#2465](https://github.com/apache/iceberg/pull/2465)]. Note that this is a 
prerequisite for supporting upserts in Flink.
-  * Added JDBC [[\#1870](https://github.com/apache/iceberg/pull/1870)] and 
DynamoDB [[\#2688](https://github.com/apache/iceberg/pull/2688)] Iceberg 
catalog implementations.
+  * Added JDBC [[\#1870](https://github.com/apache/iceberg/pull/1870)] and 
DynamoDB [[\#2688](https://github.com/apache/iceberg/pull/2688)] catalog 
implementations.
   * Added predicate pushdown for partitions and files metadata tables 
[[\#2358](https://github.com/apache/iceberg/pull/2358), 
[\#2926](https://github.com/apache/iceberg/pull/2926)].
   * Added a new, more flexible compaction action for Spark that can support 
different strategies such as bin packing and sorting. 
[[\#2501](https://github.com/apache/iceberg/pull/2501), 
[\#2609](https://github.com/apache/iceberg/pull/2609)].
   * Added the ability to upgrade to v2 or create a v2 table using the table 
property format-version=2  
[[\#2887](https://github.com/apache/iceberg/pull/2887)].
+* **Flink**
+  * Added support for SQL primary keys 
[[\#2410](https://github.com/apache/iceberg/pull/2410)].
+* **Hive**
+  * Added the ability to set the catalog at the table level in the Hive 
Metastore. This makes it possible to write queries that reference tables from 
multiple catalogs [[\#2129](https://github.com/apache/iceberg/pull/2129)].
+  * Deprecated the configuration property `iceberg.mr.catalog` which was 
previously used to configure the Iceberg catalog in MapReduce and Hive 
[[\#2565](https://github.com/apache/iceberg/pull/2565)].
+  * Enabled dropping HMS tables despite metadata problems 
[[\#2583](https://github.com/apache/iceberg/pull/2583)].
+  * Added table-level JVM lock on 
commits[[\#2547](https://github.com/apache/iceberg/pull/2547)].

Review comment:
       This is a bug fix so it should probably go in bugs. If possible, can you 
mention cases where one may have hit this issue?

##########
File path: site/docs/releases.md
##########
@@ -64,28 +64,36 @@ High-level features:
 
 * **Core**
   * Allow Iceberg schemas to specify one or more columns as row identifers 
[[\#2465](https://github.com/apache/iceberg/pull/2465)]. Note that this is a 
prerequisite for supporting upserts in Flink.
-  * Added JDBC [[\#1870](https://github.com/apache/iceberg/pull/1870)] and 
DynamoDB [[\#2688](https://github.com/apache/iceberg/pull/2688)] Iceberg 
catalog implementations.
+  * Added JDBC [[\#1870](https://github.com/apache/iceberg/pull/1870)] and 
DynamoDB [[\#2688](https://github.com/apache/iceberg/pull/2688)] catalog 
implementations.
   * Added predicate pushdown for partitions and files metadata tables 
[[\#2358](https://github.com/apache/iceberg/pull/2358), 
[\#2926](https://github.com/apache/iceberg/pull/2926)].
   * Added a new, more flexible compaction action for Spark that can support 
different strategies such as bin packing and sorting. 
[[\#2501](https://github.com/apache/iceberg/pull/2501), 
[\#2609](https://github.com/apache/iceberg/pull/2609)].
   * Added the ability to upgrade to v2 or create a v2 table using the table 
property format-version=2  
[[\#2887](https://github.com/apache/iceberg/pull/2887)].
+* **Flink**
+  * Added support for SQL primary keys 
[[\#2410](https://github.com/apache/iceberg/pull/2410)].
+* **Hive**
+  * Added the ability to set the catalog at the table level in the Hive 
Metastore. This makes it possible to write queries that reference tables from 
multiple catalogs [[\#2129](https://github.com/apache/iceberg/pull/2129)].
+  * Deprecated the configuration property `iceberg.mr.catalog` which was 
previously used to configure the Iceberg catalog in MapReduce and Hive 
[[\#2565](https://github.com/apache/iceberg/pull/2565)].

Review comment:
       May want to mention that this is a result of the above configuration 
change.

##########
File path: site/docs/releases.md
##########
@@ -64,28 +64,36 @@ High-level features:
 
 * **Core**
   * Allow Iceberg schemas to specify one or more columns as row identifers 
[[\#2465](https://github.com/apache/iceberg/pull/2465)]. Note that this is a 
prerequisite for supporting upserts in Flink.
-  * Added JDBC [[\#1870](https://github.com/apache/iceberg/pull/1870)] and 
DynamoDB [[\#2688](https://github.com/apache/iceberg/pull/2688)] Iceberg 
catalog implementations.
+  * Added JDBC [[\#1870](https://github.com/apache/iceberg/pull/1870)] and 
DynamoDB [[\#2688](https://github.com/apache/iceberg/pull/2688)] catalog 
implementations.
   * Added predicate pushdown for partitions and files metadata tables 
[[\#2358](https://github.com/apache/iceberg/pull/2358), 
[\#2926](https://github.com/apache/iceberg/pull/2926)].
   * Added a new, more flexible compaction action for Spark that can support 
different strategies such as bin packing and sorting. 
[[\#2501](https://github.com/apache/iceberg/pull/2501), 
[\#2609](https://github.com/apache/iceberg/pull/2609)].

Review comment:
       Isn't this a Spark-specific change?

##########
File path: site/docs/releases.md
##########
@@ -64,28 +64,36 @@ High-level features:
 
 * **Core**
   * Allow Iceberg schemas to specify one or more columns as row identifers 
[[\#2465](https://github.com/apache/iceberg/pull/2465)]. Note that this is a 
prerequisite for supporting upserts in Flink.
-  * Added JDBC [[\#1870](https://github.com/apache/iceberg/pull/1870)] and 
DynamoDB [[\#2688](https://github.com/apache/iceberg/pull/2688)] Iceberg 
catalog implementations.
+  * Added JDBC [[\#1870](https://github.com/apache/iceberg/pull/1870)] and 
DynamoDB [[\#2688](https://github.com/apache/iceberg/pull/2688)] catalog 
implementations.
   * Added predicate pushdown for partitions and files metadata tables 
[[\#2358](https://github.com/apache/iceberg/pull/2358), 
[\#2926](https://github.com/apache/iceberg/pull/2926)].
   * Added a new, more flexible compaction action for Spark that can support 
different strategies such as bin packing and sorting. 
[[\#2501](https://github.com/apache/iceberg/pull/2501), 
[\#2609](https://github.com/apache/iceberg/pull/2609)].
   * Added the ability to upgrade to v2 or create a v2 table using the table 
property format-version=2  
[[\#2887](https://github.com/apache/iceberg/pull/2887)].
+* **Flink**
+  * Added support for SQL primary keys 
[[\#2410](https://github.com/apache/iceberg/pull/2410)].
+* **Hive**
+  * Added the ability to set the catalog at the table level in the Hive 
Metastore. This makes it possible to write queries that reference tables from 
multiple catalogs [[\#2129](https://github.com/apache/iceberg/pull/2129)].
+  * Deprecated the configuration property `iceberg.mr.catalog` which was 
previously used to configure the Iceberg catalog in MapReduce and Hive 
[[\#2565](https://github.com/apache/iceberg/pull/2565)].
+  * Enabled dropping HMS tables despite metadata problems 
[[\#2583](https://github.com/apache/iceberg/pull/2583)].
+  * Added table-level JVM lock on 
commits[[\#2547](https://github.com/apache/iceberg/pull/2547)].
+  * Use Hive's vectorized ORC reader 
[[\#2613](https://github.com/apache/iceberg/pull/2613)].
 * **Spark**
-  * [[\#2560](https://github.com/apache/iceberg/pull/2560)] added extensions 
DDL to set identifier fields.
-  * [[\#2365](https://github.com/apache/iceberg/pull/2365)] added support for 
`ALTER TABLE table CHANGE PARTITION FIELD transform TO transform` DDL.
-  * [[\#2660](https://github.com/apache/iceberg/pull/2660)] added support for 
micro-batch streaming reads for structured streaming in Spark3.
-  * [[\#2777](https://github.com/apache/iceberg/pull/2777)] improves the 
performance of importing a Hive table by not loading all partitions from Hive 
and instead pushing the partition filter to the Metastore.
-  * [[\#2193](https://github.com/apache/iceberg/pull/2193), 
[\#2206](https://github.com/apache/iceberg/pull/2206)] added support for UPDATE 
statements in Spark.
-* **Flink** now support SQL primary keys 
[[\#2410](https://github.com/apache/iceberg/pull/2410)].
+  * Added extensions DDL to set identifier fields 
[[\#2560](https://github.com/apache/iceberg/pull/2560)].

Review comment:
       I think it would be better to replace "Added extensions DDL" with "Added 
SET and DROP IDENTIFIER FIELDS to ALTER TABLE"

##########
File path: site/docs/releases.md
##########
@@ -64,28 +64,36 @@ High-level features:
 
 * **Core**
   * Allow Iceberg schemas to specify one or more columns as row identifers 
[[\#2465](https://github.com/apache/iceberg/pull/2465)]. Note that this is a 
prerequisite for supporting upserts in Flink.
-  * Added JDBC [[\#1870](https://github.com/apache/iceberg/pull/1870)] and 
DynamoDB [[\#2688](https://github.com/apache/iceberg/pull/2688)] Iceberg 
catalog implementations.
+  * Added JDBC [[\#1870](https://github.com/apache/iceberg/pull/1870)] and 
DynamoDB [[\#2688](https://github.com/apache/iceberg/pull/2688)] catalog 
implementations.
   * Added predicate pushdown for partitions and files metadata tables 
[[\#2358](https://github.com/apache/iceberg/pull/2358), 
[\#2926](https://github.com/apache/iceberg/pull/2926)].
   * Added a new, more flexible compaction action for Spark that can support 
different strategies such as bin packing and sorting. 
[[\#2501](https://github.com/apache/iceberg/pull/2501), 
[\#2609](https://github.com/apache/iceberg/pull/2609)].
   * Added the ability to upgrade to v2 or create a v2 table using the table 
property format-version=2  
[[\#2887](https://github.com/apache/iceberg/pull/2887)].
+* **Flink**
+  * Added support for SQL primary keys 
[[\#2410](https://github.com/apache/iceberg/pull/2410)].
+* **Hive**
+  * Added the ability to set the catalog at the table level in the Hive 
Metastore. This makes it possible to write queries that reference tables from 
multiple catalogs [[\#2129](https://github.com/apache/iceberg/pull/2129)].
+  * Deprecated the configuration property `iceberg.mr.catalog` which was 
previously used to configure the Iceberg catalog in MapReduce and Hive 
[[\#2565](https://github.com/apache/iceberg/pull/2565)].
+  * Enabled dropping HMS tables despite metadata problems 
[[\#2583](https://github.com/apache/iceberg/pull/2583)].
+  * Added table-level JVM lock on 
commits[[\#2547](https://github.com/apache/iceberg/pull/2547)].
+  * Use Hive's vectorized ORC reader 
[[\#2613](https://github.com/apache/iceberg/pull/2613)].
 * **Spark**
-  * [[\#2560](https://github.com/apache/iceberg/pull/2560)] added extensions 
DDL to set identifier fields.
-  * [[\#2365](https://github.com/apache/iceberg/pull/2365)] added support for 
`ALTER TABLE table CHANGE PARTITION FIELD transform TO transform` DDL.
-  * [[\#2660](https://github.com/apache/iceberg/pull/2660)] added support for 
micro-batch streaming reads for structured streaming in Spark3.
-  * [[\#2777](https://github.com/apache/iceberg/pull/2777)] improves the 
performance of importing a Hive table by not loading all partitions from Hive 
and instead pushing the partition filter to the Metastore.
-  * [[\#2193](https://github.com/apache/iceberg/pull/2193), 
[\#2206](https://github.com/apache/iceberg/pull/2206)] added support for UPDATE 
statements in Spark.
-* **Flink** now support SQL primary keys 
[[\#2410](https://github.com/apache/iceberg/pull/2410)].
+  * Added extensions DDL to set identifier fields 
[[\#2560](https://github.com/apache/iceberg/pull/2560)].

Review comment:
       I think it would be better to replace "Added extensions DDL ..." with 
"Added SET and DROP IDENTIFIER FIELDS to ALTER TABLE" so people don't have to 
look up the DDL.

##########
File path: site/docs/releases.md
##########
@@ -64,28 +64,36 @@ High-level features:
 
 * **Core**
   * Allow Iceberg schemas to specify one or more columns as row identifers 
[[\#2465](https://github.com/apache/iceberg/pull/2465)]. Note that this is a 
prerequisite for supporting upserts in Flink.
-  * Added JDBC [[\#1870](https://github.com/apache/iceberg/pull/1870)] and 
DynamoDB [[\#2688](https://github.com/apache/iceberg/pull/2688)] Iceberg 
catalog implementations.
+  * Added JDBC [[\#1870](https://github.com/apache/iceberg/pull/1870)] and 
DynamoDB [[\#2688](https://github.com/apache/iceberg/pull/2688)] catalog 
implementations.
   * Added predicate pushdown for partitions and files metadata tables 
[[\#2358](https://github.com/apache/iceberg/pull/2358), 
[\#2926](https://github.com/apache/iceberg/pull/2926)].
   * Added a new, more flexible compaction action for Spark that can support 
different strategies such as bin packing and sorting. 
[[\#2501](https://github.com/apache/iceberg/pull/2501), 
[\#2609](https://github.com/apache/iceberg/pull/2609)].
   * Added the ability to upgrade to v2 or create a v2 table using the table 
property format-version=2  
[[\#2887](https://github.com/apache/iceberg/pull/2887)].
+* **Flink**
+  * Added support for SQL primary keys 
[[\#2410](https://github.com/apache/iceberg/pull/2410)].
+* **Hive**
+  * Added the ability to set the catalog at the table level in the Hive 
Metastore. This makes it possible to write queries that reference tables from 
multiple catalogs [[\#2129](https://github.com/apache/iceberg/pull/2129)].
+  * Deprecated the configuration property `iceberg.mr.catalog` which was 
previously used to configure the Iceberg catalog in MapReduce and Hive 
[[\#2565](https://github.com/apache/iceberg/pull/2565)].
+  * Enabled dropping HMS tables despite metadata problems 
[[\#2583](https://github.com/apache/iceberg/pull/2583)].
+  * Added table-level JVM lock on 
commits[[\#2547](https://github.com/apache/iceberg/pull/2547)].
+  * Use Hive's vectorized ORC reader 
[[\#2613](https://github.com/apache/iceberg/pull/2613)].
 * **Spark**
-  * [[\#2560](https://github.com/apache/iceberg/pull/2560)] added extensions 
DDL to set identifier fields.
-  * [[\#2365](https://github.com/apache/iceberg/pull/2365)] added support for 
`ALTER TABLE table CHANGE PARTITION FIELD transform TO transform` DDL.
-  * [[\#2660](https://github.com/apache/iceberg/pull/2660)] added support for 
micro-batch streaming reads for structured streaming in Spark3.
-  * [[\#2777](https://github.com/apache/iceberg/pull/2777)] improves the 
performance of importing a Hive table by not loading all partitions from Hive 
and instead pushing the partition filter to the Metastore.
-  * [[\#2193](https://github.com/apache/iceberg/pull/2193), 
[\#2206](https://github.com/apache/iceberg/pull/2206)] added support for UPDATE 
statements in Spark.
-* **Flink** now support SQL primary keys 
[[\#2410](https://github.com/apache/iceberg/pull/2410)].
+  * Added extensions DDL to set identifier fields 
[[\#2560](https://github.com/apache/iceberg/pull/2560)].
+  * Added support for `ALTER TABLE REPLACE PARTITION FIELD` DDL 
[[\#2365](https://github.com/apache/iceberg/pull/2365)].
+  * Added support for micro-batch streaming reads for structured streaming in 
Spark3 [[\#2660](https://github.com/apache/iceberg/pull/2660)].
+  * Improved the performance of importing a Hive table by not loading all 
partitions from Hive and instead pushing the partition filter to the Metastore 
[[\#2777](https://github.com/apache/iceberg/pull/2777)].
+  * Added support for UPDATE statements in Spark 
[[\#2193](https://github.com/apache/iceberg/pull/2193), 
[\#2206](https://github.com/apache/iceberg/pull/2206)].
+
 
 Important bug fixes:
 
 * **Core**

Review comment:
       In addition, #2308 was fixed by #2865. This added a validation that 
files referenced by row-level deletes are not concurrently rewritten.

##########
File path: site/docs/releases.md
##########
@@ -64,28 +64,36 @@ High-level features:
 
 * **Core**
   * Allow Iceberg schemas to specify one or more columns as row identifers 
[[\#2465](https://github.com/apache/iceberg/pull/2465)]. Note that this is a 
prerequisite for supporting upserts in Flink.
-  * Added JDBC [[\#1870](https://github.com/apache/iceberg/pull/1870)] and 
DynamoDB [[\#2688](https://github.com/apache/iceberg/pull/2688)] Iceberg 
catalog implementations.
+  * Added JDBC [[\#1870](https://github.com/apache/iceberg/pull/1870)] and 
DynamoDB [[\#2688](https://github.com/apache/iceberg/pull/2688)] catalog 
implementations.
   * Added predicate pushdown for partitions and files metadata tables 
[[\#2358](https://github.com/apache/iceberg/pull/2358), 
[\#2926](https://github.com/apache/iceberg/pull/2926)].
   * Added a new, more flexible compaction action for Spark that can support 
different strategies such as bin packing and sorting. 
[[\#2501](https://github.com/apache/iceberg/pull/2501), 
[\#2609](https://github.com/apache/iceberg/pull/2609)].
   * Added the ability to upgrade to v2 or create a v2 table using the table 
property format-version=2  
[[\#2887](https://github.com/apache/iceberg/pull/2887)].
+* **Flink**
+  * Added support for SQL primary keys 
[[\#2410](https://github.com/apache/iceberg/pull/2410)].
+* **Hive**
+  * Added the ability to set the catalog at the table level in the Hive 
Metastore. This makes it possible to write queries that reference tables from 
multiple catalogs [[\#2129](https://github.com/apache/iceberg/pull/2129)].
+  * Deprecated the configuration property `iceberg.mr.catalog` which was 
previously used to configure the Iceberg catalog in MapReduce and Hive 
[[\#2565](https://github.com/apache/iceberg/pull/2565)].
+  * Enabled dropping HMS tables despite metadata problems 
[[\#2583](https://github.com/apache/iceberg/pull/2583)].
+  * Added table-level JVM lock on 
commits[[\#2547](https://github.com/apache/iceberg/pull/2547)].
+  * Use Hive's vectorized ORC reader 
[[\#2613](https://github.com/apache/iceberg/pull/2613)].
 * **Spark**
-  * [[\#2560](https://github.com/apache/iceberg/pull/2560)] added extensions 
DDL to set identifier fields.
-  * [[\#2365](https://github.com/apache/iceberg/pull/2365)] added support for 
`ALTER TABLE table CHANGE PARTITION FIELD transform TO transform` DDL.
-  * [[\#2660](https://github.com/apache/iceberg/pull/2660)] added support for 
micro-batch streaming reads for structured streaming in Spark3.
-  * [[\#2777](https://github.com/apache/iceberg/pull/2777)] improves the 
performance of importing a Hive table by not loading all partitions from Hive 
and instead pushing the partition filter to the Metastore.
-  * [[\#2193](https://github.com/apache/iceberg/pull/2193), 
[\#2206](https://github.com/apache/iceberg/pull/2206)] added support for UPDATE 
statements in Spark.
-* **Flink** now support SQL primary keys 
[[\#2410](https://github.com/apache/iceberg/pull/2410)].
+  * Added extensions DDL to set identifier fields 
[[\#2560](https://github.com/apache/iceberg/pull/2560)].
+  * Added support for `ALTER TABLE REPLACE PARTITION FIELD` DDL 
[[\#2365](https://github.com/apache/iceberg/pull/2365)].
+  * Added support for micro-batch streaming reads for structured streaming in 
Spark3 [[\#2660](https://github.com/apache/iceberg/pull/2660)].
+  * Improved the performance of importing a Hive table by not loading all 
partitions from Hive and instead pushing the partition filter to the Metastore 
[[\#2777](https://github.com/apache/iceberg/pull/2777)].
+  * Added support for UPDATE statements in Spark 
[[\#2193](https://github.com/apache/iceberg/pull/2193), 
[\#2206](https://github.com/apache/iceberg/pull/2206)].

Review comment:
       A few more for Spark:
   * Spark 3.1 is now supported (#2512)
   * Added RemoveReachableFiles action (#2415)
   * Added add_files stored procedure (#2210)
   * Refactored Actions API and added a new entry point (need to find the ref)
   * Added support for Hadoop configuration overrides (#2922)

##########
File path: site/docs/releases.md
##########
@@ -64,28 +64,36 @@ High-level features:
 
 * **Core**
   * Allow Iceberg schemas to specify one or more columns as row identifers 
[[\#2465](https://github.com/apache/iceberg/pull/2465)]. Note that this is a 
prerequisite for supporting upserts in Flink.
-  * Added JDBC [[\#1870](https://github.com/apache/iceberg/pull/1870)] and 
DynamoDB [[\#2688](https://github.com/apache/iceberg/pull/2688)] Iceberg 
catalog implementations.
+  * Added JDBC [[\#1870](https://github.com/apache/iceberg/pull/1870)] and 
DynamoDB [[\#2688](https://github.com/apache/iceberg/pull/2688)] catalog 
implementations.
   * Added predicate pushdown for partitions and files metadata tables 
[[\#2358](https://github.com/apache/iceberg/pull/2358), 
[\#2926](https://github.com/apache/iceberg/pull/2926)].
   * Added a new, more flexible compaction action for Spark that can support 
different strategies such as bin packing and sorting. 
[[\#2501](https://github.com/apache/iceberg/pull/2501), 
[\#2609](https://github.com/apache/iceberg/pull/2609)].
   * Added the ability to upgrade to v2 or create a v2 table using the table 
property format-version=2  
[[\#2887](https://github.com/apache/iceberg/pull/2887)].
+* **Flink**
+  * Added support for SQL primary keys 
[[\#2410](https://github.com/apache/iceberg/pull/2410)].
+* **Hive**
+  * Added the ability to set the catalog at the table level in the Hive 
Metastore. This makes it possible to write queries that reference tables from 
multiple catalogs [[\#2129](https://github.com/apache/iceberg/pull/2129)].
+  * Deprecated the configuration property `iceberg.mr.catalog` which was 
previously used to configure the Iceberg catalog in MapReduce and Hive 
[[\#2565](https://github.com/apache/iceberg/pull/2565)].
+  * Enabled dropping HMS tables despite metadata problems 
[[\#2583](https://github.com/apache/iceberg/pull/2583)].
+  * Added table-level JVM lock on 
commits[[\#2547](https://github.com/apache/iceberg/pull/2547)].
+  * Use Hive's vectorized ORC reader 
[[\#2613](https://github.com/apache/iceberg/pull/2613)].
 * **Spark**
-  * [[\#2560](https://github.com/apache/iceberg/pull/2560)] added extensions 
DDL to set identifier fields.
-  * [[\#2365](https://github.com/apache/iceberg/pull/2365)] added support for 
`ALTER TABLE table CHANGE PARTITION FIELD transform TO transform` DDL.
-  * [[\#2660](https://github.com/apache/iceberg/pull/2660)] added support for 
micro-batch streaming reads for structured streaming in Spark3.
-  * [[\#2777](https://github.com/apache/iceberg/pull/2777)] improves the 
performance of importing a Hive table by not loading all partitions from Hive 
and instead pushing the partition filter to the Metastore.
-  * [[\#2193](https://github.com/apache/iceberg/pull/2193), 
[\#2206](https://github.com/apache/iceberg/pull/2206)] added support for UPDATE 
statements in Spark.
-* **Flink** now support SQL primary keys 
[[\#2410](https://github.com/apache/iceberg/pull/2410)].
+  * Added extensions DDL to set identifier fields 
[[\#2560](https://github.com/apache/iceberg/pull/2560)].
+  * Added support for `ALTER TABLE REPLACE PARTITION FIELD` DDL 
[[\#2365](https://github.com/apache/iceberg/pull/2365)].
+  * Added support for micro-batch streaming reads for structured streaming in 
Spark3 [[\#2660](https://github.com/apache/iceberg/pull/2660)].
+  * Improved the performance of importing a Hive table by not loading all 
partitions from Hive and instead pushing the partition filter to the Metastore 
[[\#2777](https://github.com/apache/iceberg/pull/2777)].
+  * Added support for UPDATE statements in Spark 
[[\#2193](https://github.com/apache/iceberg/pull/2193), 
[\#2206](https://github.com/apache/iceberg/pull/2206)].
+
 
 Important bug fixes:
 
 * **Core**
-  * [\#2849](https://github.com/apache/iceberg/pull/2849) fixes string 
bucketing with non-BMP characters
-  * [\#2551](https://github.com/apache/iceberg/pull/2551) fixes Parquet 
dictionary filter not handling fixed length byte arrays.
-  * [\#2550](https://github.com/apache/iceberg/pull/2550) fixes a problem with 
the configuration of HiveCatalog.
+  * Fixed string bucketing with non-BMP characters 
[[\#2849](https://github.com/apache/iceberg/pull/2849)].
+  * Fixed Parquet dictionary filter not handling fixed length byte arrays 
[[\#2551](https://github.com/apache/iceberg/pull/2551)].
+  * Fixed a problem with the configuration of HiveCatalog 
[[\#2550](https://github.com/apache/iceberg/pull/2550)].
 * **Spark**
-  * [\#2584](https://github.com/apache/iceberg/pull/2584) fixes MERGE INTO in 
Spark when used with SinglePartition partitioning.
-  * [\#2877](https://github.com/apache/iceberg/pull/2877) fixes nested struct 
pruning in Spark
-  * [\#2757](https://github.com/apache/iceberg/pull/2757) fixes Timestamp 
without Timezone type support in Spark
+  * Fixed `MERGE INTO` in Spark when used with SinglePartition partitioning 
[[\#2584](https://github.com/apache/iceberg/pull/2584)].

Review comment:
       A couple more Spark additions:
   * Fixed NaN handling for float and double metrics (#2464)
   * Fixed Kryo serialization for data and delete files (#2343)

##########
File path: site/docs/releases.md
##########
@@ -64,28 +64,36 @@ High-level features:
 
 * **Core**
   * Allow Iceberg schemas to specify one or more columns as row identifers 
[[\#2465](https://github.com/apache/iceberg/pull/2465)]. Note that this is a 
prerequisite for supporting upserts in Flink.
-  * Added JDBC [[\#1870](https://github.com/apache/iceberg/pull/1870)] and 
DynamoDB [[\#2688](https://github.com/apache/iceberg/pull/2688)] Iceberg 
catalog implementations.
+  * Added JDBC [[\#1870](https://github.com/apache/iceberg/pull/1870)] and 
DynamoDB [[\#2688](https://github.com/apache/iceberg/pull/2688)] catalog 
implementations.
   * Added predicate pushdown for partitions and files metadata tables 
[[\#2358](https://github.com/apache/iceberg/pull/2358), 
[\#2926](https://github.com/apache/iceberg/pull/2926)].
   * Added a new, more flexible compaction action for Spark that can support 
different strategies such as bin packing and sorting. 
[[\#2501](https://github.com/apache/iceberg/pull/2501), 
[\#2609](https://github.com/apache/iceberg/pull/2609)].
   * Added the ability to upgrade to v2 or create a v2 table using the table 
property format-version=2  
[[\#2887](https://github.com/apache/iceberg/pull/2887)].
+* **Flink**
+  * Added support for SQL primary keys 
[[\#2410](https://github.com/apache/iceberg/pull/2410)].
+* **Hive**
+  * Added the ability to set the catalog at the table level in the Hive 
Metastore. This makes it possible to write queries that reference tables from 
multiple catalogs [[\#2129](https://github.com/apache/iceberg/pull/2129)].
+  * Deprecated the configuration property `iceberg.mr.catalog` which was 
previously used to configure the Iceberg catalog in MapReduce and Hive 
[[\#2565](https://github.com/apache/iceberg/pull/2565)].
+  * Enabled dropping HMS tables despite metadata problems 
[[\#2583](https://github.com/apache/iceberg/pull/2583)].
+  * Added table-level JVM lock on 
commits[[\#2547](https://github.com/apache/iceberg/pull/2547)].
+  * Use Hive's vectorized ORC reader 
[[\#2613](https://github.com/apache/iceberg/pull/2613)].
 * **Spark**
-  * [[\#2560](https://github.com/apache/iceberg/pull/2560)] added extensions 
DDL to set identifier fields.
-  * [[\#2365](https://github.com/apache/iceberg/pull/2365)] added support for 
`ALTER TABLE table CHANGE PARTITION FIELD transform TO transform` DDL.
-  * [[\#2660](https://github.com/apache/iceberg/pull/2660)] added support for 
micro-batch streaming reads for structured streaming in Spark3.
-  * [[\#2777](https://github.com/apache/iceberg/pull/2777)] improves the 
performance of importing a Hive table by not loading all partitions from Hive 
and instead pushing the partition filter to the Metastore.
-  * [[\#2193](https://github.com/apache/iceberg/pull/2193), 
[\#2206](https://github.com/apache/iceberg/pull/2206)] added support for UPDATE 
statements in Spark.
-* **Flink** now support SQL primary keys 
[[\#2410](https://github.com/apache/iceberg/pull/2410)].
+  * Added extensions DDL to set identifier fields 
[[\#2560](https://github.com/apache/iceberg/pull/2560)].
+  * Added support for `ALTER TABLE REPLACE PARTITION FIELD` DDL 
[[\#2365](https://github.com/apache/iceberg/pull/2365)].
+  * Added support for micro-batch streaming reads for structured streaming in 
Spark3 [[\#2660](https://github.com/apache/iceberg/pull/2660)].
+  * Improved the performance of importing a Hive table by not loading all 
partitions from Hive and instead pushing the partition filter to the Metastore 
[[\#2777](https://github.com/apache/iceberg/pull/2777)].
+  * Added support for UPDATE statements in Spark 
[[\#2193](https://github.com/apache/iceberg/pull/2193), 
[\#2206](https://github.com/apache/iceberg/pull/2206)].
+
 
 Important bug fixes:
 
 * **Core**

Review comment:
       Another general one: Parquet: Fix row group filters with promoted types 
(#2232)

##########
File path: site/docs/releases.md
##########
@@ -64,28 +64,36 @@ High-level features:
 
 * **Core**
   * Allow Iceberg schemas to specify one or more columns as row identifers 
[[\#2465](https://github.com/apache/iceberg/pull/2465)]. Note that this is a 
prerequisite for supporting upserts in Flink.
-  * Added JDBC [[\#1870](https://github.com/apache/iceberg/pull/1870)] and 
DynamoDB [[\#2688](https://github.com/apache/iceberg/pull/2688)] Iceberg 
catalog implementations.
+  * Added JDBC [[\#1870](https://github.com/apache/iceberg/pull/1870)] and 
DynamoDB [[\#2688](https://github.com/apache/iceberg/pull/2688)] catalog 
implementations.
   * Added predicate pushdown for partitions and files metadata tables 
[[\#2358](https://github.com/apache/iceberg/pull/2358), 
[\#2926](https://github.com/apache/iceberg/pull/2926)].
   * Added a new, more flexible compaction action for Spark that can support 
different strategies such as bin packing and sorting. 
[[\#2501](https://github.com/apache/iceberg/pull/2501), 
[\#2609](https://github.com/apache/iceberg/pull/2609)].
   * Added the ability to upgrade to v2 or create a v2 table using the table 
property format-version=2  
[[\#2887](https://github.com/apache/iceberg/pull/2887)].

Review comment:
       Also: Added key_metadata to manifest lists for encryption (#2675)




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org
For additional commands, e-mail: issues-h...@iceberg.apache.org

Reply via email to