diff options
| author | annashest18 <[email protected]> | 2023-10-22 13:19:53 +0300 |
|---|---|---|
| committer | annashest18 <[email protected]> | 2023-10-22 13:40:13 +0300 |
| commit | 24a44df2ab01109cefd64d4bfad05c66e7ebd2af (patch) | |
| tree | 1ec1ca95a2a8aceaa383fde2e19e61db9ab4fe02 /yt/cpp/mapreduce/client/file_reader.cpp | |
| parent | a991b019f74cbfe6efb40c3b68b46a1ac2a9bd09 (diff) | |
add using http-proxy for reading table from YT
add using http-proxy for reading table from YT
Нам нужна возможность ходить в YT через HTTP proxy для чтения таблиц, используя С++ клиент не из контура Яндекса, к сожалению, сейчас такой возможности нет. В этом ПР черновик изменения, которого нам достаточно
https://a.yandex-team.ru/review/4676436/details - тут это же изменение в YT + коммит с тем, как мы планируем использовать
Diffstat (limited to 'yt/cpp/mapreduce/client/file_reader.cpp')
| -rw-r--r-- | yt/cpp/mapreduce/client/file_reader.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/yt/cpp/mapreduce/client/file_reader.cpp b/yt/cpp/mapreduce/client/file_reader.cpp index 5454b9b11f6..57131e5330b 100644 --- a/yt/cpp/mapreduce/client/file_reader.cpp +++ b/yt/cpp/mapreduce/client/file_reader.cpp @@ -149,6 +149,8 @@ NHttpClient::IHttpResponsePtr TFileReader::Request(const TClientContext& context header.SetImpersonationUser(*context.ImpersonationUser); } + UpdateHeaderForProxyIfNeed(hostName, context, header); + header.AddTransactionId(transactionId); header.SetOutputFormat(TMaybe<TFormat>()); // Binary format @@ -208,6 +210,8 @@ NHttpClient::IHttpResponsePtr TBlobTableReader::Request(const TClientContext& co header.SetImpersonationUser(*context.ImpersonationUser); } + UpdateHeaderForProxyIfNeed(hostName, context, header); + header.AddTransactionId(transactionId); header.SetOutputFormat(TMaybe<TFormat>()); // Binary format |
