diff options
author | apachee <apachee@yandex-team.com> | 2024-05-24 20:47:38 +0300 |
---|---|---|
committer | apachee <apachee@yandex-team.com> | 2024-05-24 20:58:06 +0300 |
commit | 3e42aa91c70358fdd3ec39d0ac23072fc230b209 (patch) | |
tree | 422612a54143006d874a3997b1ef10efe34da552 /yt/cpp/mapreduce/interface/helpers.h | |
parent | b45547676013a5d43cd0072a85643326e686b6fc (diff) | |
download | ydb-3e42aa91c70358fdd3ec39d0ac23072fc230b209.tar.gz |
YT-21308: Add redirect_stdout_to_stderr flag for C++ client
Adds redirect_stdout_to_stderr spec option for operations that allows writing to stdout as if it was stderr.
6a8ac5f21955a79848d86f72715628c7b8bb65c4
Diffstat (limited to 'yt/cpp/mapreduce/interface/helpers.h')
-rw-r--r-- | yt/cpp/mapreduce/interface/helpers.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/yt/cpp/mapreduce/interface/helpers.h b/yt/cpp/mapreduce/interface/helpers.h new file mode 100644 index 0000000000..0aa8086b49 --- /dev/null +++ b/yt/cpp/mapreduce/interface/helpers.h @@ -0,0 +1,11 @@ +#pragma once + +namespace NYT { + +//////////////////////////////////////////////////////////////////////////////// + +int GetJobFirstOutputTableFD(); + +//////////////////////////////////////////////////////////////////////////////// + +} // namespace NYT |