This is an automated email from the ASF dual-hosted git repository.
jrmccluskey pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/beam.git
The following commit(s) were added to refs/heads/master by this push:
new 7dda2cdb72d Enable Apache Iceberg REST Metrics Reporting for Lakehouse
(#39650)
7dda2cdb72d is described below
commit 7dda2cdb72d036c07d14713a22ccf7e8077b2a01
Author: feefs <[email protected]>
AuthorDate: Tue Aug 11 10:13:31 2026 -0700
Enable Apache Iceberg REST Metrics Reporting for Lakehouse (#39650)
---
.../src/test/java/org/apache/beam/sdk/io/iceberg/AddFilesIT.java | 3 +--
.../java/org/apache/beam/sdk/io/iceberg/catalog/RESTCatalogBLMSIT.java | 1 -
sdks/python/apache_beam/transforms/managed_iceberg_it_test.py | 3 +--
3 files changed, 2 insertions(+), 5 deletions(-)
diff --git
a/sdks/java/io/iceberg/src/test/java/org/apache/beam/sdk/io/iceberg/AddFilesIT.java
b/sdks/java/io/iceberg/src/test/java/org/apache/beam/sdk/io/iceberg/AddFilesIT.java
index 54c9cb8dc93..528d6453eac 100644
---
a/sdks/java/io/iceberg/src/test/java/org/apache/beam/sdk/io/iceberg/AddFilesIT.java
+++
b/sdks/java/io/iceberg/src/test/java/org/apache/beam/sdk/io/iceberg/AddFilesIT.java
@@ -126,8 +126,7 @@ public class AddFilesIT {
"warehouse", WAREHOUSE,
"header.x-goog-user-project", PROJECT,
"rest.auth.type", "google",
- "io-impl", "org.apache.iceberg.gcp.gcs.GCSFileIO",
- "rest-metrics-reporting-enabled", "false");
+ "io-impl", "org.apache.iceberg.gcp.gcs.GCSFileIO");
private Storage storage;
private PubsubClient pubsub;
private Notification notification;
diff --git
a/sdks/java/io/iceberg/src/test/java/org/apache/beam/sdk/io/iceberg/catalog/RESTCatalogBLMSIT.java
b/sdks/java/io/iceberg/src/test/java/org/apache/beam/sdk/io/iceberg/catalog/RESTCatalogBLMSIT.java
index c16df763333..6934bf13f21 100644
---
a/sdks/java/io/iceberg/src/test/java/org/apache/beam/sdk/io/iceberg/catalog/RESTCatalogBLMSIT.java
+++
b/sdks/java/io/iceberg/src/test/java/org/apache/beam/sdk/io/iceberg/catalog/RESTCatalogBLMSIT.java
@@ -41,7 +41,6 @@ public class RESTCatalogBLMSIT extends IcebergCatalogBaseIT {
.put("uri",
"https://biglake.googleapis.com/iceberg/v1/restcatalog")
.put("warehouse", BIGLAKE_WAREHOUSE)
.put("header.x-goog-user-project", OPTIONS.getProject())
- .put("rest-metrics-reporting-enabled", "false")
.put("io-impl", "org.apache.iceberg.gcp.gcs.GCSFileIO")
.put("rest.auth.type",
"org.apache.iceberg.gcp.auth.GoogleAuthManager")
.build();
diff --git a/sdks/python/apache_beam/transforms/managed_iceberg_it_test.py
b/sdks/python/apache_beam/transforms/managed_iceberg_it_test.py
index 23d19c50497..b381b1960f3 100644
--- a/sdks/python/apache_beam/transforms/managed_iceberg_it_test.py
+++ b/sdks/python/apache_beam/transforms/managed_iceberg_it_test.py
@@ -63,8 +63,7 @@ class ManagedIcebergIT(unittest.TestCase):
'header.x-goog-user-project': 'apache-beam-testing',
'rest.auth.type': 'google',
'io-impl': 'org.apache.iceberg.gcp.gcs.GCSFileIO',
- 'header.X-Iceberg-Access-Delegation': 'vended-credentials',
- 'rest-metrics-reporting-enabled': 'false'
+ 'header.X-Iceberg-Access-Delegation': 'vended-credentials'
}
iceberg_config = {
"table": "test_iceberg_write_read.test_" + uuid.uuid4().hex,