diff options
author | galtsev <galtsev@yandex-team.com> | 2023-09-06 20:09:13 +0300 |
---|---|---|
committer | galtsev <galtsev@yandex-team.com> | 2023-09-06 20:33:42 +0300 |
commit | 29be1f4aa0b20fec66f2ad2c213006fade44c4fc (patch) | |
tree | 043d7e44b9bf3d0ffcd0379e60f11ef2ab506f3a /yt/cpp/mapreduce/interface/operation.h | |
parent | 484d2b621c25885e20fdf5c55c1b844e3b3b3d78 (diff) | |
download | ydb-29be1f4aa0b20fec66f2ad2c213006fade44c4fc.tar.gz |
Add `layer_paths` user job spec option to the C++ interface
Diffstat (limited to 'yt/cpp/mapreduce/interface/operation.h')
-rw-r--r-- | yt/cpp/mapreduce/interface/operation.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/yt/cpp/mapreduce/interface/operation.h b/yt/cpp/mapreduce/interface/operation.h index d01a3d9f84..1cb997e86e 100644 --- a/yt/cpp/mapreduce/interface/operation.h +++ b/yt/cpp/mapreduce/interface/operation.h @@ -733,6 +733,9 @@ struct TUserJobSpec /// @brief Paths to files in Cypress to use in job. FLUENT_VECTOR_FIELD(TRichYPath, File); + /// @brief Porto layers to use in the job. Layers are listed from top to bottom. + FLUENT_VECTOR_FIELD(TYPath, Layer); + /// /// @brief MemoryLimit specifies how much memory job process can use. /// |