Skip to main content

Local Iceberg E2E

The local stack is a Docker Compose deployment of:

  • Iceberg REST catalog on http://localhost:8181
  • RustFS S3-compatible object storage on http://localhost:9000
  • Moto Glue-compatible endpoint on http://localhost:5001

Start it with:

docker compose -f fixture/iceberg-local/docker-compose.yml up -d

The canonical benchmark-style REST E2E entrypoint still loads TPC-H by default:

fixture/scripts/e2e.sh iceberg-local --reuse-parquet

For the website cuGraph examples, load the DBLP / AMiner citation network into the same REST catalog:

fixture/scripts/fixture.sh iceberg rest load --workload citation_network

That creates namespace citation_network with citation_edges, citation_edges_by_dst, papers, paper_authors, and paper_fos. Run the server with NEXUS_ICEBERG_CATALOG_KIND=rest, NEXUS_ICEBERG_CATALOG_NAME=lake, and NEXUS_ICEBERG_NAMESPACE=citation_network; the cuGraph docs use the workspace overlay so those tables are available as unqualified names.

Glue E2E is local Moto + RustFS only. Rust tests must not require a real AWS Glue/S3 account. Real AWS Glue is useful for remote demos, but it is not the website's default setup path because users need an AWS account, warehouse bucket, region, and credential chain.