Disabling compaction - Amazon Lake Formation
Services or capabilities described in Amazon Web Services documentation might vary by Region. To see the differences applicable to the China Regions, see Getting Started with Amazon Web Services in China (PDF).

Disabling compaction

You can disable automatic compaction for a particular Apache Iceberg table using Amazon Glue console or Amazon CLI.

Console
  1. Choose Data Catalog and choose Tables. From the tables list, choose the table in open table format that you want to disable compaction.

  2. You can choose an Iceberg table, and choose Disable compaction under Actions.

    You can also disable compaction for the table by choosing Disable compaction on the lower section of the Tables details page.

    Shows the option to disable compaction.
  3. Choose Disable compaction on the confirmation message. You can re-enable compaction at a later time.

    After the you confirm, compaction is disabled and the compaction status for the table turns back to Off.

Amazon CLI

In the following example, replace the account ID with a valid Amazon account ID. Replace the database name and table name with actual Iceberg table name and the database name. Replace the roleArn with the Amazon Resource Name (ARN) of the IAM role and actual name of the IAM role that has the required permissions to run compaction.

aws glue update-table-optimizer \ --catalog-id 123456789012 \ --database-name iceberg_db \ --table-name iceberg_table \ --table-optimizer-configuration '{"roleArn":"arn:aws:iam::123456789012:role/compaction_role", "enabled":'false'}'\ --type compaction
Amazon API

Call UpdateTableOptimizer operation to disable compaction for a specific table.