aboutsummaryrefslogtreecommitdiffstats
path: root/searchcore/src/vespa/searchcore/proton/server/proton_disk_layout.cpp
blob: e5fcd32fdce2ae372abdc124b23d180a41c7b5e3 (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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include "proton_disk_layout.h"
#include <vespa/vespalib/io/fileutil.h>
#include <vespa/searchcore/proton/common/doctypename.h>
#include <vespa/searchlib/transactionlog/translogclient.h>
#include <filesystem>

#include <vespa/log/log.h>
LOG_SETUP(".proton.server.proton_disk_layout");

using search::transactionlog::client::TransLogClient;

namespace proton {

namespace {

struct DocumentDBDirMeta
{
    bool normal;
    bool removed;

    DocumentDBDirMeta()
        : normal(false),
          removed(false)
    {
    }
};

using DocumentDBDirScan = std::map<DocTypeName, DocumentDBDirMeta>;

vespalib::string getDocumentsDir(const vespalib::string &baseDir)
{
    return baseDir + "/documents";
}

vespalib::string removedSuffix(".removed");

vespalib::string getNormalName(const vespalib::string removedName) {
    return removedName.substr(0, removedName.size() - removedSuffix.size());
}

vespalib::string getRemovedName(const vespalib::string &normalName)
{
    return normalName + removedSuffix;
}

bool isRemovedName(const vespalib::string &dirName)
{
    return dirName.size() > removedSuffix.size() && dirName.substr(dirName.size() - removedSuffix.size()) == removedSuffix;
}

void scanDir(const vespalib::string documentsDir, DocumentDBDirScan &dirs)
{
    auto names = vespalib::listDirectory(documentsDir);
    for (const auto &name : names) {
        if (std::filesystem::is_directory(std::filesystem::path(documentsDir + "/" + name))) {
            if (isRemovedName(name)) {
                dirs[DocTypeName(getNormalName(name))].removed = true;
            } else {
                dirs[DocTypeName(name)].normal = true;
            }
        }
    }
}

}

ProtonDiskLayout::ProtonDiskLayout(FNET_Transport & transport, const vespalib::string &baseDir, const vespalib::string &tlsSpec)
    : _transport(transport),
      _baseDir(baseDir),
      _tlsSpec(tlsSpec)
{
    std::filesystem::create_directories(std::filesystem::path(getDocumentsDir(_baseDir)));
}

ProtonDiskLayout::~ProtonDiskLayout() = default;

void
ProtonDiskLayout::remove(const DocTypeName &docTypeName)
{
    vespalib::string documentsDir(getDocumentsDir(_baseDir));
    vespalib::string name(docTypeName.toString());
    vespalib::string normalDir(documentsDir + "/" + name);
    vespalib::string removedDir(documentsDir + "/" + getRemovedName(name));
    if (std::filesystem::exists(std::filesystem::path(normalDir))) {
        std::filesystem::rename(std::filesystem::path(normalDir), std::filesystem::path(removedDir));
    }
    vespalib::File::sync(documentsDir);
    TransLogClient tlc(_transport, _tlsSpec);
    if (!tlc.remove(name)) {
        LOG(fatal, "Failed to remove tls domain %s", name.c_str());
        LOG_ABORT("Failed to remove tls domain");
    }
    std::filesystem::remove_all(std::filesystem::path(removedDir));
    vespalib::File::sync(documentsDir);
}

void
ProtonDiskLayout::initAndPruneUnused(const std::set<DocTypeName> &docTypeNames)
{
    vespalib::string documentsDir(getDocumentsDir(_baseDir));
    DocumentDBDirScan dirs;
    scanDir(documentsDir, dirs);
    for (const auto &dir : dirs) {
        if (dir.second.removed) {
            // Complete interrupted removal
            if (dir.second.normal) {
                vespalib::string name(dir.first.toString());
                vespalib::string normalDir(documentsDir + "/" + name);
                std::filesystem::remove_all(std::filesystem::path(normalDir));
            }
            remove(dir.first);
        } else if (docTypeNames.count(dir.first) == 0) {
            // Remove unused directory
            remove(dir.first);
        }
    }
}

} // namespace proton