aboutsummaryrefslogtreecommitdiffstats
path: root/searchcore/src/vespa/searchcore/proton/server/forcecommitdonetask.h
blob: 01792a066b49772d9d57ec7e1689ac3dc581e45c (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
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#pragma once

#include <vespa/searchcore/proton/common/ipendinglidtracker.h>
#include <vespa/vespalib/util/executor.h>

namespace proton {

struct IDocumentMetaStore;
class IPendingGidToLidChanges;

/**
 * Class for task to be executed when a forced commit has completed and
 * memory index and attributes have been updated.
 *
 * The task handles two things:
 *
 * 1.  Passing on lids that can be reused do document meta store.
 *     They have to go through a hold cycle in order for searches that
 *     might have posting lists referencing the lids in context of
 *     their old identity.
 *
 * 2.  Shrinking of document meta store lid space.  This also goes through
 *     a hold cycle, since it must be handled after any lids to be reused.
 */
class ForceCommitDoneTask : public vespalib::Executor::Task
{
    std::vector<uint32_t>  _lidsToReuse;
    bool                   _holdUnblockShrinkLidSpace;
    IDocumentMetaStore    &_documentMetaStore;
    std::unique_ptr<IPendingGidToLidChanges> _pending_gid_to_lid_changes;

public:
    ForceCommitDoneTask(IDocumentMetaStore &documentMetaStore, std::unique_ptr<IPendingGidToLidChanges> pending_gid_to_lid_changes);
    ~ForceCommitDoneTask() override;

    void reuseLids(std::vector<uint32_t> &&lids);

    void holdUnblockShrinkLidSpace() {
        _holdUnblockShrinkLidSpace = true;
    }

    void run() override;

    bool empty() const {
        return _lidsToReuse.empty() && !_holdUnblockShrinkLidSpace && !_pending_gid_to_lid_changes;
    }
};

}  // namespace proton