Skip to content

Commit 4baa1f1

Browse files
authored
Rename some new experimental settings
1 parent 7036956 commit 4baa1f1

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/Core/Settings.cpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6716,19 +6716,19 @@ Allow experimental delta-kernel-rs implementation.
67166716
DECLARE(Bool, make_distributed_plan, false, R"(
67176717
Make distributed query plan.
67186718
)", EXPERIMENTAL) \
6719-
DECLARE(Bool, execute_distributed_plan_locally, false, R"(
6719+
DECLARE(Bool, distributed_plan_execute_locally, false, R"(
67206720
Run all tasks of a distributed query plan locally. Useful for testing and debugging.
67216721
)", EXPERIMENTAL) \
6722-
DECLARE(UInt64, default_shuffle_join_bucket_count, 8, R"(
6722+
DECLARE(UInt64, distributed_plan_default_shuffle_join_bucket_count, 8, R"(
67236723
Default number of buckets for distributed shuffle-hash-join.
67246724
)", EXPERIMENTAL) \
6725-
DECLARE(UInt64, default_reader_bucket_count, 8, R"(
6725+
DECLARE(UInt64, distributed_plan_default_reader_bucket_count, 8, R"(
67266726
Default number of tasks for parallel reading in distributed query. Tasks are spread across between replicas.
67276727
)", EXPERIMENTAL) \
6728-
DECLARE(Bool, optimize_exchanges, false, R"(
6728+
DECLARE(Bool, distributed_plan_optimize_exchanges, true, R"(
67296729
Removes unnecessary exchanges in distributed query plan. Disable it for debugging.
67306730
)", EXPERIMENTAL) \
6731-
DECLARE(String, force_exchange_kind, "", R"(
6731+
DECLARE(String, distributed_plan_force_exchange_kind, "", R"(
67326732
Force specified kind of Exchange operators between distributed query stages.
67336733
67346734
Possible values:

0 commit comments

Comments
 (0)