diff options
author | ermolovd <ermolovd@yandex-team.com> | 2025-02-05 10:25:48 +0300 |
---|---|---|
committer | ermolovd <ermolovd@yandex-team.com> | 2025-02-05 11:04:24 +0300 |
commit | 64dbe3e5f2c96d6cf15ada015fb6ee64d12c02ff (patch) | |
tree | edbff9643c41a1855d322c1a83fadd1a7a33080d /yt/cpp/mapreduce | |
parent | 10d283cd33a843834598f8bba75a7759e7e36324 (diff) | |
download | ydb-64dbe3e5f2c96d6cf15ada015fb6ee64d12c02ff.tar.gz |
make concatenate request heavy
commit_hash:b9c0a7fd0ba37d4b66ac0b3bd38387dc4f85738b
Diffstat (limited to 'yt/cpp/mapreduce')
-rw-r--r-- | yt/cpp/mapreduce/http_client/raw_client.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/yt/cpp/mapreduce/http_client/raw_client.cpp b/yt/cpp/mapreduce/http_client/raw_client.cpp index 3586751191..378fbdfde6 100644 --- a/yt/cpp/mapreduce/http_client/raw_client.cpp +++ b/yt/cpp/mapreduce/http_client/raw_client.cpp @@ -244,7 +244,9 @@ void THttpRawClient::Concatenate( THttpHeader header("POST", "concatenate"); header.AddMutationId(); header.MergeParameters(NRawClient::SerializeParamsForConcatenate(transactionId, Context_.Config->Prefix, sourcePaths, destinationPath, options)); - RequestWithoutRetry(Context_, mutationId, header)->GetResponse(); + TRequestConfig config; + config.IsHeavy = true; + RequestWithoutRetry(Context_, mutationId, header, /*body*/ {}, config)->GetResponse(); } TTransactionId THttpRawClient::StartTransaction( |