aboutsummaryrefslogtreecommitdiffstats
path: root/searchcore/src/vespa/searchcore/bmcluster/bucket_selector.h
blob: 9549bf714010e88abce0102d6d607ec851a14e00 (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
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#pragma once

namespace search::bmcluster {

/*
 * Map from document index to bucket to ensure even spread between buckets
 * while ensuring that each bucket used belong to a specific thread.
 */
class BucketSelector
{
    uint32_t _thread_id;
    uint32_t _threads;
    uint32_t _num_buckets;
public:
    BucketSelector(uint32_t thread_id_in, uint32_t threads_in, uint32_t num_buckets_in)
        : _thread_id(thread_id_in),
          _threads(threads_in),
          _num_buckets((num_buckets_in / _threads) * _threads)
    {
    }
    uint64_t operator()(uint32_t i) const {
        return (static_cast<uint64_t>(i) * _threads + _thread_id) % _num_buckets;
    }
};

}