aboutsummaryrefslogtreecommitdiffstats
path: root/searchcore/src/vespa/searchcore/proton/docsummary/summaryflushtarget.cpp
blob: 06d16586ad3a7b80d9f5ad84c1ea7e6669438ff9 (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
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include "summaryflushtarget.h"
#include <vespa/vespalib/util/lambdatask.h>

using search::IDocumentStore;
using search::SerialNum;
using searchcorespi::FlushStats;
using searchcorespi::IFlushTarget;

namespace proton {

namespace {

class Flusher : public searchcorespi::FlushTask {
private:
    IDocumentStore & _docStore;
    FlushStats     & _stats;
    SerialNum        _currSerial;
public:
    Flusher(IDocumentStore & docStore,
            FlushStats & stats,
            SerialNum currSerial)
        : _docStore(docStore),
          _stats(stats),
          _currSerial(currSerial)
    {
        _currSerial = _docStore.initFlush(currSerial);
    }
    void run() override {
        _docStore.flush(_currSerial);
        updateStats();
    }
    void updateStats() {
        // the target must live until this task is done (handled by flush engine).
        _stats.setPath(_docStore.getBaseDir());
    }

    SerialNum getFlushSerial() const override { return _currSerial; }
};

}

SummaryFlushTarget::SummaryFlushTarget(IDocumentStore & docStore,
                                       vespalib::Executor & summaryService)
    : LeafFlushTarget("summary.flush", Type::SYNC, Component::DOCUMENT_STORE),
      _docStore(docStore),
      _summaryService(summaryService),
      _lastStats()
{
    _lastStats.setPathElementsToLog(6);
}

IFlushTarget::MemoryGain
SummaryFlushTarget::getApproxMemoryGain() const
{
    return MemoryGain(_docStore.memoryUsed(), _docStore.memoryMeta());
}

IFlushTarget::Time
SummaryFlushTarget::getLastFlushTime() const
{
    return _docStore.getLastFlushTime();
}

SerialNum
SummaryFlushTarget::getFlushedSerialNum() const
{
    return _docStore.lastSyncToken();
}

IFlushTarget::Task::UP
SummaryFlushTarget::internalInitFlush(SerialNum currentSerial) {
    return std::make_unique<Flusher>(_docStore, _lastStats, currentSerial);
}
IFlushTarget::Task::UP
SummaryFlushTarget::initFlush(SerialNum currentSerial, std::shared_ptr<search::IFlushToken>)
{
    // Called by document db executor
    std::promise<Task::UP> promise;
    std::future<Task::UP> future = promise.get_future();
    _summaryService.execute(vespalib::makeLambdaTask(
                                  [&]() { promise.set_value(
                                          internalInitFlush(currentSerial));
                                  }));
    return future.get();
}

} // namespace proton