diff options
author | nadya73 <nadya73@yandex-team.com> | 2023-09-06 19:42:18 +0300 |
---|---|---|
committer | nadya73 <nadya73@yandex-team.com> | 2023-09-06 20:02:49 +0300 |
commit | 5dff1fa32117ff242e380e16314bae6fd67651f9 (patch) | |
tree | a73a67e08b2f6e7d5cd86aac63b032292eb98254 /yt/cpp/mapreduce/interface/job_statistics.h | |
parent | 51bf017cf9f9a61f1970cf462a9e400a3c71f151 (diff) | |
download | ydb-5dff1fa32117ff242e380e16314bae6fd67651f9.tar.gz |
[yt/cpp/mapreduce] Fix documentation links
Diffstat (limited to 'yt/cpp/mapreduce/interface/job_statistics.h')
-rw-r--r-- | yt/cpp/mapreduce/interface/job_statistics.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/yt/cpp/mapreduce/interface/job_statistics.h b/yt/cpp/mapreduce/interface/job_statistics.h index 8af751604f..4582d9e872 100644 --- a/yt/cpp/mapreduce/interface/job_statistics.h +++ b/yt/cpp/mapreduce/interface/job_statistics.h @@ -4,7 +4,7 @@ /// @file yt/cpp/mapreduce/interface/job_statistics.h /// /// Header containing classes and utility functions to work with -/// [job statistics](https://docs.yandex-team.ru/yt/problems/jobstatistics). +/// [job statistics](https://ytsaurus.tech/docs/ru/user-guide/problems/jobstatistics). #include "fwd.h" @@ -71,7 +71,7 @@ public: /// /// @deprecated Use @ref TJobStatistics::TaskName instead. /// - /// @see https://yt.yandex-team.ru/docs/description/mr/jobs#obshaya-shema + /// @see https://ytsaurus.tech/docs/en/user-guide/data-processing/operations/jobs#obshaya-shema TJobStatistics JobType(TVector<EJobType> filter) const; /// @@ -242,7 +242,7 @@ TJobStatisticsEntry<T> TJobStatistics::GetCustomStatisticsAs(TStringBuf name) co //////////////////////////////////////////////////////////////////// /// -/// @brief Write [custom statistics](https://yt.yandex-team.ru/docs/description/mr/jobs#user_stats). +/// @brief Write [custom statistics](https://ytsaurus.tech/docs/en/user-guide/data-processing/operations/jobs#user_stats). /// /// @param path Slash-separated path (length must not exceed 512 bytes). /// @param value Value of the statistic. @@ -252,7 +252,7 @@ TJobStatisticsEntry<T> TJobStatistics::GetCustomStatisticsAs(TStringBuf name) co void WriteCustomStatistics(TStringBuf path, i64 value); /// -/// @brief Write several [custom statistics](https://yt.yandex-team.ru/docs/description/mr/jobs#user_stats) at once. +/// @brief Write several [custom statistics](https://ytsaurus.tech/docs/en/user-guide/data-processing/operations/jobs#user_stats) at once. /// /// @param statistics A tree of map nodes with leaves of type `i64`. /// @@ -260,7 +260,7 @@ void WriteCustomStatistics(TStringBuf path, i64 value); void WriteCustomStatistics(const TNode& statistics); /// -/// @brief Flush [custom statistics stream](https://yt.yandex-team.ru/docs/description/mr/jobs#user_stats) +/// @brief Flush [custom statistics stream](https://ytsaurus.tech/docs/en/user-guide/data-processing/operations/jobs#user_stats) /// void FlushCustomStatisticsStream(); //////////////////////////////////////////////////////////////////// |