aboutsummaryrefslogtreecommitdiffstats
path: root/documentapi/src/vespa/documentapi/messagebus/policies/subsetservicepolicy.cpp
blob: 643d272f7e210074b27a897cd57945f5e49702fe (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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include "subsetservicepolicy.h"
#include <vespa/documentapi/messagebus/documentprotocol.h>
#include <vespa/messagebus/routing/verbatimdirective.h>
#include <vespa/messagebus/messagebus.h>
#include <vespa/vespalib/util/stringfmt.h>
#include <vespa/vespalib/stllike/hash_fun.h>
#include <vespa/log/log.h>
LOG_SETUP(".subsetservicepolicy");

namespace documentapi {

SubsetServicePolicy::CacheEntry::CacheEntry() :
    _offset(0),
    _generation(0),
    _recipients()
{
    // empty
}

SubsetServicePolicy::SubsetServicePolicy(const string &param) :
    _subsetSize(5),
    _cache()
{
    if (param.length() > 0) {
        int size = atoi(param.c_str());
        if (size >= 0) {
            _subsetSize = (uint32_t)size;
        } else {
            LOG(warning,
                "Ignoring a request to set the subset size to %d because it makes no sense. "
                "This routing policy will choose any one matching service.", size);
        }
    } else {
        LOG(warning, "No parameter given to SubsetService policy, using default value %d.", _subsetSize);
    }
}

SubsetServicePolicy::~SubsetServicePolicy() = default;

void
SubsetServicePolicy::select(mbus::RoutingContext &context)
{
    mbus::Route route = context.getRoute();
    route.setHop(0, getRecipient(context));
    context.addChild(route);
}

void
SubsetServicePolicy::merge(mbus::RoutingContext &context)
{
    DocumentProtocol::merge(context);
}

string
SubsetServicePolicy::getCacheKey(const mbus::RoutingContext &ctx) const
{
    return ctx.getRoute().getHop(0).toString();
}

mbus::Hop
SubsetServicePolicy::getRecipient(mbus::RoutingContext &ctx)
{
    mbus::Hop hop;
    if (_subsetSize > 0) {
        std::lock_guard guard(_lock);
        CacheEntry &entry = update(ctx);
        if (!entry._recipients.empty()) {
            if (++entry._offset >= entry._recipients.size()) {
                entry._offset = 0;
            }
            hop = entry._recipients[entry._offset];
        }
    }
    if (!hop.hasDirectives()) {
        hop = ctx.getRoute().getHop(0);
        hop.setDirective(ctx.getDirectiveIndex(),std::make_shared<mbus::VerbatimDirective>("*"));
    }
    return hop;
}

SubsetServicePolicy::CacheEntry &
SubsetServicePolicy::update(mbus::RoutingContext &ctx)
{
    uint32_t upd = ctx.getMirror().updates();
    CacheEntry &entry = _cache.insert(std::map<string, CacheEntry>::value_type(getCacheKey(ctx), CacheEntry())).first->second;
    if (entry._generation != upd) {
        entry._generation = upd;
        entry._recipients.clear();

        string pattern = vespalib::make_string("%s*%s",
                                                    ctx.getHopPrefix().c_str(),
                                                    ctx.getHopSuffix().c_str());
        slobrok::api::IMirrorAPI::SpecList entries = ctx.getMirror().lookup(pattern);
        uint32_t pos = vespalib::hashValue(ctx.getMessageBus().getConnectionSpec().c_str());
        for (uint32_t i = 0; i < _subsetSize && i < entries.size(); ++i) {
            entry._recipients.push_back(mbus::Hop::parse(entries[(pos + i) % entries.size()].first));
        }
    }
    return entry;
}

}