aboutsummaryrefslogtreecommitdiffstats
path: root/yt/cpp/mapreduce/interface/format.h
diff options
context:
space:
mode:
authornadya73 <nadya73@yandex-team.com>2023-09-06 19:42:18 +0300
committernadya73 <nadya73@yandex-team.com>2023-09-06 20:02:49 +0300
commit5dff1fa32117ff242e380e16314bae6fd67651f9 (patch)
treea73a67e08b2f6e7d5cd86aac63b032292eb98254 /yt/cpp/mapreduce/interface/format.h
parent51bf017cf9f9a61f1970cf462a9e400a3c71f151 (diff)
downloadydb-5dff1fa32117ff242e380e16314bae6fd67651f9.tar.gz
[yt/cpp/mapreduce] Fix documentation links
Diffstat (limited to 'yt/cpp/mapreduce/interface/format.h')
-rw-r--r--yt/cpp/mapreduce/interface/format.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/yt/cpp/mapreduce/interface/format.h b/yt/cpp/mapreduce/interface/format.h
index 856d66bb97..920b9589a2 100644
--- a/yt/cpp/mapreduce/interface/format.h
+++ b/yt/cpp/mapreduce/interface/format.h
@@ -3,7 +3,7 @@
///
/// @file yt/cpp/mapreduce/interface/format.h
///
-/// Header containing class to work with raw [YT formats](https://yt.yandex-team.ru/docs/description/storage/formats.html).
+/// Header containing class to work with raw [YT formats](https://ytsaurus.tech/docs/en/user-guide/storage/formats).
#include "node.h"
@@ -33,7 +33,7 @@ struct TYamredDsvAttributes
/// @ref NYT::IIOClient::CreateRawReader and @ref NYT::IIOClient::CreateRawWriter.
/// Anyway, the static factory methods should be preferred to the constructor.
///
-/// @see [YT doc](https://yt.yandex-team.ru/docs/description/storage/formats.html).
+/// @see [YT doc](https://ytsaurus.tech/docs/en/user-guide/storage/formats).
struct TFormat
{
public:
@@ -48,12 +48,12 @@ public:
/// @brief Create text YSON format.
///
- /// @see [the doc](https://yt.yandex-team.ru/docs/description/storage/formats.html#YSON)
+ /// @see [the doc](https://ytsaurus.tech/docs/en/user-guide/storage/formats#yson)
static TFormat YsonText();
/// @brief Create binary YSON format.
///
- /// @see [the doc](https://yt.yandex-team.ru/docs/description/storage/formats.html#YSON)
+ /// @see [the doc](https://ytsaurus.tech/docs/en/user-guide/storage/formats#yson)
static TFormat YsonBinary();
/// @brief Create YaMR format.
@@ -63,14 +63,14 @@ public:
/// @brief Create protobuf format from protobuf message descriptors.
///
- /// @see [the doc](https://yt.yandex-team.ru/docs/api/c++/protobuf.html).
+ /// @see [the doc](https://ytsaurus.tech/docs/en/api/c++/protobuf.html).
static TFormat Protobuf(
const TVector<const ::google::protobuf::Descriptor*>& descriptors,
bool withDescriptors = false);
/// @brief Create JSON format.
///
- /// @see [the doc](https://yt.yandex-team.ru/docs/description/storage/formats.html#JSON)
+ /// @see [the doc](https://ytsaurus.tech/docs/en/user-guide/storage/formats#json)
static TFormat Json();
/// @brief Create DSV (TSKV) format.
@@ -82,18 +82,18 @@ public:
///
/// `T` must be inherited from `Message`.
///
- /// @see [the doc](https://yt.yandex-team.ru/docs/api/c++/protobuf.html).
+ /// @see [the doc](https://ytsaurus.tech/docs/en/api/c++/protobuf.html).
template<typename T>
static inline TFormat Protobuf(bool withDescriptors = false);
/// @brief Is the format text YSON?
///
- /// @see [the doc](https://yt.yandex-team.ru/docs/description/storage/formats.html#YSON)
+ /// @see [the doc](https://ytsaurus.tech/docs/en/user-guide/storage/formats#yson)
bool IsTextYson() const;
/// @brief Is the format protobuf?
///
- /// @see [the doc](https://yt.yandex-team.ru/docs/api/c++/protobuf.html)
+ /// @see [the doc](https://ytsaurus.tech/docs/en/api/c++/protobuf.html)
bool IsProtobuf() const;
/// @brief Is the format YaMR?