blob: 5220c222b8434be776a2483093f7e3a2f94d471a (
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
|
#pragma once
#include <yt/cpp/mapreduce/http/retry_request.h>
#include <yt/cpp/mapreduce/client/client.h>
#include <yt/cpp/mapreduce/common/wait_proxy.h>
#include <yt/cpp/mapreduce/common/retry_lib.h>
#include <yt/cpp/mapreduce/interface/logging/yt_log.h>
namespace NYT::NDetail {
template <typename TResult>
TResult RetryTransactionWithPolicy(
const TClientBasePtr& client,
std::function<TResult(ITransactionPtr)> func,
IRequestRetryPolicyPtr retryPolicy)
{
if (!retryPolicy) {
retryPolicy = CreateDefaultRequestRetryPolicy(client->GetContext().Config);
}
while (true) {
try {
retryPolicy->NotifyNewAttempt();
auto transaction = client->StartTransaction(TStartTransactionOptions());
if constexpr (std::is_same<TResult, void>::value) {
func(transaction);
transaction->Commit();
return;
} else {
auto result = func(transaction);
transaction->Commit();
return result;
}
} catch (const TErrorResponse& e) {
YT_LOG_ERROR("Retry failed %v - %v",
e.GetError().GetMessage(),
retryPolicy->GetAttemptDescription());
if (!IsRetriable(e)) {
throw;
}
auto maybeRetryTimeout = retryPolicy->OnRetriableError(e);
if (maybeRetryTimeout) {
TWaitProxy::Get()->Sleep(*maybeRetryTimeout);
} else {
throw;
}
} catch (const std::exception& e) {
YT_LOG_ERROR("Retry failed %v - %v",
e.what(),
retryPolicy->GetAttemptDescription());
if (!IsRetriable(e)) {
throw;
}
auto maybeRetryTimeout = retryPolicy->OnGenericError(e);
if (maybeRetryTimeout) {
TWaitProxy::Get()->Sleep(*maybeRetryTimeout);
} else {
throw;
}
}
}
}
} // namespace NYT::NDetail
|