aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/clickhouse/src/Storages/MergeTree/PartMetadataManagerWithCache.cpp
blob: bb6462b3058946e3e756669fd4e1e26797c1e43e (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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
#include "PartMetadataManagerWithCache.h"

#if USE_ROCKSDB
#include <base/hex.h>
#include <Common/ErrorCodes.h>
#include <IO/HashingReadBuffer.h>
#include <IO/ReadBufferFromString.h>
#include <Compression/CompressedReadBufferFromFile.h>
#include <Storages/MergeTree/IMergeTreeDataPart.h>

namespace ProfileEvents
{
    extern const Event MergeTreeMetadataCacheHit;
    extern const Event MergeTreeMetadataCacheMiss;
}

namespace DB
{

namespace ErrorCodes
{
    extern const int LOGICAL_ERROR;
    extern const int CORRUPTED_DATA;
    extern const int NO_SUCH_PROJECTION_IN_TABLE;
}

PartMetadataManagerWithCache::PartMetadataManagerWithCache(const IMergeTreeDataPart * part_, const MergeTreeMetadataCachePtr & cache_)
    : IPartMetadataManager(part_), cache(cache_)
{
}

String PartMetadataManagerWithCache::getKeyFromFilePath(const String & file_path) const
{
    return part->getDataPartStorage().getDiskName() + ":" + file_path;
}

String PartMetadataManagerWithCache::getFilePathFromKey(const String & key) const
{
    return key.substr(part->getDataPartStorage().getDiskName().size() + 1);
}

std::unique_ptr<ReadBuffer> PartMetadataManagerWithCache::read(const String & file_name) const
{
    String file_path = fs::path(part->getDataPartStorage().getRelativePath()) / file_name;
    String key = getKeyFromFilePath(file_path);
    String value;
    auto status = cache->get(key, value);
    if (!status.ok())
    {
        ProfileEvents::increment(ProfileEvents::MergeTreeMetadataCacheMiss);
        auto in = part->getDataPartStorage().readFile(file_name, {}, std::nullopt, std::nullopt);
        std::unique_ptr<ReadBuffer> reader;
        if (!isCompressedFromFileName(file_name))
            reader = std::move(in);
        else
            reader = std::make_unique<CompressedReadBufferFromFile>(std::move(in));

        readStringUntilEOF(value, *reader);
        cache->put(key, value);
    }
    else
    {
        ProfileEvents::increment(ProfileEvents::MergeTreeMetadataCacheHit);
    }
    return std::make_unique<ReadBufferFromOwnString>(value);
}

bool PartMetadataManagerWithCache::exists(const String & file_name) const
{
    String file_path = fs::path(part->getDataPartStorage().getRelativePath()) / file_name;
    String key = getKeyFromFilePath(file_path);
    String value;
    auto status = cache->get(key, value);
    if (status.ok())
    {
        ProfileEvents::increment(ProfileEvents::MergeTreeMetadataCacheHit);
        return true;
    }
    else
    {
        ProfileEvents::increment(ProfileEvents::MergeTreeMetadataCacheMiss);
        return part->getDataPartStorage().exists(file_name);
    }
}

void PartMetadataManagerWithCache::deleteAll(bool include_projection)
{
    Strings file_names;
    part->appendFilesOfColumnsChecksumsIndexes(file_names, include_projection);

    String value;
    for (const auto & file_name : file_names)
    {
        String file_path = fs::path(part->getDataPartStorage().getRelativePath()) / file_name;
        String key = getKeyFromFilePath(file_path);
        auto status = cache->del(key);
        if (!status.ok())
        {
            status = cache->get(key, value);
            if (status.IsNotFound())
                continue;

            throw Exception(
                ErrorCodes::LOGICAL_ERROR,
                "deleteAll failed include_projection:{} status:{}, file_path:{}",
                include_projection,
                status.ToString(),
                file_path);
        }
    }
}

void PartMetadataManagerWithCache::updateAll(bool include_projection)
{
    Strings file_names;
    part->appendFilesOfColumnsChecksumsIndexes(file_names, include_projection);

    String value;
    String read_value;

    /// This is used to remove the keys in case of any exception while caching other keys
    Strings keys_added_to_cache;
    keys_added_to_cache.reserve(file_names.size());

    try
    {
        for (const auto & file_name : file_names)
        {
            String file_path = fs::path(part->getDataPartStorage().getRelativePath()) / file_name;
            if (!part->getDataPartStorage().exists(file_name))
                continue;
            auto in = part->getDataPartStorage().readFile(file_name, {}, std::nullopt, std::nullopt);
            readStringUntilEOF(value, *in);

            String key = getKeyFromFilePath(file_path);
            auto status = cache->put(key, value);
            if (!status.ok())
            {
                status = cache->get(key, read_value);
                if (status.IsNotFound() || read_value == value)
                    continue;

                throw Exception(
                    ErrorCodes::LOGICAL_ERROR,
                    "updateAll failed include_projection:{} status:{}, file_path:{}",
                    include_projection,
                    status.ToString(),
                    file_path);
            }
            keys_added_to_cache.emplace_back(key);
        }
    }
    catch (...)
    {
        for (const auto & key : keys_added_to_cache)
        {
            cache->del(key);
        }
        throw;
    }
}

void PartMetadataManagerWithCache::assertAllDeleted(bool include_projection) const
{
    Strings keys;
    std::vector<uint128> _;
    getKeysAndCheckSums(keys, _);
    if (keys.empty())
        return;

    String file_path;
    String file_name;
    for (const auto & key : keys)
    {
        file_path = getFilePathFromKey(key);
        file_name = fs::path(file_path).filename();

        /// Metadata file belongs to current part
        if (fs::path(part->getDataPartStorage().getRelativePath()) / file_name == file_path)
            throw Exception(
                ErrorCodes::LOGICAL_ERROR,
                "Data part {} with type {} with meta file {} still in cache",
                part->name,
                part->getType().toString(),
                file_path);

        /// File belongs to projection part of current part
        if (!part->isProjectionPart() && include_projection)
        {
            const auto & projection_parts = part->getProjectionParts();
            for (const auto & [projection_name, projection_part] : projection_parts)
            {
                if (fs::path(part->getDataPartStorage().getRelativePath()) / (projection_name + ".proj") / file_name == file_path)
                {
                    throw Exception(
                        ErrorCodes::LOGICAL_ERROR,
                        "Data part {} with type {} with meta file {} with projection name {} still in cache",
                        part->name,
                        part->getType().toString(),
                        file_path,
                        projection_name);
                }
            }
        }
    }
}

void PartMetadataManagerWithCache::getKeysAndCheckSums(Strings & keys, std::vector<uint128> & checksums) const
{
    String prefix = getKeyFromFilePath(fs::path(part->getDataPartStorage().getRelativePath()) / "");
    Strings values;
    cache->getByPrefix(prefix, keys, values);
    size_t size = keys.size();
    for (size_t i = 0; i < size; ++i)
    {
        ReadBufferFromString rbuf(values[i]);
        HashingReadBuffer hbuf(rbuf);
        hbuf.ignoreAll();
        checksums.push_back(hbuf.getHash());
    }
}

std::unordered_map<String, IPartMetadataManager::uint128> PartMetadataManagerWithCache::check() const
{
    /// Only applies for normal part stored on disk
    if (part->isProjectionPart() || !part->isStoredOnDisk())
        return {};

    /// The directory of projection part is under the directory of its parent part
    const auto filenames_without_checksums = part->getFileNamesWithoutChecksums();

    std::unordered_map<String, uint128> results;
    Strings keys;
    std::vector<uint128> cache_checksums;
    std::vector<uint128> disk_checksums;
    getKeysAndCheckSums(keys, cache_checksums);
    for (size_t i = 0; i < keys.size(); ++i)
    {
        const auto & key = keys[i];
        String file_path = getFilePathFromKey(key);
        String file_name = fs::path(file_path).filename();
        results.emplace(file_name, cache_checksums[i]);

        /// File belongs to normal part
        if (fs::path(part->getDataPartStorage().getRelativePath()) / file_name == file_path)
        {
            auto disk_checksum = part->getActualChecksumByFile(file_name);
            if (disk_checksum != cache_checksums[i])
                throw Exception(
                    ErrorCodes::CORRUPTED_DATA,
                    "Checksums doesn't match in part {} for {}. Expected: {}. Found {}.",
                    part->name, file_path,
                    getHexUIntUppercase(disk_checksum),
                    getHexUIntUppercase(cache_checksums[i]));

            disk_checksums.push_back(disk_checksum);
            continue;
        }

        /// File belongs to projection part
        String proj_dir_name = fs::path(file_path).parent_path().filename();
        auto pos = proj_dir_name.find_last_of('.');
        if (pos == String::npos)
        {
            throw Exception(
                ErrorCodes::NO_SUCH_PROJECTION_IN_TABLE,
                "There is no projection in part: {} contains file: {} with directory name: {}",
                part->name,
                file_path,
                proj_dir_name);
        }

        String proj_name = proj_dir_name.substr(0, pos);
        const auto & projection_parts = part->getProjectionParts();
        auto it = projection_parts.find(proj_name);
        if (it == projection_parts.end())
        {
            throw Exception(
                ErrorCodes::NO_SUCH_PROJECTION_IN_TABLE,
                "There is no projection {} in part: {} contains file: {}",
                proj_name, part->name, file_path);
        }

        auto disk_checksum = it->second->getActualChecksumByFile(file_name);
        if (disk_checksum != cache_checksums[i])
            throw Exception(
                ErrorCodes::CORRUPTED_DATA,
                "Checksums doesn't match in projection part {} {}. Expected: {}. Found {}.",
                part->name, proj_name,
                getHexUIntUppercase(disk_checksum),
                getHexUIntUppercase(cache_checksums[i]));
        disk_checksums.push_back(disk_checksum);
    }
    return results;
}

}
#endif