summaryrefslogtreecommitdiffstats
path: root/storage
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2023-08-30 00:59:36 +0200
committerHenning Baldersheim <balder@yahoo-inc.com>2023-08-30 00:59:36 +0200
commitab358484e55a6452045760a7632192e98232a475 (patch)
treea406ee28f8583f4fca5d096854486fcba94f785b /storage
parentd4bf352b9901764c1a1f63925b53fd41d55f99d6 (diff)
GC stor-bucket-init.def
Diffstat (limited to 'storage')
-rw-r--r--storage/src/tests/common/testhelper.cpp1
-rw-r--r--storage/src/vespa/storage/bucketdb/.gitignore2
-rw-r--r--storage/src/vespa/storage/bucketdb/CMakeLists.txt2
-rw-r--r--storage/src/vespa/storage/bucketdb/stor-bucket-init.def35
4 files changed, 0 insertions, 40 deletions
diff --git a/storage/src/tests/common/testhelper.cpp b/storage/src/tests/common/testhelper.cpp
index 0f0a7cd8b55..1aecd72172a 100644
--- a/storage/src/tests/common/testhelper.cpp
+++ b/storage/src/tests/common/testhelper.cpp
@@ -48,7 +48,6 @@ vdstestlib::DirConfig getStandardConfig(bool storagenode, const std::string & ro
config = &dc.addConfig("messagebus");
config = &dc.addConfig("stor-prioritymapping");
config = &dc.addConfig("stor-bucketdbupdater");
- config = &dc.addConfig("stor-bucket-init");
config = &dc.addConfig("metricsmanager");
config->set("consumer[2]");
config->set("consumer[0].name", "\"status\"");
diff --git a/storage/src/vespa/storage/bucketdb/.gitignore b/storage/src/vespa/storage/bucketdb/.gitignore
index 54d8faa8201..3df72b601a2 100644
--- a/storage/src/vespa/storage/bucketdb/.gitignore
+++ b/storage/src/vespa/storage/bucketdb/.gitignore
@@ -7,5 +7,3 @@
.libs
Makefile
config-stor-bucketdb.*
-/config-stor-bucket-init.h
-/config-stor-bucket-init.cpp
diff --git a/storage/src/vespa/storage/bucketdb/CMakeLists.txt b/storage/src/vespa/storage/bucketdb/CMakeLists.txt
index fe60426325c..b16795a90ba 100644
--- a/storage/src/vespa/storage/bucketdb/CMakeLists.txt
+++ b/storage/src/vespa/storage/bucketdb/CMakeLists.txt
@@ -15,5 +15,3 @@ vespa_add_library(storage_bucketdb OBJECT
)
vespa_generate_config(storage_bucketdb stor-bucketdb.def)
install_config_definition(stor-bucketdb.def vespa.config.content.core.stor-bucketdb.def)
-vespa_generate_config(storage_bucketdb stor-bucket-init.def)
-install_config_definition(stor-bucket-init.def vespa.config.content.core.stor-bucket-init.def)
diff --git a/storage/src/vespa/storage/bucketdb/stor-bucket-init.def b/storage/src/vespa/storage/bucketdb/stor-bucket-init.def
deleted file mode 100644
index c3344e324a5..00000000000
--- a/storage/src/vespa/storage/bucketdb/stor-bucket-init.def
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
-namespace=vespa.config.content.core
-
-# The maximum number of alien files found during init that should be stored in
-# memory so they can be viewed on status page.
-max_alien_files_logged int default=10 restart
-
-# The maximum number of pending info reads to each disk during initialization.
-max_pending_info_reads_per_disk int default=20 restart
-
-# The minimum number of pending info reads to each disk during initialization.
-# When pending falls below this, we will resume database scan to add more
-# pending up to the maximum setting.
-min_pending_info_reads_per_disk int default=4 restart
-
-# The priority of the read bucket info requests the initializer sends to the
-# persistence layer. Currently chosen so that such operations will not pre-
-# empt any regular external load or ideal state operations, but they will block
-# very low priority background operations such as periodic GC (default pri of
-# 200). A tradeoff must be made between fast initialization and the availability
-# of data on the initializing node.
-info_read_priority int default=185 restart
-
-# The priority of the list bucket requests the initializer sends to the
-# persistence layer. Should always be lower than the read priority to ensure
-# starting to read wont make listing wait. However, listing is currently pretty
-# much required to be done before starting anyhow, so this option does little
-# unless your directories are not hardware independent.
-list_priority int default=100 restart
-
-# Whether the initializer should complete listing before starting to read
-# bucket information. Shouldnt matter much performance wise so always set to
-# true as it is now. Setting it false, disks done listing first will start
-# to process info requests a bit earlier than otherwise.
-complete_list_before_starting_read bool default=false restart