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
|
#include "retry_heavy_write_request.h"
#include "transaction.h"
#include "transaction_pinger.h"
#include <yt/cpp/mapreduce/common/retry_lib.h>
#include <yt/cpp/mapreduce/common/wait_proxy.h>
#include <yt/cpp/mapreduce/interface/config.h>
#include <yt/cpp/mapreduce/interface/tvm.h>
#include <yt/cpp/mapreduce/interface/logging/yt_log.h>
#include <yt/cpp/mapreduce/http/helpers.h>
#include <yt/cpp/mapreduce/http/http_client.h>
#include <yt/cpp/mapreduce/http/requests.h>
#include <yt/cpp/mapreduce/http/retry_request.h>
namespace NYT {
using ::ToString;
////////////////////////////////////////////////////////////////////////////////
void RetryHeavyWriteRequest(
const IClientRetryPolicyPtr& clientRetryPolicy,
const ITransactionPingerPtr& transactionPinger,
const TClientContext& context,
const TTransactionId& parentId,
THttpHeader& header,
std::function<THolder<IInputStream>()> streamMaker)
{
int retryCount = context.Config->RetryCount;
if (context.ServiceTicketAuth) {
header.SetServiceTicket(context.ServiceTicketAuth->Ptr->IssueServiceTicket());
} else {
header.SetToken(context.Token);
}
if (context.ImpersonationUser) {
header.SetImpersonationUser(*context.ImpersonationUser);
}
for (int attempt = 0; attempt < retryCount; ++attempt) {
TPingableTransaction attemptTx(clientRetryPolicy, context, parentId, transactionPinger->GetChildTxPinger(), TStartTransactionOptions());
auto input = streamMaker();
TString requestId;
try {
auto hostName = GetProxyForHeavyRequest(context);
requestId = CreateGuidAsString();
UpdateHeaderForProxyIfNeed(hostName, context, header);
header.AddTransactionId(attemptTx.GetId(), /* overwrite = */ true);
header.SetRequestCompression(ToString(context.Config->ContentEncoding));
auto request = context.HttpClient->StartRequest(GetFullUrl(hostName, context, header), requestId, header);
TransferData(input.Get(), request->GetStream());
request->Finish()->GetResponse();
} catch (TErrorResponse& e) {
YT_LOG_ERROR("RSP %v - attempt %v failed",
requestId,
attempt);
if (!IsRetriable(e) || attempt + 1 == retryCount) {
throw;
}
NDetail::TWaitProxy::Get()->Sleep(GetBackoffDuration(e, context.Config));
continue;
} catch (std::exception& e) {
YT_LOG_ERROR("RSP %v - %v - attempt %v failed",
requestId,
e.what(),
attempt);
if (attempt + 1 == retryCount) {
throw;
}
NDetail::TWaitProxy::Get()->Sleep(GetBackoffDuration(e, context.Config));
continue;
}
attemptTx.Commit();
return;
}
}
////////////////////////////////////////////////////////////////////////////////
} // namespace NYT
|