summaryrefslogtreecommitdiffstats
path: root/yt/cpp/mapreduce/interface
diff options
context:
space:
mode:
Diffstat (limited to 'yt/cpp/mapreduce/interface')
-rw-r--r--yt/cpp/mapreduce/interface/config.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/yt/cpp/mapreduce/interface/config.h b/yt/cpp/mapreduce/interface/config.h
index 04b1109dbc7..9b8a644f876 100644
--- a/yt/cpp/mapreduce/interface/config.h
+++ b/yt/cpp/mapreduce/interface/config.h
@@ -297,10 +297,8 @@ struct TConfig
/// Allow to create trace_id on client side and propogate with request
bool EnableClientTracing = true;
- /// Use a separate connection for lightweight control requests.
- /// If this option is set to true, a separate connection is opened for lightweight requests (for example, ping_transaction).
- /// This is needed so that important lightweight requests do not wait for heavy requests, such as file writes, to complete.
- /// However, using this option increases the number of open TCP connections.
+ /// If true, all RPC requests share a single connection,
+ // and the native client sends lightweight control requests via a separate multiplexing band.
bool EnableControlMultiplexingBand = false;
static bool GetBool(const char* var, bool defaultValue = false);