ALTER ICEBERG TABLE

This command alters the previously configured options for the specified Apache Iceberg table.

Syntax

ALTER ICEBERG TABLE <table_identifier> 
    SET <table_option> = <value>;

Example

ALTER ICEBERG TABLE my_iceberg_table
SET compute_cluster = "my_compute_cluster",
iceberg.'read.split.planning-lookback'='10';

Note that not all table options are mutable.

All mutable options are denoted by — editable in the individual option descriptions.

To check if a certain table option is mutable, see CREATE ICEBERG TABLE.

Last updated