Skip to main content
Iceberg views support properties to configure view behavior. This guide covers the available view properties and their default values.

View Properties

The following table shows the core view properties:

Metadata Compression

Control how view metadata is compressed:
Using gzip compression (the default) reduces metadata file size at the cost of some CPU overhead. Use none for faster metadata operations on smaller views.

Version History

Configure how many view versions to retain:
Retaining more versions allows you to query older view definitions but increases metadata storage size.

Dialect Dropping

Control whether SQL dialects can be dropped during replace operations:
Setting replace.drop-dialect.allowed to true allows dialect definitions to be removed during CREATE OR REPLACE VIEW operations, which may break compatibility with certain query engines.

View Behavior Properties

These properties control view commit behavior:

Commit Retry Configuration

Configure commit retry behavior for views in high-concurrency environments:

Retry Attempts

Controls how many times to retry a failed commit operation before giving up

Wait Times

Exponential backoff between min and max wait times for commit retries

Total Timeout

Maximum total time to spend retrying commits before failing the operation

Concurrency

Higher retry values help handle concurrent view updates from multiple clients

Example: Production View Configuration

Here’s a recommended configuration for production views:
This configuration:
  • Compresses metadata for efficiency
  • Retains 30 days of view version history
  • Prevents accidental dialect removal
  • Uses robust retry settings for high-concurrency environments