diff options
author | Tagir Khamitov <tagir200917@gmail.com> | 2024-06-15 17:40:00 +0300 |
---|---|---|
committer | robot-piglet <robot-piglet@yandex-team.com> | 2024-06-15 17:49:45 +0300 |
commit | b3ca01f0fd071e6769a1da056e6608147ec6cfb0 (patch) | |
tree | c2476028f2ca011cf2b9c55e4a41d5881fc7eec0 /yt/yt_proto | |
parent | cbd5243d6cb5a29e001b1d67ff44e182d2ed561e (diff) | |
download | ydb-b3ca01f0fd071e6769a1da056e6608147ec6cfb0.tar.gz |
Implemented RPC method for reading JobProxy logs
As a part of working on [this issue](https://github.com/ytsaurus/ytsaurus/issues/165) I've implemented RPC method for reading JobProxy logs and uploading them to Cypress.
---
f31ec2651b37b87791e950e7ad7264f6f8ece645
Pull Request resolved: https://github.com/ytsaurus/ytsaurus/pull/594
Co-authored-by: ignat <ignat@yandex-team.com>
Diffstat (limited to 'yt/yt_proto')
-rw-r--r-- | yt/yt_proto/yt/client/api/rpc_proxy/proto/api_service.proto | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/yt/yt_proto/yt/client/api/rpc_proxy/proto/api_service.proto b/yt/yt_proto/yt/client/api/rpc_proxy/proto/api_service.proto index 929bf21229..24995c479b 100644 --- a/yt/yt_proto/yt/client/api/rpc_proxy/proto/api_service.proto +++ b/yt/yt_proto/yt/client/api/rpc_proxy/proto/api_service.proto @@ -2527,6 +2527,19 @@ message TRspAbortJob } //////////////////////////////////////////////////////////////////////////////// + +message TReqDumpJobProxyLog +{ + required NYT.NProto.TGuid job_id = 1; + required NYT.NProto.TGuid operation_id = 2; + required string path = 3; // YPath +} + +message TRspDumpJobProxyLog +{ +} + +//////////////////////////////////////////////////////////////////////////////// // STREAMING //////////////////////////////////////////////////////////////////////////////// |