Skip to main content
The Apache Iceberg connector exposes Iceberg tables as datasets. Pick one of two catalog types in the connection form:
  • AWS Glue catalog — tables are registered in an AWS Glue Data Catalog. Summation browses Glue namespaces and tables, then reads each selected table from its S3 storage through Spice.
  • S3 warehouse — tables live directly under an S3 prefix with no catalog service, laid out as <warehouse>/<namespace>/<table>/metadata/*.metadata.json. Summation lists the warehouse to find namespaces and tables, and Spice resolves the newest metadata file on every load.
Other Iceberg REST catalog providers are not available in the connection form.

What you’ll need

  • For a Glue catalog: the 12-digit AWS account ID that owns the Glue Data Catalog.
  • For an S3 warehouse: the warehouse path (s3://my-bucket/iceberg-warehouse, or s3://my-bucket when the namespace folders sit at the bucket root), pointing one level above the namespace folders.
  • The AWS region containing the catalog or warehouse and its S3 data.
  • AWS credentials with read access to the catalog (or warehouse prefix) and the S3 locations backing its Iceberg tables.
  • An optional session token when using temporary AWS credentials.
Use a dedicated read-only IAM principal and scope its S3 permissions to the prefixes containing the tables Summation should read.

Form fields

IAM policy

The credentials need permission to browse the catalog and read the S3 objects referenced by the selected Iceberg tables. Replace the account, bucket, and prefix values with your own. An S3 warehouse connector needs only the two S3 statements — drop the Glue statement, and make sure the s3:prefix condition covers the warehouse prefix itself, since browsing lists it directly. For a bucket-root warehouse (s3://my-bucket), drop the condition entirely or allow the * prefix.
See the Iceberg catalog connector documentation for the underlying Spice parameters and authentication behavior.

Adding datasets

After saving the connection, browse namespaces and select Iceberg tables. With a Glue catalog, non-Iceberg Glue tables are not shown; with an S3 warehouse, folders without a metadata/*.metadata.json file are not shown. Source references use the AWS Glue Iceberg REST catalog form:
or, for an S3 warehouse, the warehouse table path:
No metadata file is pinned in the dataset, so tables stay current as the pipeline writing them commits new snapshots. The catalog type, account ID, region, and warehouse path cannot be changed while datasets are linked to the connector, because each dataset’s source reference is derived from them.

Common problems