aboutsummaryrefslogtreecommitdiffstats
path: root/searchcore/src/vespa/searchcore/bmcluster/storage_api_chain_bm_feed_handler.cpp
blob: 58a30296552c02623be49b441c19a010f14b2ad3 (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
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include "storage_api_chain_bm_feed_handler.h"
#include "i_bm_distribution.h"
#include "pending_tracker.h"
#include "bm_storage_link_context.h"
#include "bm_storage_link.h"
#include <vespa/storageapi/messageapi/storagecommand.h>

namespace search::bmcluster {

StorageApiChainBmFeedHandler::StorageApiChainBmFeedHandler(std::vector<std::shared_ptr<BmStorageLinkContext>> contexts, const IBmDistribution& distribution, bool distributor)
    : StorageApiBmFeedHandlerBase("StorageApiChainBmFeedHandler", distribution, distributor),
      _contexts(std::move(contexts)),
      _no_link_error_count(0u)
{
}

StorageApiChainBmFeedHandler::~StorageApiChainBmFeedHandler() = default;

void
StorageApiChainBmFeedHandler::send_cmd(std::shared_ptr<storage::api::StorageCommand> cmd, PendingTracker& tracker)
{
    uint32_t node_idx = route_cmd(*cmd);
    if (node_idx < _contexts.size() && _contexts[node_idx]) {
        auto bm_link = _contexts[node_idx]->bm_link;
        bm_link->retain(cmd->getMsgId(), tracker);
        bm_link->sendDown(std::move(cmd));
    } else {
        ++_no_link_error_count;
    }
}

void
StorageApiChainBmFeedHandler::attach_bucket_info_queue(PendingTracker&)
{
}

uint32_t
StorageApiChainBmFeedHandler::get_error_count() const
{
    uint32_t error_count = 0;
    for (auto &context : _contexts) {
        if (context) {
            error_count += context->bm_link->get_error_count();
        }
    }
    error_count += _no_link_error_count;
    return error_count;
}

}