diff options
author | sabdenovch <sabdenovch@yandex-team.com> | 2024-12-17 22:14:14 +0300 |
---|---|---|
committer | sabdenovch <sabdenovch@yandex-team.com> | 2024-12-17 22:28:18 +0300 |
commit | 91f4e7a8568d938839df80dfe34062f8900d438c (patch) | |
tree | f6f2c897727dce7e980b496a7b50147f067ae36e | |
parent | 729807e784fff2ea98eeb599c3d56f7538d5cf58 (diff) | |
download | ydb-91f4e7a8568d938839df80dfe34062f8900d438c.tar.gz |
Set proper band for selects
commit_hash:edfc1f9b377e871b5005c1125565d9ff3c37a2c0
-rw-r--r-- | yt/yt/client/api/rpc_proxy/client_base.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/yt/yt/client/api/rpc_proxy/client_base.cpp b/yt/yt/client/api/rpc_proxy/client_base.cpp index 7a049d81a3..c8c6769a6d 100644 --- a/yt/yt/client/api/rpc_proxy/client_base.cpp +++ b/yt/yt/client/api/rpc_proxy/client_base.cpp @@ -1021,6 +1021,7 @@ TFuture<TSelectRowsResult> TClientBase::SelectRows( auto req = proxy.SelectRows(); req->SetResponseHeavy(true); + req->SetMultiplexingBand(NRpc::EMultiplexingBand::Interactive); req->set_query(query); const auto& config = GetRpcProxyConnection()->GetConfig(); |