aboutsummaryrefslogtreecommitdiffstats
path: root/configdefinitions
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2024-01-30 13:30:56 +0000
committerHenning Baldersheim <balder@yahoo-inc.com>2024-01-30 13:30:56 +0000
commit41bb0231c6d505d5b79a23371742439011705611 (patch)
treeb4e5d5ca8c6b4331feed68d6ede10c6f1d1d3b6b /configdefinitions
parent556ad57eab8cc2c93b38821a10c51a14345a1181 (diff)
GC unused async_operation_dynamic_throttling_window_increment and async_operation_throttler_type
Diffstat (limited to 'configdefinitions')
-rw-r--r--configdefinitions/src/vespa/stor-filestor.def21
1 files changed, 0 insertions, 21 deletions
diff --git a/configdefinitions/src/vespa/stor-filestor.def b/configdefinitions/src/vespa/stor-filestor.def
index c7ac1472d30..13e304823ff 100644
--- a/configdefinitions/src/vespa/stor-filestor.def
+++ b/configdefinitions/src/vespa/stor-filestor.def
@@ -93,24 +93,3 @@ async_operation_throttler.resize_rate double default=3.0
## level, i.e. per ApplyBucketDiff message, regardless of how many document operations
## are contained within.
async_operation_throttler.throttle_individual_merge_feed_ops bool default=true
-
-## Specify throttling used for async persistence operations. This throttling takes place
-## before operations are dispatched to Proton and serves as a limiter for how many
-## operations may be in flight in Proton's internal queues.
-##
-## - UNLIMITED is, as it says on the tin, unlimited. Offers no actual throttling, but
-## has near zero overhead and never blocks.
-## - DYNAMIC uses DynamicThrottlePolicy under the hood and will block if the window
-## is full (if a blocking throttler API call is invoked).
-##
-## TODO deprecate in favor of the async_operation_throttler struct instead.
-async_operation_throttler_type enum { UNLIMITED, DYNAMIC } default=DYNAMIC
-
-## Specifies the extent the throttling window is increased by when the async throttle
-## policy has decided that more concurrent operations are desirable. Also affects the
-## _minimum_ size of the throttling window; its size is implicitly set to max(this config
-## value, number of threads).
-##
-## Only applies if async_operation_throttler_type == DYNAMIC.
-## DEPRECATED! use the async_operation_throttler struct instead
-async_operation_dynamic_throttling_window_increment int default=20 restart