aboutsummaryrefslogtreecommitdiffstats
path: root/searchcore/src/vespa/searchcore/proton/server/shared_threading_service_config.cpp
blob: 0e198f7a98666a4e52eddd9e2bc2a4de1b8fb8ec (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include "shared_threading_service_config.h"
#include <vespa/config-proton.h>
#include <cmath>

namespace proton {

using ProtonConfig = SharedThreadingServiceConfig::ProtonConfig;

SharedThreadingServiceConfig::SharedThreadingServiceConfig(uint32_t shared_threads_in,
                                                           uint32_t shared_task_limit_in,
                                                           uint32_t field_writer_threads_in,
                                                           double feeding_niceness_in,
                                                           const ThreadingServiceConfig& field_writer_config_in)
    : _shared_threads(shared_threads_in),
      _shared_task_limit(shared_task_limit_in),
      _field_writer_threads(field_writer_threads_in),
      _feeding_niceness(feeding_niceness_in),
      _field_writer_config(field_writer_config_in)
{
}

namespace {

uint32_t
derive_shared_threads(const ProtonConfig& cfg, const vespalib::HwInfo::Cpu& cpu_info)
{
    auto scaled_cores = uint32_t(std::ceil(cpu_info.cores() * cfg.feeding.concurrency));

    // We need at least 1 guaranteed free worker in order to ensure progress.
    return std::max(scaled_cores, uint32_t(cfg.flush.maxconcurrent + 1u));
}

uint32_t
derive_field_writer_threads(const ProtonConfig& cfg, const vespalib::HwInfo::Cpu& cpu_info)
{
    uint32_t scaled_cores = size_t(std::ceil(cpu_info.cores() * cfg.feeding.concurrency));
    uint32_t field_writer_threads = std::max(scaled_cores, uint32_t(cfg.indexing.threads));
    // Originally we used at least 3 threads for writing fields:
    //   - index field inverter
    //   - index field writer
    //   - attribute field writer
    // We keep the same lower bound for similar behavior when using the shared field writer.
    return std::max(field_writer_threads, 3u);
}

}

SharedThreadingServiceConfig
SharedThreadingServiceConfig::make(const proton::SharedThreadingServiceConfig::ProtonConfig& cfg,
                                   const vespalib::HwInfo::Cpu& cpu_info)
{
    uint32_t shared_threads = derive_shared_threads(cfg, cpu_info);
    uint32_t field_writer_threads = derive_field_writer_threads(cfg, cpu_info);
    return {shared_threads, shared_threads * 16, field_writer_threads,
            cfg.feeding.niceness, ThreadingServiceConfig::make(cfg)};
}

}