aboutsummaryrefslogtreecommitdiffstats
path: root/searchcore/src/tests/proton/documentdb/threading_service_config/threading_service_config_test.cpp
blob: 50a8349b8596e69925e09c4ffcb1c3ff3e41daa8 (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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include <vespa/searchcore/config/config-proton.h>
#include <vespa/searchcore/proton/common/hw_info.h>
#include <vespa/searchcore/proton/server/threading_service_config.h>
#include <vespa/vespalib/testkit/testapp.h>

#include <vespa/log/log.h>
LOG_SETUP("threading_service_config_test");

using namespace proton;
using ProtonConfig = vespa::config::search::core::ProtonConfig;
using ProtonConfigBuilder = vespa::config::search::core::ProtonConfigBuilder;

struct Fixture {
    ProtonConfig cfg;
    Fixture(uint32_t baseLineIndexingThreads = 2, uint32_t master_task_limit = 2000, uint32_t task_limit = 500)
        : cfg(makeConfig(baseLineIndexingThreads, master_task_limit, task_limit))
    {
    }
    ProtonConfig makeConfig(uint32_t baseLineIndexingThreads, uint32_t master_task_limit, uint32_t task_limit) {
        ProtonConfigBuilder builder;
        builder.indexing.threads = baseLineIndexingThreads;
        builder.indexing.tasklimit = task_limit;
        builder.feeding.masterTaskLimit = master_task_limit;
        return builder;
    }
    ThreadingServiceConfig make(uint32_t cpuCores) {
        return ThreadingServiceConfig::make(cfg, 0.5, HwInfo::Cpu(cpuCores));
    }
    void assertIndexingThreads(uint32_t expIndexingThreads, uint32_t cpuCores) {
        EXPECT_EQUAL(expIndexingThreads, make(cpuCores).indexingThreads());
    }
};

TEST_F("require that indexing threads are set based on cpu cores and feeding concurrency", Fixture)
{
    TEST_DO(f.assertIndexingThreads(2, 1));
    TEST_DO(f.assertIndexingThreads(2, 4));
    TEST_DO(f.assertIndexingThreads(2, 8));
    TEST_DO(f.assertIndexingThreads(2, 12));
    TEST_DO(f.assertIndexingThreads(3, 13));
    TEST_DO(f.assertIndexingThreads(3, 18));
    TEST_DO(f.assertIndexingThreads(4, 19));
    TEST_DO(f.assertIndexingThreads(4, 24));
    TEST_DO(f.assertIndexingThreads(4, 64)); // Ensure it is capped at 4
}

TEST_F("require that indexing threads is always >= 1", Fixture(0))
{
    TEST_DO(f.assertIndexingThreads(1, 0));
}

TEST_F("require that task limits are set", Fixture)
{
    auto tcfg = f.make(24);
    EXPECT_EQUAL(2000u, tcfg.master_task_limit());
    EXPECT_EQUAL(500u, tcfg.defaultTaskLimit());
}

namespace {

void assertConfig(uint32_t exp_indexing_threads, uint32_t exp_master_task_limit,
                  uint32_t exp_default_task_limit, const ThreadingServiceConfig& config) {
    EXPECT_EQUAL(exp_indexing_threads, config.indexingThreads());
    EXPECT_EQUAL(exp_master_task_limit, config.master_task_limit());
    EXPECT_EQUAL(exp_default_task_limit, config.defaultTaskLimit());
}

}

TEST_FF("require that config can be somewhat updated", Fixture(), Fixture(2, 3000, 1000))
{
    auto cfg1 = f1.make(1);
    assertConfig(2u, 2000, 500u, cfg1);
    const auto cfg2 = f2.make(13);
    assertConfig(3u, 3000u, 1000u, cfg2);
    cfg1.update(cfg2);
    assertConfig(2u, 3000u, 1000u, cfg1); // Indexing threads not changed
}

TEST_MAIN()
{
    TEST_RUN_ALL();
}