From 4731c6c6f414595ba8dcd466956edbd65e09b3c3 Mon Sep 17 00:00:00 2001 From: Vasily Nemkov Date: Fri, 13 Mar 2026 02:26:38 +0100 Subject: [PATCH 1/2] Merge pull request #1504 from Altinity/fixes/26.1-antalya/enabled_experimental_datalake_catalogues 26.1 Antalya - Enabled experimental datalake catalogues by-default --- src/Core/Settings.cpp | 6 +++--- src/Core/SettingsChangesHistory.cpp | 8 ++++++++ 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/src/Core/Settings.cpp b/src/Core/Settings.cpp index cc4328b8aaa9..f1fc930e16cc 100644 --- a/src/Core/Settings.cpp +++ b/src/Core/Settings.cpp @@ -7157,17 +7157,17 @@ Uses replicas from cluster_for_parallel_replicas. DECLARE(Bool, distributed_index_analysis_for_non_shared_merge_tree, false, R"( Enable distributed index analysis even for non SharedMergeTree (cloud only engine). )", 0) \ - DECLARE_WITH_ALIAS(Bool, allow_experimental_database_iceberg, false, R"( + DECLARE_WITH_ALIAS(Bool, allow_experimental_database_iceberg, true, R"( Allow experimental database engine DataLakeCatalog with catalog_type = 'iceberg' Cloud default value: `1`. )", BETA, allow_database_iceberg) \ - DECLARE_WITH_ALIAS(Bool, allow_experimental_database_unity_catalog, false, R"( + DECLARE_WITH_ALIAS(Bool, allow_experimental_database_unity_catalog, true, R"( Allow experimental database engine DataLakeCatalog with catalog_type = 'unity' Cloud default value: `1`. )", BETA, allow_database_unity_catalog) \ - DECLARE_WITH_ALIAS(Bool, allow_experimental_database_glue_catalog, false, R"( + DECLARE_WITH_ALIAS(Bool, allow_experimental_database_glue_catalog, true, R"( Allow experimental database engine DataLakeCatalog with catalog_type = 'glue' Cloud default value: `1`. diff --git a/src/Core/SettingsChangesHistory.cpp b/src/Core/SettingsChangesHistory.cpp index 245677b8a86d..f3c3114d77ef 100644 --- a/src/Core/SettingsChangesHistory.cpp +++ b/src/Core/SettingsChangesHistory.cpp @@ -312,6 +312,14 @@ const VersionToSettingsChangesMap & getSettingsChangesHistory() // {"allow_database_unity_catalog", false, true, "Turned ON by default for Antalya (alias)."}, // {"allow_database_glue_catalog", false, true, "Turned ON by default for Antalya (alias)."}, // {"input_format_parquet_use_metadata_cache", true, true, "New setting, turned ON by default"}, // https://github.com/Altinity/ClickHouse/pull/586 + {"allow_experimental_database_iceberg", false, true, "Turned ON by default for Antalya."}, + {"allow_experimental_database_unity_catalog", false, true, "Turned ON by default for Antalya."}, + {"allow_experimental_database_glue_catalog", false, true, "Turned ON by default for Antalya."}, + {"allow_database_iceberg", false, true, "Turned ON by default for Antalya (alias)."}, + {"allow_database_unity_catalog", false, true, "Turned ON by default for Antalya (alias)."}, + {"allow_database_glue_catalog", false, true, "Turned ON by default for Antalya (alias)."}, + + {"input_format_parquet_use_metadata_cache", true, true, "New setting, turned ON by default"}, // https://github.com/Altinity/ClickHouse/pull/586 // {"iceberg_timezone_for_timestamptz", "UTC", "UTC", "New setting."}, // {"object_storage_remote_initiator", false, false, "New setting."}, {"allow_experimental_iceberg_read_optimization", true, true, "New setting."}, From ad2c22eb89e8cec4472d8f6675d77bc8d8869bd4 Mon Sep 17 00:00:00 2001 From: Andrey Zvonov <32552679+zvonand@users.noreply.github.com> Date: Thu, 7 May 2026 15:52:49 +0200 Subject: [PATCH 2/2] Update SettingsChangesHistory.cpp --- src/Core/SettingsChangesHistory.cpp | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/src/Core/SettingsChangesHistory.cpp b/src/Core/SettingsChangesHistory.cpp index f3c3114d77ef..be506a046021 100644 --- a/src/Core/SettingsChangesHistory.cpp +++ b/src/Core/SettingsChangesHistory.cpp @@ -305,21 +305,13 @@ const VersionToSettingsChangesMap & getSettingsChangesHistory() }); addSettingsChanges(settings_changes_history, "25.8.16.20001.altinityantalya", { - // {"allow_experimental_database_iceberg", false, true, "Turned ON by default for Antalya."}, - // {"allow_experimental_database_unity_catalog", false, true, "Turned ON by default for Antalya."}, - // {"allow_experimental_database_glue_catalog", false, true, "Turned ON by default for Antalya."}, - // {"allow_database_iceberg", false, true, "Turned ON by default for Antalya (alias)."}, - // {"allow_database_unity_catalog", false, true, "Turned ON by default for Antalya (alias)."}, - // {"allow_database_glue_catalog", false, true, "Turned ON by default for Antalya (alias)."}, - // {"input_format_parquet_use_metadata_cache", true, true, "New setting, turned ON by default"}, // https://github.com/Altinity/ClickHouse/pull/586 {"allow_experimental_database_iceberg", false, true, "Turned ON by default for Antalya."}, {"allow_experimental_database_unity_catalog", false, true, "Turned ON by default for Antalya."}, {"allow_experimental_database_glue_catalog", false, true, "Turned ON by default for Antalya."}, {"allow_database_iceberg", false, true, "Turned ON by default for Antalya (alias)."}, {"allow_database_unity_catalog", false, true, "Turned ON by default for Antalya (alias)."}, {"allow_database_glue_catalog", false, true, "Turned ON by default for Antalya (alias)."}, - - {"input_format_parquet_use_metadata_cache", true, true, "New setting, turned ON by default"}, // https://github.com/Altinity/ClickHouse/pull/586 + // {"input_format_parquet_use_metadata_cache", true, true, "New setting, turned ON by default"}, // https://github.com/Altinity/ClickHouse/pull/586 // {"iceberg_timezone_for_timestamptz", "UTC", "UTC", "New setting."}, // {"object_storage_remote_initiator", false, false, "New setting."}, {"allow_experimental_iceberg_read_optimization", true, true, "New setting."},