summaryrefslogtreecommitdiffstats
path: root/storage
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2024-01-30 15:15:03 +0000
committerHenning Baldersheim <balder@yahoo-inc.com>2024-01-30 16:22:24 +0000
commit249b727543dc9c683bf0215be88ae283bbc1b970 (patch)
tree1b748d725ad692f4e1315eecec211d21cf021f82 /storage
parent343f5555420577915cde15b76476e3e46699d20a (diff)
GC completely unused parameters from the days of VDS
Diffstat (limited to 'storage')
-rw-r--r--storage/src/vespa/storage/config/stor-server.def21
1 files changed, 0 insertions, 21 deletions
diff --git a/storage/src/vespa/storage/config/stor-server.def b/storage/src/vespa/storage/config/stor-server.def
index 3d304dd1727..26b8450ab20 100644
--- a/storage/src/vespa/storage/config/stor-server.def
+++ b/storage/src/vespa/storage/config/stor-server.def
@@ -21,14 +21,6 @@ is_distributor bool restart
## other nodes.
node_capacity double default=1.0 restart
-## Capacity of the disks on this node. How much data and load will each disk
-## get relative to the other disks on this node.
-disk_capacity[] double restart
-
-## Reliability of this node. How much of the cluster redundancy factor can this
-## node make up for.
-node_reliability int default=1 restart
-
## The upper bound of merges that any storage node can have active.
## A merge operation will be chained through all nodes involved in the
## merge, only actually starting the operation when every node has
@@ -109,19 +101,10 @@ enable_dead_lock_detector_warnings bool default=true
## allow for more slack before dead lock detector kicks in. The value is in seconds.
dead_lock_detector_timeout_slack double default=240
-## If set to 0, storage will attempt to auto-detect the number of VDS mount
-## points to use. If set to a number, force this number. This number only makes
-## sense on a storage node of course
-disk_count int default=0 restart
-
## Configure persistence provider. Temporary here to test.
persistence_provider.type enum {STORAGE, DUMMY, RPC } default=STORAGE restart
persistence_provider.rpc.connectspec string default="tcp/localhost:27777" restart
-## Whether or not to use the new metadata flow implementation. Default to not
-## as it is currently in development and not even functional
-switch_new_meta_data_flow bool default=false restart
-
## When the content layer receives a set of changed buckets from the persistence
## layer, it must recheck all of these. Each such recheck results in an
## operation scheduled against the persistence queust and since the total
@@ -135,10 +118,6 @@ bucket_rechecking_chunk_size int default=100
## Only useful for testing!
simulated_bucket_request_latency_msec int default=0
-## If set, content node processes will use a B-tree backed bucket database implementation
-## instead of the legacy Judy-based implementation.
-use_content_node_btree_bucket_db bool default=true restart
-
## If non-zero, the bucket DB will be striped into 2^bits sub-databases, each handling
## a disjoint subset of the node's buckets, in order to reduce locking contention.
## Max value is unspecified, but will be clamped internally.