aboutsummaryrefslogtreecommitdiffstats
path: root/storage/src/vespa/storage/config/stor-visitordispatcher.def
blob: 78d3f0ae09398312522e4aaac9b610b478022ecb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
namespace=vespa.config.content.core

# For any given client visitor operation, this specifies a maximum fan-out
# factor for concurrent content node visitor operations towards a particular
# content node.
# Having several visitor operations running concurrently increases the
# potential data processing parallelism on the content nodes at the expense
# of using additional resources.
maxvisitorspernodeperclientvisitor int default=16

# Minimum number of buckets that have to be present on a given content node
# before more than one visitor operation may be sent in parallel towards it.
# This config is directly related to maxvisitorspernodeperclientvisitor.
# Example: with max visitors of 4, min buckets of 5 and total of 40 buckets on
# a content node, a total of 4 visitors of 10 buckets each will be sent to the
# node. If min buckets were 20, only 2 visitors of 20 buckets each would be
# sent.
minbucketspervisitor int default=1