summaryrefslogtreecommitdiffstats
path: root/configdefinitions
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2024-02-05 12:22:12 +0100
committerGitHub <noreply@github.com>2024-02-05 12:22:12 +0100
commit6b97427b64bae4f27fcc0b09ddbc5c98404814ee (patch)
tree240efaabd7661a0566b740f2a92d8ba305a251c7 /configdefinitions
parent4f522741cb43c90209f8faa4daff66613def07af (diff)
parentf68aab16a9e45b0341d458f7a6856e2348113a18 (diff)
Merge pull request #30165 from vespa-engine/balder/gc-unused-distribution-config
Balder/gc unused distribution config
Diffstat (limited to 'configdefinitions')
-rw-r--r--configdefinitions/src/vespa/stor-distribution.def20
1 files changed, 0 insertions, 20 deletions
diff --git a/configdefinitions/src/vespa/stor-distribution.def b/configdefinitions/src/vespa/stor-distribution.def
index fc73983b0b8..5eee4b7256d 100644
--- a/configdefinitions/src/vespa/stor-distribution.def
+++ b/configdefinitions/src/vespa/stor-distribution.def
@@ -31,14 +31,6 @@ ready_copies int default=0
## - That level distributes copies to all defined groups.
active_per_leaf_group bool default=false
-## Search have some unfortunate properties with some queries, adding a static
-## query cost, independent of the number of documents searched on a node. For
-## these cases they use many small groups to be able to scale. In such cases,
-## where groups are small, having distributors able to take over when none are
-## available in a group is useful.
-# TODO: Deprecated and unused, remove in Vespa 9
-distributor_auto_ownership_transfer_on_whole_group_down bool default=true
-
## Hierarchical grouping divides the nodes into a tree of groups. Due to config
## liking flat structures. The tree of groups is represented by a single array
## of groups defined here, where index is a string that can have a form like
@@ -58,15 +50,3 @@ group[].nodes[].index int
# The system will migrate all data away from retired nodes such that they can
# eventually be removed without partial data loss
group[].nodes[].retired bool default=false
-
-## Which disk distribution to use. From the current choices, we very much
-## recommend using MODULO_BID. The only reason to use any of the earlier one is
-## during an upgrade where you dont want to mess up the distribution in case you
-## want to revert the upgrade.
-##
-## MODULO old one (4.0)
-## MODULO_INDEX with node index in seed
-## MODULO_KNUTH with random(node index) in seed
-## MODULO_BID using all used bits, except count bits, and random(node index)
-## TODO: Deprecated and unused, remove in Vespa 9
-disk_distribution enum { MODULO, MODULO_INDEX, MODULO_KNUTH, MODULO_BID } default=MODULO_BID