diff options
author | nadya02 <nadya02@yandex-team.com> | 2023-11-24 09:54:28 +0300 |
---|---|---|
committer | nadya02 <nadya02@yandex-team.com> | 2023-11-24 10:13:23 +0300 |
commit | b04e3c5ba75a4d9130991f7e3ed55b037d9275cb (patch) | |
tree | 1741d1de2a82e464164de2fe1ec08e95de997782 /yt/cpp/mapreduce/interface | |
parent | 5989f432e9a3d92e28572d2c2ba7b8f7179b1b63 (diff) | |
download | ydb-b04e3c5ba75a4d9130991f7e3ed55b037d9275cb.tar.gz |
YT-20315: Support retries of cross cell copying
add options
YT-20315: Support retries of cross cell copying
Diffstat (limited to 'yt/cpp/mapreduce/interface')
-rw-r--r-- | yt/cpp/mapreduce/interface/client_method_options.h | 1 | ||||
-rw-r--r-- | yt/cpp/mapreduce/interface/error_codes.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/yt/cpp/mapreduce/interface/client_method_options.h b/yt/cpp/mapreduce/interface/client_method_options.h index 80be6e35e7..b5f0f1e34e 100644 --- a/yt/cpp/mapreduce/interface/client_method_options.h +++ b/yt/cpp/mapreduce/interface/client_method_options.h @@ -36,6 +36,7 @@ enum ENodeType : int NT_SCHEDULER_POOL /* "scheduler_pool" */, NT_LINK /* "link" */, NT_GROUP /* "group" */, + NT_PORTAL /* "portal_entrance" */, }; /// diff --git a/yt/cpp/mapreduce/interface/error_codes.h b/yt/cpp/mapreduce/interface/error_codes.h index d8d76e04fd..e784e3ee88 100644 --- a/yt/cpp/mapreduce/interface/error_codes.h +++ b/yt/cpp/mapreduce/interface/error_codes.h @@ -236,6 +236,7 @@ namespace NObjectClient { //////////////////////////////////////////////////////////////////////////////// constexpr int PrerequisiteCheckFailed = 1000; + constexpr int CrossCellAdditionalPath = 1002; //////////////////////////////////////////////////////////////////////////////// |