aboutsummaryrefslogtreecommitdiffstats
path: root/yt/yt/client/tablet_client/table_mount_cache_detail.cpp
blob: ae1d41c975ffe6928748ed5096df8cbf3b1bb412 (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
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
#include "table_mount_cache_detail.h"

#include "config.h"

#include <yt/yt/core/yson/string.h>

#include <yt/yt/core/ytree/convert.h>

#include <yt/yt/core/profiling/timing.h>

#include <library/cpp/yt/misc/hash.h>

namespace NYT::NTabletClient {

using namespace NConcurrency;
using namespace NYTree;

////////////////////////////////////////////////////////////////////////////////

static constexpr auto TabletCacheSweepPeriod = TDuration::Seconds(60);

////////////////////////////////////////////////////////////////////////////////

TTabletInfoOwnerCache::TTabletInfoOwnerCache(NLogging::TLogger logger)
    : Logger(std::move(logger))
{ }

void TTabletInfoOwnerCache::DropExpiredOwners(std::vector<TWeakPtr<TTableMountInfo>>* owners)
{
    VERIFY_WRITER_SPINLOCK_AFFINITY(MapLock_);

    std::erase_if(*owners, [] (const auto& owner) {
        return owner.IsExpired();
    });
}

void TTabletInfoOwnerCache::Insert(TTabletId tabletId, TWeakPtr<TTableMountInfo> tableInfo)
{
    SweepExpiredEntries();

    auto guard = WriterGuard(MapLock_);
    ProcessNextGCQueueEntry();

    typename decltype(Map_)::insert_ctx context;
    auto it = Map_.find(tabletId, context);

    if (it == Map_.end()) {
        Map_.emplace_direct(context, tabletId, std::vector{std::move(tableInfo)});
        guard.Release();

        auto gcGuard = Guard(GCLock_);
        GCQueue_.push(tabletId);
    } else {
        DropExpiredOwners(&it->second);
        it->second.push_back(std::move(tableInfo));
    }
}

std::vector<TWeakPtr<TTableMountInfo>> TTabletInfoOwnerCache::GetOwners(TTabletId tabletId)
{
    SweepExpiredEntries();

    auto guard = ReaderGuard(MapLock_);
    ProcessNextGCQueueEntry();

    if (auto it = Map_.find(tabletId); it != Map_.end()) {
        return it->second;
    }

    return {};
}

void TTabletInfoOwnerCache::Clear()
{
    {
        decltype(Map_) other;

        auto guard = WriterGuard(MapLock_);
        other = std::move(Map_);

        // Release guard to avoid destruction under lock.
        guard.Release();
    }

    {
        decltype(GCQueue_) otherQueue;
        decltype(ExpiredTabletIds_) otherTabletIds;

        auto guard = Guard(GCLock_);
        otherQueue = std::move(GCQueue_);
        otherTabletIds = std::move(ExpiredTabletIds_);

        // Release guard to avoid destruction under lock.
        guard.Release();
    }
}

void TTabletInfoOwnerCache::SweepExpiredEntries()
{
    auto now = NProfiling::GetCpuInstant();
    auto deadline = ExpiredEntriesSweepDeadline_.load(std::memory_order::relaxed);
    if (now < deadline) {
        return;
    }

    if (!ExpiredEntriesSweepDeadline_.compare_exchange_strong(deadline, now + NProfiling::DurationToCpuDuration(TabletCacheSweepPeriod))) {
        return;
    }

    decltype(ExpiredTabletIds_) expiredTabletIds;
    {
        auto gcGuard = Guard(GCLock_);
        expiredTabletIds = std::move(ExpiredTabletIds_);
    }

    if (!expiredTabletIds.empty()) {
        YT_LOG_DEBUG("Start sweeping expired tablet info (ExpiredTabletCount: %v)",
            expiredTabletIds.size());

        for (auto id : expiredTabletIds) {
            auto guard = WriterGuard(MapLock_);
            if (auto it = Map_.find(id); it) {
                DropExpiredOwners(&it->second);
                if (it->second.empty()) {
                    Map_.erase(it);
                    continue;
                }

                guard.Release();

                auto gcGuard = Guard(GCLock_);
                GCQueue_.push(id);
            }
        }

        YT_LOG_DEBUG("Finish sweeping expired tablet info");
    }
}

void TTabletInfoOwnerCache::ProcessNextGCQueueEntry()
{
    VERIFY_SPINLOCK_AFFINITY(MapLock_);

    auto gcGuard = Guard(GCLock_);
    if (!GCQueue_.empty()) {
        auto id = GCQueue_.front();
        if (auto it = Map_.find(id); it) {
            bool allExpired = true;
            for (const auto& weak : it->second) {
                if (!weak.IsExpired()) {
                    allExpired = false;
                    break;
                }
            }
            if (allExpired) {
                ExpiredTabletIds_.push_back(id);
            } else {
                GCQueue_.push(id);
            }
        }
        GCQueue_.pop();
    }
}

////////////////////////////////////////////////////////////////////////////////

TTableMountCacheBase::TTableMountCacheBase(
    TTableMountCacheConfigPtr config,
    NLogging::TLogger logger,
    NProfiling::TProfiler profiler)
    : TAsyncExpiringCache(
        config,
        logger.WithTag("Cache: TableMount"),
        profiler)
    , Logger(std::move(logger))
    , TabletInfoOwnerCache_(Logger)
    , Config_(std::move(config))
{ }

TFuture<TTableMountInfoPtr> TTableMountCacheBase::GetTableInfo(const NYPath::TYPath& path)
{
    auto [future, requestInitialized] = TAsyncExpiringCache::GetExtended(path);

    bool shouldThrow = false;
    if (!requestInitialized && !future.IsSet()) {
        auto guard = ReaderGuard(SpinLock_);
        shouldThrow = Config_->RejectIfEntryIsRequestedButNotReady;
    }
    if (shouldThrow) {
        // COMPAT(babenko): replace with TransientFailure error code.
        THROW_ERROR_EXCEPTION(NRpc::EErrorCode::Unavailable,
            "Mount info is unavailable, please try again")
            << TError(NTabletClient::EErrorCode::TableMountInfoNotReady,
                "Table mount info is not ready, but has already been requested")
                << TErrorAttribute("path", path);
    }

    return future;
}

void TTableMountCacheBase::InvalidateTablet(TTabletId tabletId)
{
    for (const auto& weakOwner : TabletInfoOwnerCache_.GetOwners(tabletId)) {
        if (auto owner = weakOwner.Lock()) {
            InvalidateTable(owner);
        }
    }
}

TTabletInfoPtr TTableMountCacheBase::FindTabletInfo(TTabletId tabletId)
{
    TTabletInfoPtr result;

    for (auto weakOwner : TabletInfoOwnerCache_.GetOwners(tabletId)) {
        auto owner = weakOwner.Lock();
        if (!owner) {
            continue;
        }

        for (const auto& tabletInfo : owner->Tablets) {
            if (tabletInfo->TabletId == tabletId) {
                if (!result || tabletInfo->MountRevision > result->MountRevision) {
                    result = tabletInfo;
                    break;
                }
            }
        }
    }

    return result;
}

auto TTableMountCacheBase::TryHandleServantNotActiveError(const TError& error)
    -> std::optional<TInvalidationResult>
{
    auto servantNotActiveError = error.FindMatching(NTabletClient::EErrorCode::TabletServantIsNotActive);
    if (!servantNotActiveError) {
        return {};
    }

    const auto& attributes = servantNotActiveError->Attributes();
    auto tabletId = attributes.Find<TTabletId>("tablet_id");
    if (!tabletId) {
        return {};
    }

    auto tabletInfo = FindTabletInfo(*tabletId);
    if (!tabletInfo) {
        return {};
    }

    auto siblingCellId = attributes.Find<NObjectClient::TCellId>("sibling_servant_cell_id");
    auto siblingMountRevision = attributes.Find<NHydra::TRevision>("sibling_servant_mount_revision");

    if (!siblingCellId || !siblingMountRevision) {
        return {};
    }

    if (auto siblingCellDescriptor = attributes.FindYson("sibling_servant_cell_descriptor")) {
        RegisterCell(ConvertToNode(siblingCellDescriptor));
    } else {
        return {};
    }

    auto newTabletInfo = tabletInfo->Clone();
    newTabletInfo->CellId = *siblingCellId;
    newTabletInfo->MountRevision = *siblingMountRevision;

    auto owners = TabletInfoOwnerCache_.GetOwners(*tabletId);

    YT_LOG_DEBUG("Switching tablet servant in table mount cache "
        "(TabletId: %v, PreviousCellId: %v, PreviousMountRevision: %x, "
        "NewCellId: %v, NewMountRevision: %x, Owners: %v)",
        tabletId,
        tabletInfo->CellId,
        tabletInfo->MountRevision,
        siblingCellId,
        siblingMountRevision,
        MakeFormattableView(owners, [] (auto* builder, const auto& weakOwner) {
            if (auto owner = weakOwner.Lock()) {
                builder->AppendString(owner->Path);
            }
        }));

    std::vector<TTableMountInfoPtr> clonedTableInfos;

    for (auto weakOwner : TabletInfoOwnerCache_.GetOwners(*tabletId)) {
        auto owner = weakOwner.Lock();
        if (!owner) {
            continue;
        }

        auto clone = owner->Clone();

        for (auto& tableTabletInfo : clone->Tablets) {
            if (tableTabletInfo->TabletId == tabletInfo->TabletId) {
                tableTabletInfo = newTabletInfo;
            }
        }

        for (auto& tableTabletInfo : clone->MountedTablets) {
            if (tableTabletInfo->TabletId == tabletInfo->TabletId) {
                tableTabletInfo = newTabletInfo;
            }
        }

        clonedTableInfos.push_back(std::move(clone));
    }

    for (const auto& tableInfo : clonedTableInfos) {
        for (const auto& tabletInfo : tableInfo->Tablets) {
            TabletInfoOwnerCache_.Insert(tabletInfo->TabletId, MakeWeak(tableInfo));
        }

        TAsyncExpiringCache::Set(tableInfo->Path, tableInfo);
    }

    return {{
        .Retryable = true,
        .ErrorCode = NTabletClient::EErrorCode::TabletServantIsNotActive,
        .TabletInfo = newTabletInfo,
        .TableInfoUpdatedFromError = true,
    }};
}

auto TTableMountCacheBase::InvalidateOnError(const TError& error, bool forceRetry)
    -> TInvalidationResult
{
    static const std::vector<TErrorCode> retryableCodes = {
        NTabletClient::EErrorCode::NoSuchTablet,
        NTabletClient::EErrorCode::TabletNotMounted,
        NTabletClient::EErrorCode::InvalidMountRevision,
        NTabletClient::EErrorCode::TabletServantIsNotActive,
        NYTree::EErrorCode::ResolveError
    };

    if (error.IsOK()) {
        return {};
    }

    if (auto result = TryHandleServantNotActiveError(error)) {
        return *result;
    }

    for (auto code : retryableCodes) {
        if (auto retryableError = error.FindMatching(code)) {
            auto tabletId = retryableError->Attributes().Find<TTabletId>("tablet_id");
            if (!tabletId) {
                continue;
            }

            auto isTabletUnmounted = retryableError->Attributes().Get<bool>("is_tablet_unmounted", false);
            auto tabletInfo = FindTabletInfo(*tabletId);
            if (tabletInfo) {
                YT_LOG_DEBUG(error,
                    "Invalidating tablet in table mount cache "
                    "(TabletId: %v, CellId: %v, MountRevision: %x, IsTabletUnmounted: %v, Owners: %v)",
                    tabletInfo->TabletId,
                    tabletInfo->CellId,
                    tabletInfo->MountRevision,
                    isTabletUnmounted,
                    MakeFormattableView(TabletInfoOwnerCache_.GetOwners(*tabletId), [] (auto* builder, const auto& weakOwner) {
                        if (auto owner = weakOwner.Lock()) {
                            FormatValue(builder, owner->Path, TStringBuf());
                        } else {
                            builder->AppendString(TStringBuf("<expired>"));
                        }
                    }));

                InvalidateTablet(*tabletId);
            }

            if (code == NTabletClient::EErrorCode::TabletNotMounted &&
                isTabletUnmounted &&
                !forceRetry)
            {
                return {};
            }

            return {
                .Retryable = true,
                .ErrorCode = code,
                .TabletInfo = tabletInfo,
                .TableInfoUpdatedFromError = false,
            };
        }
    }

    return {};
}

void TTableMountCacheBase::RegisterCell(INodePtr /*cellDescriptor*/)
{ }

void TTableMountCacheBase::Clear()
{
    TAsyncExpiringCache::Clear();
    TabletInfoOwnerCache_.Clear();
    YT_LOG_DEBUG("Table mount info cache cleared");
}

void TTableMountCacheBase::Reconfigure(TTableMountCacheConfigPtr config)
{
    TAsyncExpiringCache::Reconfigure(config);
    {
        auto guard = WriterGuard(SpinLock_);
        Config_ = config;
    }
    YT_LOG_DEBUG("Table mount info cache reconfigured (NewConfig: %v)",
        NYson::ConvertToYsonString(config, NYson::EYsonFormat::Text).AsStringBuf());
}

////////////////////////////////////////////////////////////////////////////////

} // namespace NYT::NTabletClient