aboutsummaryrefslogtreecommitdiffstats
path: root/storage/src/vespa/storage/distributor/bucket_ownership_calculator.h
blob: b67bb41e85d40183cf103c8e51d033301e8c3430 (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
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#pragma once

#include <cstdint>

namespace document { class BucketId; }

namespace storage::lib {
class ClusterState;
class Distribution;
}

namespace storage::distributor {

/**
 * Calculator for determining if a bucket is owned by the current distributor.
 * Ideal state calculations are cached and reused for all consecutive sub-buckets
 * under the same super bucket. The cache is invalidated when a new super bucket
 * is encountered, so it only provides a benefit when invoked in bucket ID order.
 *
 * Not thread safe due to internal caching.
 */
class BucketOwnershipCalculator {
    const lib::ClusterState& _state;
    const lib::Distribution& _distribution;
    mutable uint64_t         _cached_decision_superbucket;
    const uint16_t           _this_node_index;
    mutable bool             _cached_owned;
public:
    BucketOwnershipCalculator(const lib::ClusterState& state,
                              const lib::Distribution& distribution,
                              uint16_t this_node_index) noexcept
        : _state(state),
          _distribution(distribution),
          _cached_decision_superbucket(UINT64_MAX),
          _this_node_index(this_node_index),
          _cached_owned(false)
    {
    }

    [[nodiscard]] bool this_distributor_owns_bucket(const document::BucketId& bucket_id) const;
};

}