I’m currently using the Iceberg table format with Hive source.
The Expire Snapshots query works fine
VACUUM TABLE hive_source.test_dbt.testdbtdesmergecomplex
EXPIRE SNAPSHOTS older_than = ‘9999-12-31 23:59:59.999’;
Why REMOVE ORPHAN FILES won’t work?
VACUUM TABLE hive_source.test_dbt.testdbtdesmergecomplex
REMOVE ORPHAN FILES OLDER_THAN = ‘2025-12-31 19:43:53.812’;
SQL Error: UNSUPPORTED_OPERATION ERROR: VACUUM TABLE REMOVE ORPHAN FILES command is not supported.
[Error Id: 0438027c-4eaa-4ba7-b832-1e7363a7e6d0 ]
The doc said clearly that it should work!!!
Do Expire Snapshots also remove the redundant Iceberg metadata files?
I’m using Dremio 26.0.0 Community Edititon

