Original text is not available for public display.
R2 - R2 Data Catalog now exposes metrics via the GraphQL Analytics API
Cloudflare Developer Platform Changelog · 2026-05-12
Related items
Privacy Proxy - Privacy Proxy metrics now available via GraphQL Analytics API
Privacy Proxy metrics are now queryable through Cloudflare's GraphQL Analytics API , the new default method for accessing Privacy Proxy observability data. All metrics are available through a single endpoint: curl https://api.cloudflare.com/client/v4/graphql \ --header "Authorization: Bearer APITOKEN" \ --header "Co...
R2 - R2 Data Catalog now supports automatic snapshot expiration
R2 Data Catalog now supports automatic snapshot expiration for Apache Iceberg tables. In Apache Iceberg, a snapshot is metadata that represents the state of a table at a given point in time. Every mutation creates a new snapshot which enable powerful features like time travel queries and rollback capabilities but wi...
Pipelines - Pipelines and R2 Data Catalog now supported in Terraform
Cloudflare Pipelines ingests streaming data via Workers or HTTP endpoints, transforms it with SQL, and writes it to R2 as Apache Iceberg tables. R2 Data Catalog manages those Iceberg tables, compaction, and compatibility with query engines like R2 SQL , Spark , and DuckDB . You can now create and manage both product...
R2 - R2 Data Catalog now supports compaction
You can now enable automatic compaction for Apache Iceberg tables in R2 Data Catalog to improve query performance. Compaction is the process of taking a group of small files and combining them into fewer larger files. This is an important maintenance operation as it helps ensure that query performance remains consis...
R2 - R2 Data Catalog snapshot expiration now removes unreferenced data files
R2 Data Catalog , a managed Apache Iceberg catalog built into R2, now removes unreferenced data files during automatic snapshot expiration. This improvement reduces storage costs and eliminates the need to run manual maintenance jobs to reclaim space from deleted data. Previously, snapshot expiration only cleaned up...
R2 - R2 Data Catalog table-level compaction
You can now enable compaction for individual Apache Iceberg tables in R2 Data Catalog , giving you fine-grained control over different workloads. # Enable compaction for a specific table (no token required) npx wrangler r2 bucket catalog compaction enable BUCKET NAMESPACE TABLE --target-size 256 This allows you to:...