Skip to main content
This guide shows how to read data from external Apache Iceberg tables in RisingWave. Use it when your Iceberg tables are managed by external systems and you want to treat them as a streaming source for real-time processing. You can ingest data from Iceberg tables using two approaches:
  1. Continuous ingestion (default): Create an Iceberg source with the CREATE SOURCE statement for continuous, streaming ingestion of append-only data.
  2. Periodic full reload: Create an Iceberg table with refresh_mode = 'FULL_RELOAD' for scheduled full table refreshes. Note that you must use CREATE TABLE (not CREATE SOURCE), and data will only be loaded after you trigger a refresh—either manually or via the configured schedule.
After the source or table is created, you can run ad hoc queries against it or maintain materialized views for continuous analytics.

Prerequisites

  • An existing Apache Iceberg table managed by external systems.
  • Access credentials for the underlying storage system (e.g., S3 access key and secret key).
  • Network connectivity between RisingWave and your storage system.
  • Knowledge of your Iceberg catalog type and configuration.

Continuous ingestion with CREATE SOURCE

Limitations

  • PRIMARY KEY is not supported. Iceberg CREATE SOURCE is for append-only, streaming ingestion. RisingWave internally uses a hidden, system-generated _row_id column to uniquely identify each record, which is incompatible with user-defined primary keys. If you need to ingest a mutable Iceberg table (with updates and deletes), use CREATE TABLE with refresh_mode = 'FULL_RELOAD' instead — note that FULL_RELOAD is periodic snapshot-style ingestion, not continuous streaming.
  • Column definitions are not allowed for Iceberg sources. RisingWave automatically infers the schema from the Iceberg table metadata. Specifying column definitions in the CREATE SOURCE statement will result in an error. Use CREATE SOURCE <name> WITH (...) rather than CREATE SOURCE <name> (<columns>) WITH (...).

Basic connection example

The following example creates a source for a table in S3 using AWS Glue as the catalog:
When you read from an external Iceberg table, RisingWave automatically derives column names and data types from the Iceberg table metadata. Use the DESCRIBE statement to view the schema:

Parameters

ParameterDescriptionExample
connectorRequired. For Iceberg sources, it must be 'iceberg''iceberg'
database.nameRequired. The Iceberg database/namespace name.'analytics'
table.nameRequired. The Iceberg table name.'user_events'
commit_checkpoint_intervalOptional. Determines the Iceberg commit frequency. Default: 60 (about 60 seconds in the default configuration).60
You also need to specify catalog and object storage parameters in the CREATE SOURCE statement. Because these parameters are shared across all Iceberg objects—sources, sinks, and internal Iceberg tables—they are documented separately. For details on how data types are mapped between RisingWave and Iceberg, see the Data type mapping guide.

Source example

For a REST catalog:

Periodic full reload with CREATE TABLE

Added in v2.7.0. It is currently in technical preview stage.
For batch-style workloads where you need to periodically reload an entire Iceberg table, you can create a table with refresh_mode = 'FULL_RELOAD'. This mode is useful when:
  • The external Iceberg table supports mutable data (updates and deletes).
  • You need a point-in-time snapshot of the entire table.
  • You want to apply Iceberg deletes (PositionDeletes and EqualityDeletes) for accurate query results.
  • Periodic full reloads fit your use case better than continuous streaming.

Create a refreshable table

Do not define column types in the CREATE TABLE statement. RisingWave automatically infers the schema from the Iceberg table. Only specify a PRIMARY KEY constraint if the corresponding column exists in the Iceberg table schema.

Parameters

ParameterDescriptionRequiredExample
refresh_modeMust be set to 'FULL_RELOAD' to enable periodic refresh functionalityYes'FULL_RELOAD'
refresh_interval_secInterval in seconds between automatic refresh operationsNo'60'
RisingWave checks all refreshable tables at a configurable interval (default: 60 seconds, configured by stream_refresh_scheduler_interval_sec in the RisingWave configuration file). Setting a refresh_interval_sec value lower than this scheduler interval may result in refresh triggers not occurring at the expected frequency.
If you omit refresh_interval_sec, the table will only refresh when you manually execute REFRESH TABLE, giving you complete control over when data is loaded.

Manual refresh

You can manually trigger a refresh at any time using the REFRESH TABLE command:

Monitor delete files

You can verify discovered delete files via the rw_iceberg_files system catalog:
This query shows all data and delete files associated with the table. The content column indicates the file type:
  • Data: Regular data files
  • PositionDeletes: Position-based delete files
  • EqualityDeletes: Equality-based delete files

Monitor refresh status

Query the rw_catalog.rw_refresh_table_state system catalog to monitor refresh operations:
The current_status field shows the current state of the refresh job:
  • IDLE: No refresh operation is currently in progress
  • REFRESHING: A refresh operation is in progress
For more details, see REFRESH TABLE.

What’s next?

Query data

Once created, you can query data from the Iceberg source:

Query historical snapshots of your Iceberg data

Query historical snapshots of your Iceberg tables:

Continuous data processing jobs

You can create materialized views that continuously process data from the Iceberg source:

Inspect Iceberg metadata through system tables

Use system tables to inspect Iceberg metadata: